Created
August 2, 2024 13:40
-
-
Save jens-andersson-2-wcar/5c8b498337d9e29b6e4b9c9b6c5bb312 to your computer and use it in GitHub Desktop.
Vector fields using Folium maps and Uber H3 gridding; Citi Bike dataset example
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": "code", | |
| "execution_count": 1, | |
| "id": "0d6b0d7e-a5cb-427f-a99b-98cc3f3753b3", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "# Geospatial vector fields using Folium maps and an Uber H3 hexagonal grid; Jens Andersson 2024; https://jens-wirelesscar.medium.com/\n", | |
| "\n", | |
| "# CC BY 4.0 ; https://creativecommons.org/licenses/by/4.0/" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "0b534be5-924e-45fa-95fc-72114dd79e63", | |
| "metadata": {}, | |
| "source": [ | |
| "<img src=\"https://cdn-images-1.medium.com/max/1600/1*CkBNS2nkmF4i1jA3KWdJ3A.jpeg\" width=600 />" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 2, | |
| "id": "82805100-93e9-43f9-83fb-f3b54d150368", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Requirement already satisfied: h3 in /opt/conda/lib/python3.10/site-packages (3.7.7)\n", | |
| "Requirement already satisfied: folium in /opt/conda/lib/python3.10/site-packages (0.17.0)\n", | |
| "Requirement already satisfied: geojson in /opt/conda/lib/python3.10/site-packages (3.1.0)\n", | |
| "Requirement already satisfied: pandarallel in /opt/conda/lib/python3.10/site-packages (1.6.5)\n", | |
| "Requirement already satisfied: pyproj in /opt/conda/lib/python3.10/site-packages (3.6.1)\n", | |
| "Requirement already satisfied: branca>=0.6.0 in /opt/conda/lib/python3.10/site-packages (from folium) (0.7.2)\n", | |
| "Requirement already satisfied: jinja2>=2.9 in /opt/conda/lib/python3.10/site-packages (from folium) (3.1.4)\n", | |
| "Requirement already satisfied: numpy in /opt/conda/lib/python3.10/site-packages (from folium) (1.26.4)\n", | |
| "Requirement already satisfied: requests in /opt/conda/lib/python3.10/site-packages (from folium) (2.31.0)\n", | |
| "Requirement already satisfied: xyzservices in /opt/conda/lib/python3.10/site-packages (from folium) (2024.6.0)\n", | |
| "Requirement already satisfied: dill>=0.3.1 in /opt/conda/lib/python3.10/site-packages (from pandarallel) (0.3.8)\n", | |
| "Requirement already satisfied: pandas>=1 in /opt/conda/lib/python3.10/site-packages (from pandarallel) (2.1.4)\n", | |
| "Requirement already satisfied: psutil in /opt/conda/lib/python3.10/site-packages (from pandarallel) (5.9.8)\n", | |
| "Requirement already satisfied: certifi in /opt/conda/lib/python3.10/site-packages (from pyproj) (2024.2.2)\n", | |
| "Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/lib/python3.10/site-packages (from jinja2>=2.9->folium) (2.1.5)\n", | |
| "Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/lib/python3.10/site-packages (from pandas>=1->pandarallel) (2.9.0)\n", | |
| "Requirement already satisfied: pytz>=2020.1 in /opt/conda/lib/python3.10/site-packages (from pandas>=1->pandarallel) (2023.3)\n", | |
| "Requirement already satisfied: tzdata>=2022.1 in /opt/conda/lib/python3.10/site-packages (from pandas>=1->pandarallel) (2024.1)\n", | |
| "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/lib/python3.10/site-packages (from requests->folium) (3.3.2)\n", | |
| "Requirement already satisfied: idna<4,>=2.5 in /opt/conda/lib/python3.10/site-packages (from requests->folium) (3.7)\n", | |
| "Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/lib/python3.10/site-packages (from requests->folium) (1.26.18)\n", | |
| "Requirement already satisfied: six>=1.5 in /opt/conda/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas>=1->pandarallel) (1.16.0)\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "!pip install h3 folium geojson pandarallel pyproj" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 3, | |
| "id": "f0adb4a9-ca9a-42fc-b1b0-f87a3c2d6cfc", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "import json\n", | |
| "\n", | |
| "import matplotlib.pyplot as plt\n", | |
| "import numpy as np\n", | |
| "\n", | |
| "import h3\n", | |
| "\n", | |
| "import folium\n", | |
| "from geojson import Feature, FeatureCollection\n", | |
| "\n", | |
| "import math\n", | |
| "import matplotlib\n", | |
| "\n", | |
| "from scipy import stats\n", | |
| "import pandas as pd\n", | |
| "\n", | |
| "from pandarallel import pandarallel\n", | |
| "\n", | |
| "import scipy.stats as scs" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 4, | |
| "id": "cfa56d4e-fed1-4c09-901b-1ecaa005be0c", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "### get data:\n", | |
| "\n", | |
| "## download it from https://citibikenyc.com/system-data\n", | |
| "\n", | |
| "# for example:\n", | |
| "# wget 'http://s3.amazonaws.com/tripdata/202406-citibike-tripdata.zip' --no-check-certificate" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 5, | |
| "id": "3bb4f7c7-3288-459c-a31c-157ef490cf98", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "# FAILS due to multiple files in zip archive\n", | |
| "#df = pd.read_csv(\"202406-citibike-tripdata.zip\")" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 6, | |
| "id": "b267458b-7579-4c6e-960d-a89b913b5f2f", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Reading:\n", | |
| "202406-citibike-tripdata_5.csv\n", | |
| "202406-citibike-tripdata_4.csv\n", | |
| "202406-citibike-tripdata_1.csv\n", | |
| "202406-citibike-tripdata_3.csv\n", | |
| "202406-citibike-tripdata_2.csv\n", | |
| "Done!\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "import os\n", | |
| "import pandas as pd\n", | |
| "import zipfile\n", | |
| "\n", | |
| "zf = zipfile.ZipFile('202406-citibike-tripdata.zip')\n", | |
| "zf_infolist = zf.infolist()\n", | |
| "result_data = []\n", | |
| "\n", | |
| "print(\"Reading:\")\n", | |
| "\n", | |
| "for file_in_zip_file in zf_infolist:\n", | |
| " print(file_in_zip_file.filename)\n", | |
| " df = pd.read_csv(zf.open(file_in_zip_file.filename), low_memory=False)\n", | |
| " result_data.append(df)\n", | |
| "\n", | |
| "df = pd.concat(result_data)\n", | |
| "print(\"Done!\")\n", | |
| "result_data = None" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 7, | |
| "id": "3165fe99-4449-40ca-9b5d-718a3aa7b1f4", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "4768748\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "df = df.dropna()\n", | |
| "print(len(df))\n", | |
| "#df = df.sample(10000)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 8, | |
| "id": "200ad324-2077-4cee-ac3a-1b53a42e94f8", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "# we choose the middle position instead of the start or end position to plot\n", | |
| "df['latitude'] = (df['start_lat'] + df['end_lat'])/2.0\n", | |
| "df['longitude'] = (df['start_lng'] + df['end_lng'])/2.0\n", | |
| "\n", | |
| "# we approximate bearing like this -- no, it is not entirely correct!\n", | |
| "df['bearing_approx'] = 90.0 - 360 * (np.arctan2(df['end_lat'] - df['start_lat'], df['end_lng'] - df['start_lng']) / (2*math.pi))\n", | |
| "\n", | |
| "df['timestamp'] = pd.to_datetime(df['ended_at'])\n", | |
| "df['duration'] = df['timestamp'] - pd.to_datetime(df['started_at'])\n", | |
| "df['hour_of_day'] = df['timestamp'].dt.hour\n" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 9, | |
| "id": "08ed3bbc-8364-46d4-a8fe-1e01a6d30b24", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "INFO: Pandarallel will run on 4 workers.\n", | |
| "INFO: Pandarallel will use Memory file system to transfer data between the main process and workers.\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "application/vnd.jupyter.widget-view+json": { | |
| "model_id": "abffca4a469e41b29a3bc3ea4140f9d2", | |
| "version_major": 2, | |
| "version_minor": 0 | |
| }, | |
| "text/plain": [ | |
| "VBox(children=(HBox(children=(IntProgress(value=0, description='0.00%', max=1192187), Label(value='0 / 1192187…" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "pandarallel.initialize(progress_bar=True)\n", | |
| "\n", | |
| "distances = df.parallel_apply(lambda row: h3.point_dist((row.start_lat, row.start_lng), (row.end_lat, row.end_lng), unit='m'), axis = 1)\n", | |
| "\n", | |
| "df = df.assign(distance_in_meters=distances.values)\n", | |
| "distances = None" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 10, | |
| "id": "3d06e316-889e-415f-965c-ca020ad975b3", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "application/vnd.jupyter.widget-view+json": { | |
| "model_id": "2f0f038fb93e4ebb9f6bf68d1d337fbe", | |
| "version_major": 2, | |
| "version_minor": 0 | |
| }, | |
| "text/plain": [ | |
| "VBox(children=(HBox(children=(IntProgress(value=0, description='0.00%', max=1192187), Label(value='0 / 1192187…" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "speeds = df.parallel_apply(lambda row: 3.6 * row.distance_in_meters / row.duration.total_seconds(), axis = 1)\n", | |
| "\n", | |
| "df = df.assign(speed_kmh=speeds.values)\n", | |
| "speeds = None" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 11, | |
| "id": "6de021db-f276-4116-bc66-b1c1cbc49602", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "application/vnd.jupyter.widget-view+json": { | |
| "model_id": "74467739bcf54ca0a5ff96940cd060b2", | |
| "version_major": 2, | |
| "version_minor": 0 | |
| }, | |
| "text/plain": [ | |
| "VBox(children=(HBox(children=(IntProgress(value=0, description='0.00%', max=1192187), Label(value='0 / 1192187…" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "import pyproj\n", | |
| "\n", | |
| "geodesic = pyproj.Geod(ellps='WGS84')\n", | |
| "\n", | |
| "def bearing_from_lat_long_pair(start_lat, start_long, end_lat, end_long):\n", | |
| " bearing_angle, _, _ = geodesic.inv(start_long, start_lat, end_long, end_lat)\n", | |
| " if bearing_angle < 0:\n", | |
| " bearing_angle = bearing_angle + 360.0\n", | |
| " if bearing_angle > 360.0:\n", | |
| " bearing_angle = bearing_angle - 360.0\n", | |
| " return bearing_angle\n", | |
| "\n", | |
| "bearings_properly = df.parallel_apply(lambda row: bearing_from_lat_long_pair(row.start_lat, row.start_lng, row.end_lat, row.end_lng), axis = 1)\n", | |
| "\n", | |
| "df = df.assign(bearing=bearings_properly.values)\n", | |
| "\n", | |
| "bearings_properly = None" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 12, | |
| "id": "412bbe7b-2dd4-4ec9-a9b0-dc4412c8df1b", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "4768748\n", | |
| "4768748\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "print(len(df))\n", | |
| "df = df.dropna()\n", | |
| "print(len(df))" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 13, | |
| "id": "2daaab39-ff1c-49d4-a626-e1d6fc42d7d1", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "df = df[df['speed_kmh'] < 50]" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 14, | |
| "id": "d6f6dd57-8824-4ef8-b4f3-68076260dacd", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "4763854\n", | |
| "4763854\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "print(len(df))\n", | |
| "df = df.dropna()\n", | |
| "print(len(df))" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 15, | |
| "id": "fe26acf6-cad2-4198-9e47-78c0d82a6479", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/html": [ | |
| "<div>\n", | |
| "<style scoped>\n", | |
| " .dataframe tbody tr th:only-of-type {\n", | |
| " vertical-align: middle;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe tbody tr th {\n", | |
| " vertical-align: top;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe thead th {\n", | |
| " text-align: right;\n", | |
| " }\n", | |
| "</style>\n", | |
| "<table border=\"1\" class=\"dataframe\">\n", | |
| " <thead>\n", | |
| " <tr style=\"text-align: right;\">\n", | |
| " <th></th>\n", | |
| " <th>ride_id</th>\n", | |
| " <th>rideable_type</th>\n", | |
| " <th>started_at</th>\n", | |
| " <th>ended_at</th>\n", | |
| " <th>start_station_name</th>\n", | |
| " <th>start_station_id</th>\n", | |
| " <th>end_station_name</th>\n", | |
| " <th>end_station_id</th>\n", | |
| " <th>start_lat</th>\n", | |
| " <th>start_lng</th>\n", | |
| " <th>...</th>\n", | |
| " <th>member_casual</th>\n", | |
| " <th>latitude</th>\n", | |
| " <th>longitude</th>\n", | |
| " <th>bearing_approx</th>\n", | |
| " <th>timestamp</th>\n", | |
| " <th>duration</th>\n", | |
| " <th>hour_of_day</th>\n", | |
| " <th>distance_in_meters</th>\n", | |
| " <th>speed_kmh</th>\n", | |
| " <th>bearing</th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " <tr>\n", | |
| " <th>0</th>\n", | |
| " <td>C943DA3BBC04DA57</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-19 19:24:11.778</td>\n", | |
| " <td>2024-06-19 19:35:37.667</td>\n", | |
| " <td>E 81 St & York Ave</td>\n", | |
| " <td>7084.12</td>\n", | |
| " <td>E 84 St & Park Ave</td>\n", | |
| " <td>7243.04</td>\n", | |
| " <td>40.772838</td>\n", | |
| " <td>-73.949892</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.775733</td>\n", | |
| " <td>-73.953807</td>\n", | |
| " <td>-53.520017</td>\n", | |
| " <td>2024-06-19 19:35:37.667</td>\n", | |
| " <td>0 days 00:11:25.889000</td>\n", | |
| " <td>19</td>\n", | |
| " <td>921.312340</td>\n", | |
| " <td>4.835658</td>\n", | |
| " <td>314.208748</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>1</th>\n", | |
| " <td>35F6F3D1D27DEF6D</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-20 17:01:54.322</td>\n", | |
| " <td>2024-06-20 17:14:34.198</td>\n", | |
| " <td>E 81 St & York Ave</td>\n", | |
| " <td>7084.12</td>\n", | |
| " <td>Central Park West & W 72 St</td>\n", | |
| " <td>7141.07</td>\n", | |
| " <td>40.772940</td>\n", | |
| " <td>-73.949694</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.774367</td>\n", | |
| " <td>-73.962950</td>\n", | |
| " <td>-83.855611</td>\n", | |
| " <td>2024-06-20 17:14:34.198</td>\n", | |
| " <td>0 days 00:12:39.876000</td>\n", | |
| " <td>17</td>\n", | |
| " <td>2254.924622</td>\n", | |
| " <td>10.682965</td>\n", | |
| " <td>278.068638</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>2</th>\n", | |
| " <td>9B8071426046B632</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-25 15:39:31.800</td>\n", | |
| " <td>2024-06-25 15:44:36.811</td>\n", | |
| " <td>Broadway & W 58 St</td>\n", | |
| " <td>6948.10</td>\n", | |
| " <td>Central Park West & W 72 St</td>\n", | |
| " <td>7141.07</td>\n", | |
| " <td>40.766953</td>\n", | |
| " <td>-73.981693</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.771373</td>\n", | |
| " <td>-73.978950</td>\n", | |
| " <td>31.828975</td>\n", | |
| " <td>2024-06-25 15:44:36.811</td>\n", | |
| " <td>0 days 00:05:05.011000</td>\n", | |
| " <td>15</td>\n", | |
| " <td>1086.230686</td>\n", | |
| " <td>12.820621</td>\n", | |
| " <td>25.261143</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>3</th>\n", | |
| " <td>995E66CC32088A47</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-26 15:29:28.377</td>\n", | |
| " <td>2024-06-26 15:34:19.452</td>\n", | |
| " <td>Broadway & W 58 St</td>\n", | |
| " <td>6948.10</td>\n", | |
| " <td>Central Park West & W 72 St</td>\n", | |
| " <td>7141.07</td>\n", | |
| " <td>40.766713</td>\n", | |
| " <td>-73.981900</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.771254</td>\n", | |
| " <td>-73.979053</td>\n", | |
| " <td>32.090634</td>\n", | |
| " <td>2024-06-26 15:34:19.452</td>\n", | |
| " <td>0 days 00:04:51.075000</td>\n", | |
| " <td>15</td>\n", | |
| " <td>1117.780740</td>\n", | |
| " <td>13.824652</td>\n", | |
| " <td>25.486718</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>4</th>\n", | |
| " <td>1D16A382B788B03E</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-21 19:42:04.451</td>\n", | |
| " <td>2024-06-21 19:51:11.660</td>\n", | |
| " <td>Banker St & Meserole Ave</td>\n", | |
| " <td>5633.04</td>\n", | |
| " <td>Metropolitan Ave & Bedford Ave</td>\n", | |
| " <td>5308.04</td>\n", | |
| " <td>40.726267</td>\n", | |
| " <td>-73.956254</td>\n", | |
| " <td>...</td>\n", | |
| " <td>casual</td>\n", | |
| " <td>40.720808</td>\n", | |
| " <td>-73.958247</td>\n", | |
| " <td>200.061403</td>\n", | |
| " <td>2024-06-21 19:51:11.660</td>\n", | |
| " <td>0 days 00:09:07.209000</td>\n", | |
| " <td>19</td>\n", | |
| " <td>1259.766621</td>\n", | |
| " <td>8.287802</td>\n", | |
| " <td>195.528921</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>...</th>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999995</th>\n", | |
| " <td>6B447F37BB327BCD</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-04 09:31:45.239</td>\n", | |
| " <td>2024-06-04 09:37:30.695</td>\n", | |
| " <td>8 Ave & W 31 St</td>\n", | |
| " <td>6450.05</td>\n", | |
| " <td>5 Ave & E 30 St</td>\n", | |
| " <td>6248.08</td>\n", | |
| " <td>40.750805</td>\n", | |
| " <td>-73.994606</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.748395</td>\n", | |
| " <td>-73.990450</td>\n", | |
| " <td>120.113020</td>\n", | |
| " <td>2024-06-04 09:37:30.695</td>\n", | |
| " <td>0 days 00:05:45.456000</td>\n", | |
| " <td>9</td>\n", | |
| " <td>881.704732</td>\n", | |
| " <td>9.188253</td>\n", | |
| " <td>127.327178</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999996</th>\n", | |
| " <td>189FE5C8A830E3CA</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-01 18:03:26.911</td>\n", | |
| " <td>2024-06-01 18:15:33.453</td>\n", | |
| " <td>E 7 St & Ave A</td>\n", | |
| " <td>5626.07</td>\n", | |
| " <td>5 Ave & E 30 St</td>\n", | |
| " <td>6248.08</td>\n", | |
| " <td>40.726115</td>\n", | |
| " <td>-73.983948</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.736050</td>\n", | |
| " <td>-73.985122</td>\n", | |
| " <td>-6.735101</td>\n", | |
| " <td>2024-06-01 18:15:33.453</td>\n", | |
| " <td>0 days 00:12:06.542000</td>\n", | |
| " <td>18</td>\n", | |
| " <td>2218.263916</td>\n", | |
| " <td>10.991450</td>\n", | |
| " <td>354.867720</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999997</th>\n", | |
| " <td>BD7E33097787F6E6</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-12 18:18:54.443</td>\n", | |
| " <td>2024-06-12 18:22:23.755</td>\n", | |
| " <td>W 17 St & 8 Ave</td>\n", | |
| " <td>6148.02</td>\n", | |
| " <td>Washington St & Gansevoort St</td>\n", | |
| " <td>6039.06</td>\n", | |
| " <td>40.741776</td>\n", | |
| " <td>-74.001497</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.740550</td>\n", | |
| " <td>-74.004808</td>\n", | |
| " <td>249.672239</td>\n", | |
| " <td>2024-06-12 18:22:23.755</td>\n", | |
| " <td>0 days 00:03:29.312000</td>\n", | |
| " <td>18</td>\n", | |
| " <td>620.974747</td>\n", | |
| " <td>10.680272</td>\n", | |
| " <td>244.033156</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999998</th>\n", | |
| " <td>DFA5411CEC5F9C35</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-05 12:40:01.985</td>\n", | |
| " <td>2024-06-05 12:55:25.106</td>\n", | |
| " <td>E 7 St & Ave A</td>\n", | |
| " <td>5626.07</td>\n", | |
| " <td>5 Ave & E 30 St</td>\n", | |
| " <td>6248.08</td>\n", | |
| " <td>40.726218</td>\n", | |
| " <td>-73.983799</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.736101</td>\n", | |
| " <td>-73.985047</td>\n", | |
| " <td>-7.197617</td>\n", | |
| " <td>2024-06-05 12:55:25.106</td>\n", | |
| " <td>0 days 00:15:23.121000</td>\n", | |
| " <td>12</td>\n", | |
| " <td>2208.035084</td>\n", | |
| " <td>8.610926</td>\n", | |
| " <td>354.513763</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999999</th>\n", | |
| " <td>8D5ADCF052EBEF96</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-10 19:08:27.170</td>\n", | |
| " <td>2024-06-10 19:15:19.068</td>\n", | |
| " <td>Bergen St & Vanderbilt Ave</td>\n", | |
| " <td>4157.10</td>\n", | |
| " <td>Degraw St & 3 Ave</td>\n", | |
| " <td>4217.06</td>\n", | |
| " <td>40.679439</td>\n", | |
| " <td>-73.968044</td>\n", | |
| " <td>...</td>\n", | |
| " <td>member</td>\n", | |
| " <td>40.679604</td>\n", | |
| " <td>-73.976372</td>\n", | |
| " <td>-88.860853</td>\n", | |
| " <td>2024-06-10 19:15:19.068</td>\n", | |
| " <td>0 days 00:06:51.898000</td>\n", | |
| " <td>19</td>\n", | |
| " <td>1405.043329</td>\n", | |
| " <td>12.280118</td>\n", | |
| " <td>271.501592</td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| "</table>\n", | |
| "<p>4763854 rows × 22 columns</p>\n", | |
| "</div>" | |
| ], | |
| "text/plain": [ | |
| " ride_id rideable_type started_at \\\n", | |
| "0 C943DA3BBC04DA57 classic_bike 2024-06-19 19:24:11.778 \n", | |
| "1 35F6F3D1D27DEF6D electric_bike 2024-06-20 17:01:54.322 \n", | |
| "2 9B8071426046B632 classic_bike 2024-06-25 15:39:31.800 \n", | |
| "3 995E66CC32088A47 electric_bike 2024-06-26 15:29:28.377 \n", | |
| "4 1D16A382B788B03E electric_bike 2024-06-21 19:42:04.451 \n", | |
| "... ... ... ... \n", | |
| "999995 6B447F37BB327BCD electric_bike 2024-06-04 09:31:45.239 \n", | |
| "999996 189FE5C8A830E3CA electric_bike 2024-06-01 18:03:26.911 \n", | |
| "999997 BD7E33097787F6E6 classic_bike 2024-06-12 18:18:54.443 \n", | |
| "999998 DFA5411CEC5F9C35 classic_bike 2024-06-05 12:40:01.985 \n", | |
| "999999 8D5ADCF052EBEF96 classic_bike 2024-06-10 19:08:27.170 \n", | |
| "\n", | |
| " ended_at start_station_name start_station_id \\\n", | |
| "0 2024-06-19 19:35:37.667 E 81 St & York Ave 7084.12 \n", | |
| "1 2024-06-20 17:14:34.198 E 81 St & York Ave 7084.12 \n", | |
| "2 2024-06-25 15:44:36.811 Broadway & W 58 St 6948.10 \n", | |
| "3 2024-06-26 15:34:19.452 Broadway & W 58 St 6948.10 \n", | |
| "4 2024-06-21 19:51:11.660 Banker St & Meserole Ave 5633.04 \n", | |
| "... ... ... ... \n", | |
| "999995 2024-06-04 09:37:30.695 8 Ave & W 31 St 6450.05 \n", | |
| "999996 2024-06-01 18:15:33.453 E 7 St & Ave A 5626.07 \n", | |
| "999997 2024-06-12 18:22:23.755 W 17 St & 8 Ave 6148.02 \n", | |
| "999998 2024-06-05 12:55:25.106 E 7 St & Ave A 5626.07 \n", | |
| "999999 2024-06-10 19:15:19.068 Bergen St & Vanderbilt Ave 4157.10 \n", | |
| "\n", | |
| " end_station_name end_station_id start_lat start_lng \\\n", | |
| "0 E 84 St & Park Ave 7243.04 40.772838 -73.949892 \n", | |
| "1 Central Park West & W 72 St 7141.07 40.772940 -73.949694 \n", | |
| "2 Central Park West & W 72 St 7141.07 40.766953 -73.981693 \n", | |
| "3 Central Park West & W 72 St 7141.07 40.766713 -73.981900 \n", | |
| "4 Metropolitan Ave & Bedford Ave 5308.04 40.726267 -73.956254 \n", | |
| "... ... ... ... ... \n", | |
| "999995 5 Ave & E 30 St 6248.08 40.750805 -73.994606 \n", | |
| "999996 5 Ave & E 30 St 6248.08 40.726115 -73.983948 \n", | |
| "999997 Washington St & Gansevoort St 6039.06 40.741776 -74.001497 \n", | |
| "999998 5 Ave & E 30 St 6248.08 40.726218 -73.983799 \n", | |
| "999999 Degraw St & 3 Ave 4217.06 40.679439 -73.968044 \n", | |
| "\n", | |
| " ... member_casual latitude longitude bearing_approx \\\n", | |
| "0 ... member 40.775733 -73.953807 -53.520017 \n", | |
| "1 ... member 40.774367 -73.962950 -83.855611 \n", | |
| "2 ... member 40.771373 -73.978950 31.828975 \n", | |
| "3 ... member 40.771254 -73.979053 32.090634 \n", | |
| "4 ... casual 40.720808 -73.958247 200.061403 \n", | |
| "... ... ... ... ... ... \n", | |
| "999995 ... member 40.748395 -73.990450 120.113020 \n", | |
| "999996 ... member 40.736050 -73.985122 -6.735101 \n", | |
| "999997 ... member 40.740550 -74.004808 249.672239 \n", | |
| "999998 ... member 40.736101 -73.985047 -7.197617 \n", | |
| "999999 ... member 40.679604 -73.976372 -88.860853 \n", | |
| "\n", | |
| " timestamp duration hour_of_day \\\n", | |
| "0 2024-06-19 19:35:37.667 0 days 00:11:25.889000 19 \n", | |
| "1 2024-06-20 17:14:34.198 0 days 00:12:39.876000 17 \n", | |
| "2 2024-06-25 15:44:36.811 0 days 00:05:05.011000 15 \n", | |
| "3 2024-06-26 15:34:19.452 0 days 00:04:51.075000 15 \n", | |
| "4 2024-06-21 19:51:11.660 0 days 00:09:07.209000 19 \n", | |
| "... ... ... ... \n", | |
| "999995 2024-06-04 09:37:30.695 0 days 00:05:45.456000 9 \n", | |
| "999996 2024-06-01 18:15:33.453 0 days 00:12:06.542000 18 \n", | |
| "999997 2024-06-12 18:22:23.755 0 days 00:03:29.312000 18 \n", | |
| "999998 2024-06-05 12:55:25.106 0 days 00:15:23.121000 12 \n", | |
| "999999 2024-06-10 19:15:19.068 0 days 00:06:51.898000 19 \n", | |
| "\n", | |
| " distance_in_meters speed_kmh bearing \n", | |
| "0 921.312340 4.835658 314.208748 \n", | |
| "1 2254.924622 10.682965 278.068638 \n", | |
| "2 1086.230686 12.820621 25.261143 \n", | |
| "3 1117.780740 13.824652 25.486718 \n", | |
| "4 1259.766621 8.287802 195.528921 \n", | |
| "... ... ... ... \n", | |
| "999995 881.704732 9.188253 127.327178 \n", | |
| "999996 2218.263916 10.991450 354.867720 \n", | |
| "999997 620.974747 10.680272 244.033156 \n", | |
| "999998 2208.035084 8.610926 354.513763 \n", | |
| "999999 1405.043329 12.280118 271.501592 \n", | |
| "\n", | |
| "[4763854 rows x 22 columns]" | |
| ] | |
| }, | |
| "execution_count": 15, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "df" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 16, | |
| "id": "84acb3a2-1711-47b3-b3c2-d2f224c968e2", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "df[\"direction_x\"] = np.sin(2 * math.pi * df[\"bearing\"] / 360.0)\n", | |
| "df[\"direction_y\"] = np.cos(2 * math.pi * df[\"bearing\"] / 360.0)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 17, | |
| "id": "48187ebd-b517-44af-826d-4f62cbbde445", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/html": [ | |
| "<div>\n", | |
| "<style scoped>\n", | |
| " .dataframe tbody tr th:only-of-type {\n", | |
| " vertical-align: middle;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe tbody tr th {\n", | |
| " vertical-align: top;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe thead th {\n", | |
| " text-align: right;\n", | |
| " }\n", | |
| "</style>\n", | |
| "<table border=\"1\" class=\"dataframe\">\n", | |
| " <thead>\n", | |
| " <tr style=\"text-align: right;\">\n", | |
| " <th></th>\n", | |
| " <th>ride_id</th>\n", | |
| " <th>rideable_type</th>\n", | |
| " <th>started_at</th>\n", | |
| " <th>ended_at</th>\n", | |
| " <th>start_station_name</th>\n", | |
| " <th>start_station_id</th>\n", | |
| " <th>end_station_name</th>\n", | |
| " <th>end_station_id</th>\n", | |
| " <th>start_lat</th>\n", | |
| " <th>start_lng</th>\n", | |
| " <th>...</th>\n", | |
| " <th>longitude</th>\n", | |
| " <th>bearing_approx</th>\n", | |
| " <th>timestamp</th>\n", | |
| " <th>duration</th>\n", | |
| " <th>hour_of_day</th>\n", | |
| " <th>distance_in_meters</th>\n", | |
| " <th>speed_kmh</th>\n", | |
| " <th>bearing</th>\n", | |
| " <th>direction_x</th>\n", | |
| " <th>direction_y</th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " <tr>\n", | |
| " <th>0</th>\n", | |
| " <td>C943DA3BBC04DA57</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-19 19:24:11.778</td>\n", | |
| " <td>2024-06-19 19:35:37.667</td>\n", | |
| " <td>E 81 St & York Ave</td>\n", | |
| " <td>7084.12</td>\n", | |
| " <td>E 84 St & Park Ave</td>\n", | |
| " <td>7243.04</td>\n", | |
| " <td>40.772838</td>\n", | |
| " <td>-73.949892</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.953807</td>\n", | |
| " <td>-53.520017</td>\n", | |
| " <td>2024-06-19 19:35:37.667</td>\n", | |
| " <td>0 days 00:11:25.889000</td>\n", | |
| " <td>19</td>\n", | |
| " <td>921.312340</td>\n", | |
| " <td>4.835658</td>\n", | |
| " <td>314.208748</td>\n", | |
| " <td>-0.716804</td>\n", | |
| " <td>0.697275</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>1</th>\n", | |
| " <td>35F6F3D1D27DEF6D</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-20 17:01:54.322</td>\n", | |
| " <td>2024-06-20 17:14:34.198</td>\n", | |
| " <td>E 81 St & York Ave</td>\n", | |
| " <td>7084.12</td>\n", | |
| " <td>Central Park West & W 72 St</td>\n", | |
| " <td>7141.07</td>\n", | |
| " <td>40.772940</td>\n", | |
| " <td>-73.949694</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.962950</td>\n", | |
| " <td>-83.855611</td>\n", | |
| " <td>2024-06-20 17:14:34.198</td>\n", | |
| " <td>0 days 00:12:39.876000</td>\n", | |
| " <td>17</td>\n", | |
| " <td>2254.924622</td>\n", | |
| " <td>10.682965</td>\n", | |
| " <td>278.068638</td>\n", | |
| " <td>-0.990101</td>\n", | |
| " <td>0.140359</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>2</th>\n", | |
| " <td>9B8071426046B632</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-25 15:39:31.800</td>\n", | |
| " <td>2024-06-25 15:44:36.811</td>\n", | |
| " <td>Broadway & W 58 St</td>\n", | |
| " <td>6948.10</td>\n", | |
| " <td>Central Park West & W 72 St</td>\n", | |
| " <td>7141.07</td>\n", | |
| " <td>40.766953</td>\n", | |
| " <td>-73.981693</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.978950</td>\n", | |
| " <td>31.828975</td>\n", | |
| " <td>2024-06-25 15:44:36.811</td>\n", | |
| " <td>0 days 00:05:05.011000</td>\n", | |
| " <td>15</td>\n", | |
| " <td>1086.230686</td>\n", | |
| " <td>12.820621</td>\n", | |
| " <td>25.261143</td>\n", | |
| " <td>0.426745</td>\n", | |
| " <td>0.904372</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>3</th>\n", | |
| " <td>995E66CC32088A47</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-26 15:29:28.377</td>\n", | |
| " <td>2024-06-26 15:34:19.452</td>\n", | |
| " <td>Broadway & W 58 St</td>\n", | |
| " <td>6948.10</td>\n", | |
| " <td>Central Park West & W 72 St</td>\n", | |
| " <td>7141.07</td>\n", | |
| " <td>40.766713</td>\n", | |
| " <td>-73.981900</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.979053</td>\n", | |
| " <td>32.090634</td>\n", | |
| " <td>2024-06-26 15:34:19.452</td>\n", | |
| " <td>0 days 00:04:51.075000</td>\n", | |
| " <td>15</td>\n", | |
| " <td>1117.780740</td>\n", | |
| " <td>13.824652</td>\n", | |
| " <td>25.486718</td>\n", | |
| " <td>0.430302</td>\n", | |
| " <td>0.902685</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>4</th>\n", | |
| " <td>1D16A382B788B03E</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-21 19:42:04.451</td>\n", | |
| " <td>2024-06-21 19:51:11.660</td>\n", | |
| " <td>Banker St & Meserole Ave</td>\n", | |
| " <td>5633.04</td>\n", | |
| " <td>Metropolitan Ave & Bedford Ave</td>\n", | |
| " <td>5308.04</td>\n", | |
| " <td>40.726267</td>\n", | |
| " <td>-73.956254</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.958247</td>\n", | |
| " <td>200.061403</td>\n", | |
| " <td>2024-06-21 19:51:11.660</td>\n", | |
| " <td>0 days 00:09:07.209000</td>\n", | |
| " <td>19</td>\n", | |
| " <td>1259.766621</td>\n", | |
| " <td>8.287802</td>\n", | |
| " <td>195.528921</td>\n", | |
| " <td>-0.267725</td>\n", | |
| " <td>-0.963495</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>...</th>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999995</th>\n", | |
| " <td>6B447F37BB327BCD</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-04 09:31:45.239</td>\n", | |
| " <td>2024-06-04 09:37:30.695</td>\n", | |
| " <td>8 Ave & W 31 St</td>\n", | |
| " <td>6450.05</td>\n", | |
| " <td>5 Ave & E 30 St</td>\n", | |
| " <td>6248.08</td>\n", | |
| " <td>40.750805</td>\n", | |
| " <td>-73.994606</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.990450</td>\n", | |
| " <td>120.113020</td>\n", | |
| " <td>2024-06-04 09:37:30.695</td>\n", | |
| " <td>0 days 00:05:45.456000</td>\n", | |
| " <td>9</td>\n", | |
| " <td>881.704732</td>\n", | |
| " <td>9.188253</td>\n", | |
| " <td>127.327178</td>\n", | |
| " <td>0.795186</td>\n", | |
| " <td>-0.606366</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999996</th>\n", | |
| " <td>189FE5C8A830E3CA</td>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>2024-06-01 18:03:26.911</td>\n", | |
| " <td>2024-06-01 18:15:33.453</td>\n", | |
| " <td>E 7 St & Ave A</td>\n", | |
| " <td>5626.07</td>\n", | |
| " <td>5 Ave & E 30 St</td>\n", | |
| " <td>6248.08</td>\n", | |
| " <td>40.726115</td>\n", | |
| " <td>-73.983948</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.985122</td>\n", | |
| " <td>-6.735101</td>\n", | |
| " <td>2024-06-01 18:15:33.453</td>\n", | |
| " <td>0 days 00:12:06.542000</td>\n", | |
| " <td>18</td>\n", | |
| " <td>2218.263916</td>\n", | |
| " <td>10.991450</td>\n", | |
| " <td>354.867720</td>\n", | |
| " <td>-0.089455</td>\n", | |
| " <td>0.995991</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999997</th>\n", | |
| " <td>BD7E33097787F6E6</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-12 18:18:54.443</td>\n", | |
| " <td>2024-06-12 18:22:23.755</td>\n", | |
| " <td>W 17 St & 8 Ave</td>\n", | |
| " <td>6148.02</td>\n", | |
| " <td>Washington St & Gansevoort St</td>\n", | |
| " <td>6039.06</td>\n", | |
| " <td>40.741776</td>\n", | |
| " <td>-74.001497</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-74.004808</td>\n", | |
| " <td>249.672239</td>\n", | |
| " <td>2024-06-12 18:22:23.755</td>\n", | |
| " <td>0 days 00:03:29.312000</td>\n", | |
| " <td>18</td>\n", | |
| " <td>620.974747</td>\n", | |
| " <td>10.680272</td>\n", | |
| " <td>244.033156</td>\n", | |
| " <td>-0.899048</td>\n", | |
| " <td>-0.437851</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999998</th>\n", | |
| " <td>DFA5411CEC5F9C35</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-05 12:40:01.985</td>\n", | |
| " <td>2024-06-05 12:55:25.106</td>\n", | |
| " <td>E 7 St & Ave A</td>\n", | |
| " <td>5626.07</td>\n", | |
| " <td>5 Ave & E 30 St</td>\n", | |
| " <td>6248.08</td>\n", | |
| " <td>40.726218</td>\n", | |
| " <td>-73.983799</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.985047</td>\n", | |
| " <td>-7.197617</td>\n", | |
| " <td>2024-06-05 12:55:25.106</td>\n", | |
| " <td>0 days 00:15:23.121000</td>\n", | |
| " <td>12</td>\n", | |
| " <td>2208.035084</td>\n", | |
| " <td>8.610926</td>\n", | |
| " <td>354.513763</td>\n", | |
| " <td>-0.095607</td>\n", | |
| " <td>0.995419</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>999999</th>\n", | |
| " <td>8D5ADCF052EBEF96</td>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>2024-06-10 19:08:27.170</td>\n", | |
| " <td>2024-06-10 19:15:19.068</td>\n", | |
| " <td>Bergen St & Vanderbilt Ave</td>\n", | |
| " <td>4157.10</td>\n", | |
| " <td>Degraw St & 3 Ave</td>\n", | |
| " <td>4217.06</td>\n", | |
| " <td>40.679439</td>\n", | |
| " <td>-73.968044</td>\n", | |
| " <td>...</td>\n", | |
| " <td>-73.976372</td>\n", | |
| " <td>-88.860853</td>\n", | |
| " <td>2024-06-10 19:15:19.068</td>\n", | |
| " <td>0 days 00:06:51.898000</td>\n", | |
| " <td>19</td>\n", | |
| " <td>1405.043329</td>\n", | |
| " <td>12.280118</td>\n", | |
| " <td>271.501592</td>\n", | |
| " <td>-0.999657</td>\n", | |
| " <td>0.026205</td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| "</table>\n", | |
| "<p>4763854 rows × 24 columns</p>\n", | |
| "</div>" | |
| ], | |
| "text/plain": [ | |
| " ride_id rideable_type started_at \\\n", | |
| "0 C943DA3BBC04DA57 classic_bike 2024-06-19 19:24:11.778 \n", | |
| "1 35F6F3D1D27DEF6D electric_bike 2024-06-20 17:01:54.322 \n", | |
| "2 9B8071426046B632 classic_bike 2024-06-25 15:39:31.800 \n", | |
| "3 995E66CC32088A47 electric_bike 2024-06-26 15:29:28.377 \n", | |
| "4 1D16A382B788B03E electric_bike 2024-06-21 19:42:04.451 \n", | |
| "... ... ... ... \n", | |
| "999995 6B447F37BB327BCD electric_bike 2024-06-04 09:31:45.239 \n", | |
| "999996 189FE5C8A830E3CA electric_bike 2024-06-01 18:03:26.911 \n", | |
| "999997 BD7E33097787F6E6 classic_bike 2024-06-12 18:18:54.443 \n", | |
| "999998 DFA5411CEC5F9C35 classic_bike 2024-06-05 12:40:01.985 \n", | |
| "999999 8D5ADCF052EBEF96 classic_bike 2024-06-10 19:08:27.170 \n", | |
| "\n", | |
| " ended_at start_station_name start_station_id \\\n", | |
| "0 2024-06-19 19:35:37.667 E 81 St & York Ave 7084.12 \n", | |
| "1 2024-06-20 17:14:34.198 E 81 St & York Ave 7084.12 \n", | |
| "2 2024-06-25 15:44:36.811 Broadway & W 58 St 6948.10 \n", | |
| "3 2024-06-26 15:34:19.452 Broadway & W 58 St 6948.10 \n", | |
| "4 2024-06-21 19:51:11.660 Banker St & Meserole Ave 5633.04 \n", | |
| "... ... ... ... \n", | |
| "999995 2024-06-04 09:37:30.695 8 Ave & W 31 St 6450.05 \n", | |
| "999996 2024-06-01 18:15:33.453 E 7 St & Ave A 5626.07 \n", | |
| "999997 2024-06-12 18:22:23.755 W 17 St & 8 Ave 6148.02 \n", | |
| "999998 2024-06-05 12:55:25.106 E 7 St & Ave A 5626.07 \n", | |
| "999999 2024-06-10 19:15:19.068 Bergen St & Vanderbilt Ave 4157.10 \n", | |
| "\n", | |
| " end_station_name end_station_id start_lat start_lng \\\n", | |
| "0 E 84 St & Park Ave 7243.04 40.772838 -73.949892 \n", | |
| "1 Central Park West & W 72 St 7141.07 40.772940 -73.949694 \n", | |
| "2 Central Park West & W 72 St 7141.07 40.766953 -73.981693 \n", | |
| "3 Central Park West & W 72 St 7141.07 40.766713 -73.981900 \n", | |
| "4 Metropolitan Ave & Bedford Ave 5308.04 40.726267 -73.956254 \n", | |
| "... ... ... ... ... \n", | |
| "999995 5 Ave & E 30 St 6248.08 40.750805 -73.994606 \n", | |
| "999996 5 Ave & E 30 St 6248.08 40.726115 -73.983948 \n", | |
| "999997 Washington St & Gansevoort St 6039.06 40.741776 -74.001497 \n", | |
| "999998 5 Ave & E 30 St 6248.08 40.726218 -73.983799 \n", | |
| "999999 Degraw St & 3 Ave 4217.06 40.679439 -73.968044 \n", | |
| "\n", | |
| " ... longitude bearing_approx timestamp \\\n", | |
| "0 ... -73.953807 -53.520017 2024-06-19 19:35:37.667 \n", | |
| "1 ... -73.962950 -83.855611 2024-06-20 17:14:34.198 \n", | |
| "2 ... -73.978950 31.828975 2024-06-25 15:44:36.811 \n", | |
| "3 ... -73.979053 32.090634 2024-06-26 15:34:19.452 \n", | |
| "4 ... -73.958247 200.061403 2024-06-21 19:51:11.660 \n", | |
| "... ... ... ... ... \n", | |
| "999995 ... -73.990450 120.113020 2024-06-04 09:37:30.695 \n", | |
| "999996 ... -73.985122 -6.735101 2024-06-01 18:15:33.453 \n", | |
| "999997 ... -74.004808 249.672239 2024-06-12 18:22:23.755 \n", | |
| "999998 ... -73.985047 -7.197617 2024-06-05 12:55:25.106 \n", | |
| "999999 ... -73.976372 -88.860853 2024-06-10 19:15:19.068 \n", | |
| "\n", | |
| " duration hour_of_day distance_in_meters speed_kmh \\\n", | |
| "0 0 days 00:11:25.889000 19 921.312340 4.835658 \n", | |
| "1 0 days 00:12:39.876000 17 2254.924622 10.682965 \n", | |
| "2 0 days 00:05:05.011000 15 1086.230686 12.820621 \n", | |
| "3 0 days 00:04:51.075000 15 1117.780740 13.824652 \n", | |
| "4 0 days 00:09:07.209000 19 1259.766621 8.287802 \n", | |
| "... ... ... ... ... \n", | |
| "999995 0 days 00:05:45.456000 9 881.704732 9.188253 \n", | |
| "999996 0 days 00:12:06.542000 18 2218.263916 10.991450 \n", | |
| "999997 0 days 00:03:29.312000 18 620.974747 10.680272 \n", | |
| "999998 0 days 00:15:23.121000 12 2208.035084 8.610926 \n", | |
| "999999 0 days 00:06:51.898000 19 1405.043329 12.280118 \n", | |
| "\n", | |
| " bearing direction_x direction_y \n", | |
| "0 314.208748 -0.716804 0.697275 \n", | |
| "1 278.068638 -0.990101 0.140359 \n", | |
| "2 25.261143 0.426745 0.904372 \n", | |
| "3 25.486718 0.430302 0.902685 \n", | |
| "4 195.528921 -0.267725 -0.963495 \n", | |
| "... ... ... ... \n", | |
| "999995 127.327178 0.795186 -0.606366 \n", | |
| "999996 354.867720 -0.089455 0.995991 \n", | |
| "999997 244.033156 -0.899048 -0.437851 \n", | |
| "999998 354.513763 -0.095607 0.995419 \n", | |
| "999999 271.501592 -0.999657 0.026205 \n", | |
| "\n", | |
| "[4763854 rows x 24 columns]" | |
| ] | |
| }, | |
| "execution_count": 17, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "df" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 18, | |
| "id": "2dcbca8b-751c-4787-a543-fedec3935825", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/html": [ | |
| "<div>\n", | |
| "<style scoped>\n", | |
| " .dataframe tbody tr th:only-of-type {\n", | |
| " vertical-align: middle;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe tbody tr th {\n", | |
| " vertical-align: top;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe thead th {\n", | |
| " text-align: right;\n", | |
| " }\n", | |
| "</style>\n", | |
| "<table border=\"1\" class=\"dataframe\">\n", | |
| " <thead>\n", | |
| " <tr style=\"text-align: right;\">\n", | |
| " <th></th>\n", | |
| " <th>hour_of_day</th>\n", | |
| " <th>ride_id</th>\n", | |
| " <th>speed_kmh</th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " <tr>\n", | |
| " <th>0</th>\n", | |
| " <td>0</td>\n", | |
| " <td>86576</td>\n", | |
| " <td>10.957106</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>1</th>\n", | |
| " <td>1</td>\n", | |
| " <td>51777</td>\n", | |
| " <td>10.967531</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>2</th>\n", | |
| " <td>2</td>\n", | |
| " <td>33513</td>\n", | |
| " <td>11.099800</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>3</th>\n", | |
| " <td>3</td>\n", | |
| " <td>21560</td>\n", | |
| " <td>11.179632</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>4</th>\n", | |
| " <td>4</td>\n", | |
| " <td>16773</td>\n", | |
| " <td>11.722521</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>5</th>\n", | |
| " <td>5</td>\n", | |
| " <td>27432</td>\n", | |
| " <td>13.186947</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>6</th>\n", | |
| " <td>6</td>\n", | |
| " <td>75141</td>\n", | |
| " <td>13.242671</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>7</th>\n", | |
| " <td>7</td>\n", | |
| " <td>149320</td>\n", | |
| " <td>12.552154</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>8</th>\n", | |
| " <td>8</td>\n", | |
| " <td>248031</td>\n", | |
| " <td>11.771881</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>9</th>\n", | |
| " <td>9</td>\n", | |
| " <td>237242</td>\n", | |
| " <td>11.405416</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>10</th>\n", | |
| " <td>10</td>\n", | |
| " <td>206000</td>\n", | |
| " <td>10.894097</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>11</th>\n", | |
| " <td>11</td>\n", | |
| " <td>221486</td>\n", | |
| " <td>10.481819</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>12</th>\n", | |
| " <td>12</td>\n", | |
| " <td>251162</td>\n", | |
| " <td>10.192453</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>13</th>\n", | |
| " <td>13</td>\n", | |
| " <td>265327</td>\n", | |
| " <td>10.092776</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>14</th>\n", | |
| " <td>14</td>\n", | |
| " <td>281880</td>\n", | |
| " <td>10.076515</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>15</th>\n", | |
| " <td>15</td>\n", | |
| " <td>304598</td>\n", | |
| " <td>10.068011</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>16</th>\n", | |
| " <td>16</td>\n", | |
| " <td>326925</td>\n", | |
| " <td>10.140937</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>17</th>\n", | |
| " <td>17</td>\n", | |
| " <td>411277</td>\n", | |
| " <td>10.312079</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>18</th>\n", | |
| " <td>18</td>\n", | |
| " <td>421995</td>\n", | |
| " <td>10.316968</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>19</th>\n", | |
| " <td>19</td>\n", | |
| " <td>349972</td>\n", | |
| " <td>10.228341</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>20</th>\n", | |
| " <td>20</td>\n", | |
| " <td>278294</td>\n", | |
| " <td>10.147087</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>21</th>\n", | |
| " <td>21</td>\n", | |
| " <td>203607</td>\n", | |
| " <td>10.185745</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>22</th>\n", | |
| " <td>22</td>\n", | |
| " <td>165147</td>\n", | |
| " <td>10.525339</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>23</th>\n", | |
| " <td>23</td>\n", | |
| " <td>128819</td>\n", | |
| " <td>10.806141</td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| "</table>\n", | |
| "</div>" | |
| ], | |
| "text/plain": [ | |
| " hour_of_day ride_id speed_kmh\n", | |
| "0 0 86576 10.957106\n", | |
| "1 1 51777 10.967531\n", | |
| "2 2 33513 11.099800\n", | |
| "3 3 21560 11.179632\n", | |
| "4 4 16773 11.722521\n", | |
| "5 5 27432 13.186947\n", | |
| "6 6 75141 13.242671\n", | |
| "7 7 149320 12.552154\n", | |
| "8 8 248031 11.771881\n", | |
| "9 9 237242 11.405416\n", | |
| "10 10 206000 10.894097\n", | |
| "11 11 221486 10.481819\n", | |
| "12 12 251162 10.192453\n", | |
| "13 13 265327 10.092776\n", | |
| "14 14 281880 10.076515\n", | |
| "15 15 304598 10.068011\n", | |
| "16 16 326925 10.140937\n", | |
| "17 17 411277 10.312079\n", | |
| "18 18 421995 10.316968\n", | |
| "19 19 349972 10.228341\n", | |
| "20 20 278294 10.147087\n", | |
| "21 21 203607 10.185745\n", | |
| "22 22 165147 10.525339\n", | |
| "23 23 128819 10.806141" | |
| ] | |
| }, | |
| "execution_count": 18, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "df.groupby(\"hour_of_day\", as_index=False).agg({\"ride_id\": \"count\", \"speed_kmh\": \"mean\" })" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 19, | |
| "id": "7c41612e-48ed-437e-a777-8599d078a5ec", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/html": [ | |
| "<div>\n", | |
| "<style scoped>\n", | |
| " .dataframe tbody tr th:only-of-type {\n", | |
| " vertical-align: middle;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe tbody tr th {\n", | |
| " vertical-align: top;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe thead th {\n", | |
| " text-align: right;\n", | |
| " }\n", | |
| "</style>\n", | |
| "<table border=\"1\" class=\"dataframe\">\n", | |
| " <thead>\n", | |
| " <tr style=\"text-align: right;\">\n", | |
| " <th></th>\n", | |
| " <th>rideable_type</th>\n", | |
| " <th>ride_id</th>\n", | |
| " <th>speed_kmh</th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " <tr>\n", | |
| " <th>0</th>\n", | |
| " <td>classic_bike</td>\n", | |
| " <td>1676397</td>\n", | |
| " <td>8.597532</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>1</th>\n", | |
| " <td>electric_bike</td>\n", | |
| " <td>3087457</td>\n", | |
| " <td>11.659586</td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| "</table>\n", | |
| "</div>" | |
| ], | |
| "text/plain": [ | |
| " rideable_type ride_id speed_kmh\n", | |
| "0 classic_bike 1676397 8.597532\n", | |
| "1 electric_bike 3087457 11.659586" | |
| ] | |
| }, | |
| "execution_count": 19, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "df.groupby(\"rideable_type\", as_index=False).agg({\"ride_id\": \"count\", \"speed_kmh\": \"mean\" })" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 20, | |
| "id": "f45c8137-c991-4a0a-8c44-7b4da22b0804", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "# CONSTANTS\n", | |
| "\n", | |
| "H3_RESOLUTION = 9" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 21, | |
| "id": "706898d9-1e69-436e-b7c0-324d29aa4e1a", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "INFO: Pandarallel will run on 4 workers.\n", | |
| "INFO: Pandarallel will use Memory file system to transfer data between the main process and workers.\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "application/vnd.jupyter.widget-view+json": { | |
| "model_id": "bdad9f6953aa418babdab839c7e69a0e", | |
| "version_major": 2, | |
| "version_minor": 0 | |
| }, | |
| "text/plain": [ | |
| "VBox(children=(HBox(children=(IntProgress(value=0, description='0.00%', max=1190964), Label(value='0 / 1190964…" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "pandarallel.initialize(progress_bar=True)\n", | |
| "\n", | |
| "hex_ids = df.parallel_apply(lambda row: h3.geo_to_h3(row.latitude, row.longitude, H3_RESOLUTION), axis = 1)\n", | |
| "\n", | |
| "df = df.assign(hex_id=hex_ids.values)\n", | |
| "hex_ids = None" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 22, | |
| "id": "ca19ac56-32c2-49fa-a91c-0d01e64c49f4", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "1164652\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "# looking at MORNING TRAFFIC ONLY! 5 am to 11 am\n", | |
| "df_subset = df[(df.hour_of_day > 4) & (df.hour_of_day < 12)]\n", | |
| "print(len(df_subset))" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 23, | |
| "id": "e76141d5-51dd-4c77-8e13-671d15c5e435", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "## looking at EVENING TRAFFIC ONLY! noon to 9 pm\n", | |
| "#df_subset = df[(df.hour_of_day >= 12) & (df.hour_of_day <= 21)]\n", | |
| "#print(len(df_subset))" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 24, | |
| "id": "8784add1-09e6-4be4-bc6c-084bbf3d5eb6", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "# looking at ALL traffic\n", | |
| "#df_subset = df\n", | |
| "#print(len(df_subset))" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 32, | |
| "id": "42f6326a-88e4-4031-ad80-bfa60551bd9c", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "180.24708738157707\n", | |
| "180.24708738157713\n", | |
| "180.2470873815771\n", | |
| "169.54538088477725\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "from scipy.stats import circmean\n", | |
| "print(circmean(df['bearing'], high=360, low=0))\n", | |
| "print(np.rad2deg(circmean(np.deg2rad(df['bearing']))))\n", | |
| "# yes, somewhat confusingly, direction_x is what could be regarded as the y axis, thus the reason for the argument order here.\n", | |
| "# be aware that arctan2 takes y and x in that order, and may return results below 0\n", | |
| "print(360 + np.rad2deg(np.arctan2(np.mean(df['direction_x']), np.mean(df['direction_y']))))\n", | |
| "print(np.mean(df['bearing']))" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 26, | |
| "id": "824c61e7-9a7f-44e2-afc9-a15e62197c70", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "179.0\n", | |
| "359.0\n", | |
| "359.0\n" | |
| ] | |
| } | |
| ], | |
| "source": [ | |
| "import numpy as np\n", | |
| "import scipy.stats\n", | |
| "\n", | |
| "# compass bearings in degrees:\n", | |
| "data = [2, 356]\n", | |
| "\n", | |
| "# average bearing:\n", | |
| "print(np.mean(data)) # == 179.0, aka \"wrong\"\n", | |
| "print(scipy.stats.circmean(data, high=360, low=0)) # == 359.0, aka \"correct\"\n", | |
| "\n", | |
| "print(np.rad2deg(np.angle(np.mean(np.cos(np.deg2rad(data)) + np.sin(np.deg2rad(data)) * 1j))%(2*math.pi)))\n", | |
| "# == 359.0, aka also correct, but achieving the result in an overly complex way" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 27, | |
| "id": "f2c615e1-d6cf-497f-b0ea-b3ff209fb9ba", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "positions_df_byhex = df_subset.groupby(\"hex_id\", as_index=False).agg({\n", | |
| " \"longitude\": \"mean\",\n", | |
| " \"latitude\": \"mean\",\n", | |
| " \"direction_x\": \"mean\",\n", | |
| " \"direction_y\": \"mean\",\n", | |
| " \"bearing\": \"count\",\n", | |
| " \"speed_kmh\": \"mean\"\n", | |
| " })" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 28, | |
| "id": "9d63288e-7013-4f78-9ddf-12f4a44601d0", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/html": [ | |
| "<div>\n", | |
| "<style scoped>\n", | |
| " .dataframe tbody tr th:only-of-type {\n", | |
| " vertical-align: middle;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe tbody tr th {\n", | |
| " vertical-align: top;\n", | |
| " }\n", | |
| "\n", | |
| " .dataframe thead th {\n", | |
| " text-align: right;\n", | |
| " }\n", | |
| "</style>\n", | |
| "<table border=\"1\" class=\"dataframe\">\n", | |
| " <thead>\n", | |
| " <tr style=\"text-align: right;\">\n", | |
| " <th></th>\n", | |
| " <th>hex_id</th>\n", | |
| " <th>longitude</th>\n", | |
| " <th>latitude</th>\n", | |
| " <th>direction_x</th>\n", | |
| " <th>direction_y</th>\n", | |
| " <th>bearing</th>\n", | |
| " <th>speed_kmh</th>\n", | |
| " <th>percentile_speed_kmh</th>\n", | |
| " <th>avg_direction</th>\n", | |
| " </tr>\n", | |
| " </thead>\n", | |
| " <tbody>\n", | |
| " <tr>\n", | |
| " <th>294</th>\n", | |
| " <td>892a100a847ffff</td>\n", | |
| " <td>-73.924238</td>\n", | |
| " <td>40.836057</td>\n", | |
| " <td>-0.025768</td>\n", | |
| " <td>-0.397330</td>\n", | |
| " <td>100</td>\n", | |
| " <td>14.880955</td>\n", | |
| " <td>96.136568</td>\n", | |
| " <td>-3.076832</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>899</th>\n", | |
| " <td>892a100d18bffff</td>\n", | |
| " <td>-73.937671</td>\n", | |
| " <td>40.730134</td>\n", | |
| " <td>-0.250873</td>\n", | |
| " <td>-0.270241</td>\n", | |
| " <td>100</td>\n", | |
| " <td>14.109253</td>\n", | |
| " <td>92.587601</td>\n", | |
| " <td>-2.393343</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>771</th>\n", | |
| " <td>892a100c613ffff</td>\n", | |
| " <td>-73.895833</td>\n", | |
| " <td>40.746864</td>\n", | |
| " <td>-0.116625</td>\n", | |
| " <td>-0.010629</td>\n", | |
| " <td>100</td>\n", | |
| " <td>11.709155</td>\n", | |
| " <td>47.259659</td>\n", | |
| " <td>-1.661680</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>171</th>\n", | |
| " <td>892a1008c67ffff</td>\n", | |
| " <td>-73.965722</td>\n", | |
| " <td>40.808277</td>\n", | |
| " <td>0.027599</td>\n", | |
| " <td>0.064174</td>\n", | |
| " <td>101</td>\n", | |
| " <td>14.336382</td>\n", | |
| " <td>94.070081</td>\n", | |
| " <td>0.406159</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>1623</th>\n", | |
| " <td>892a100f26fffff</td>\n", | |
| " <td>-73.939486</td>\n", | |
| " <td>40.772281</td>\n", | |
| " <td>-0.501769</td>\n", | |
| " <td>0.122998</td>\n", | |
| " <td>101</td>\n", | |
| " <td>9.876387</td>\n", | |
| " <td>12.982929</td>\n", | |
| " <td>-1.330408</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>...</th>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " <td>...</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>945</th>\n", | |
| " <td>892a100d27bffff</td>\n", | |
| " <td>-73.998100</td>\n", | |
| " <td>40.739119</td>\n", | |
| " <td>0.051497</td>\n", | |
| " <td>0.050246</td>\n", | |
| " <td>4880</td>\n", | |
| " <td>11.441138</td>\n", | |
| " <td>40.700809</td>\n", | |
| " <td>0.797697</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>1133</th>\n", | |
| " <td>892a100d657ffff</td>\n", | |
| " <td>-73.980043</td>\n", | |
| " <td>40.763347</td>\n", | |
| " <td>-0.100148</td>\n", | |
| " <td>0.052493</td>\n", | |
| " <td>4918</td>\n", | |
| " <td>10.608247</td>\n", | |
| " <td>21.608266</td>\n", | |
| " <td>-1.088017</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>961</th>\n", | |
| " <td>892a100d2c7ffff</td>\n", | |
| " <td>-73.987826</td>\n", | |
| " <td>40.747180</td>\n", | |
| " <td>0.044647</td>\n", | |
| " <td>0.094124</td>\n", | |
| " <td>4929</td>\n", | |
| " <td>11.830133</td>\n", | |
| " <td>50.584007</td>\n", | |
| " <td>0.442914</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>983</th>\n", | |
| " <td>892a100d34bffff</td>\n", | |
| " <td>-73.986840</td>\n", | |
| " <td>40.726199</td>\n", | |
| " <td>-0.226540</td>\n", | |
| " <td>0.167507</td>\n", | |
| " <td>5019</td>\n", | |
| " <td>11.038560</td>\n", | |
| " <td>30.682839</td>\n", | |
| " <td>-0.934105</td>\n", | |
| " </tr>\n", | |
| " <tr>\n", | |
| " <th>939</th>\n", | |
| " <td>892a100d263ffff</td>\n", | |
| " <td>-73.995879</td>\n", | |
| " <td>40.736429</td>\n", | |
| " <td>0.008463</td>\n", | |
| " <td>0.132912</td>\n", | |
| " <td>5334</td>\n", | |
| " <td>11.582169</td>\n", | |
| " <td>44.249775</td>\n", | |
| " <td>0.063584</td>\n", | |
| " </tr>\n", | |
| " </tbody>\n", | |
| "</table>\n", | |
| "<p>1410 rows × 9 columns</p>\n", | |
| "</div>" | |
| ], | |
| "text/plain": [ | |
| " hex_id longitude latitude direction_x direction_y \\\n", | |
| "294 892a100a847ffff -73.924238 40.836057 -0.025768 -0.397330 \n", | |
| "899 892a100d18bffff -73.937671 40.730134 -0.250873 -0.270241 \n", | |
| "771 892a100c613ffff -73.895833 40.746864 -0.116625 -0.010629 \n", | |
| "171 892a1008c67ffff -73.965722 40.808277 0.027599 0.064174 \n", | |
| "1623 892a100f26fffff -73.939486 40.772281 -0.501769 0.122998 \n", | |
| "... ... ... ... ... ... \n", | |
| "945 892a100d27bffff -73.998100 40.739119 0.051497 0.050246 \n", | |
| "1133 892a100d657ffff -73.980043 40.763347 -0.100148 0.052493 \n", | |
| "961 892a100d2c7ffff -73.987826 40.747180 0.044647 0.094124 \n", | |
| "983 892a100d34bffff -73.986840 40.726199 -0.226540 0.167507 \n", | |
| "939 892a100d263ffff -73.995879 40.736429 0.008463 0.132912 \n", | |
| "\n", | |
| " bearing speed_kmh percentile_speed_kmh avg_direction \n", | |
| "294 100 14.880955 96.136568 -3.076832 \n", | |
| "899 100 14.109253 92.587601 -2.393343 \n", | |
| "771 100 11.709155 47.259659 -1.661680 \n", | |
| "171 101 14.336382 94.070081 0.406159 \n", | |
| "1623 101 9.876387 12.982929 -1.330408 \n", | |
| "... ... ... ... ... \n", | |
| "945 4880 11.441138 40.700809 0.797697 \n", | |
| "1133 4918 10.608247 21.608266 -1.088017 \n", | |
| "961 4929 11.830133 50.584007 0.442914 \n", | |
| "983 5019 11.038560 30.682839 -0.934105 \n", | |
| "939 5334 11.582169 44.249775 0.063584 \n", | |
| "\n", | |
| "[1410 rows x 9 columns]" | |
| ] | |
| }, | |
| "execution_count": 28, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "positions_df_byhex = df_subset.groupby(\"hex_id\", as_index=False).agg({\"longitude\": \"mean\", \"latitude\": \"mean\", \"direction_x\": \"mean\", \"direction_y\": \"mean\", \"bearing\": \"count\", \"speed_kmh\": \"mean\" })\n", | |
| "\n", | |
| "# \"bearing\" is now count of observations in the cell\n", | |
| "#positions_df_byhex = positions_df_byhex[positions_df_byhex.bearing > 1]\n", | |
| "\n", | |
| "positions_df_byhex[\"percentile_speed_kmh\"] = \\\n", | |
| " [scs.percentileofscore(positions_df_byhex[\"speed_kmh\"].values, i) for i in positions_df_byhex[\"speed_kmh\"].values]\n", | |
| "\n", | |
| "positions_df_byhex[\"avg_direction\"] = np.arctan2(positions_df_byhex[\"direction_x\"], positions_df_byhex[\"direction_y\"])\n", | |
| "\n", | |
| "# drop hexes with less than 100 observations\n", | |
| "positions_df_byhex = positions_df_byhex[positions_df_byhex['bearing'] >= 100]\n", | |
| "\n", | |
| "positions_df_byhex.sort_values(\"bearing\")" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 29, | |
| "id": "a4982035-e8e9-44de-867d-2375a2c0e40e", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "def hexagons_dataframe_to_geojson_vector(df_hex, file_output = None, column_name_bearing = \"value\", column_name_magnitude = \"value2\", magn_min = 0, magn_max = 1.0, same_size_arrows = False):\n", | |
| " \"\"\"\n", | |
| " Produce the GeoJSON for a dataframe, constructing the geometry from the \"hex_id\" column\n", | |
| " and with a property matching the one in column_name\n", | |
| " \"\"\" \n", | |
| " list_features = []\n", | |
| " \n", | |
| " for i, row in df_hex.iterrows():\n", | |
| "# try:\n", | |
| " center_long, center_lat = h3.h3_to_geo(row[\"hex_id\"])\n", | |
| "\n", | |
| " vertices = h3.h3_to_geo_boundary(row[\"hex_id\"])\n", | |
| " long_min = 360\n", | |
| " long_max = -360\n", | |
| " lat_min = 360\n", | |
| " lat_max = -360\n", | |
| " for vertex in vertices:\n", | |
| " long_min = min(long_min, vertex[0])\n", | |
| " long_max = max(long_max, vertex[0])\n", | |
| " lat_min = min(lat_min, vertex[1])\n", | |
| " lat_max = max(lat_max, vertex[1])\n", | |
| " long_size = long_max - long_min\n", | |
| " lat_size = lat_max - lat_min\n", | |
| "\n", | |
| " bearing_rad = -row[column_name_bearing] + math.pi/2\n", | |
| " if same_size_arrows:\n", | |
| " magnitude_norm = 1.0\n", | |
| " else:\n", | |
| " magnitude = row[column_name_magnitude]\n", | |
| " magnitude_norm = (magnitude - magn_min)/(magn_max-magn_min)\n", | |
| "\n", | |
| " size_of_arrow = 3 * (0.04 + 0.10 * magnitude_norm)\n", | |
| "\n", | |
| " size_of_arrow_x = lat_size * size_of_arrow\n", | |
| " size_of_arrow_y = long_size * size_of_arrow\n", | |
| " arrow_tip_x = size_of_arrow_x * math.cos(bearing_rad) + center_lat\n", | |
| " arrow_tip_y = size_of_arrow_y * math.sin(bearing_rad) + center_long\n", | |
| " \n", | |
| " arrow_back_left_x = size_of_arrow_x * math.cos(bearing_rad + 2*math.pi * 135.0 / 360.0 ) + center_lat\n", | |
| " arrow_back_left_y = size_of_arrow_y * math.sin(bearing_rad + 2*math.pi * 135.0 / 360.0 ) + center_long\n", | |
| " \n", | |
| " arrow_back_x = size_of_arrow_x * 0.2 * math.cos(bearing_rad + 2*math.pi * 180.0 / 360.0 ) + center_lat\n", | |
| " arrow_back_y = size_of_arrow_y * 0.2 * math.sin(bearing_rad + 2*math.pi * 180.0 / 360.0 ) + center_long\n", | |
| " \n", | |
| " arrow_back_right_x = size_of_arrow_x * math.cos(bearing_rad + 2*math.pi * 225.0 / 360.0 ) + center_lat\n", | |
| " arrow_back_right_y = size_of_arrow_y * math.sin(bearing_rad + 2*math.pi * 225.0 / 360.0 ) + center_long\n", | |
| "\n", | |
| " coordinates = ( (arrow_tip_x, arrow_tip_y), (arrow_back_left_x, arrow_back_left_y), (arrow_back_x, arrow_back_y), (arrow_back_right_x, arrow_back_right_y), (arrow_tip_x, arrow_tip_y) )\n", | |
| "\n", | |
| " geometry_for_row = { \"type\" : \"Polygon\", \"coordinates\": [ coordinates ] }\n", | |
| "\n", | |
| " feature = Feature(geometry = geometry_for_row , id=row[\"hex_id\"], properties = {column_name_magnitude : row[column_name_magnitude]})\n", | |
| " list_features.append(feature)\n", | |
| "# except:\n", | |
| "# print(\"An exception occurred for hex \" + row[\"hex_id\"]) \n", | |
| "\n", | |
| " feat_collection = FeatureCollection(list_features)\n", | |
| " geojson_result = json.dumps(feat_collection)\n", | |
| " return geojson_result\n", | |
| "\n", | |
| "def get_color_vector(custom_cm, val, vmin, vmax):\n", | |
| " return matplotlib.colors.to_hex(custom_cm((val-vmin)/(vmax-vmin)))\n", | |
| "\n", | |
| "def choropleth_map_vector(df_aggreg, column_name_bearing = \"value\", column_name_magnitude = \"value2\", border_color = 'black', fill_opacity = 0.7, color_map_name = \"coolwarm\", same_size_arrows = False, initial_map = None):\n", | |
| " \"\"\"\n", | |
| " Creates choropleth maps given the aggregated data. initial_map can be an existing map to draw on top of.\n", | |
| " \"\"\" \n", | |
| " #colormap\n", | |
| " min_value = df_aggreg[column_name_magnitude].min()\n", | |
| " max_value = df_aggreg[column_name_magnitude].max()\n", | |
| " mean_value = df_aggreg[column_name_magnitude].mean()\n", | |
| " print(f\"Colour column min value {min_value}, max value {max_value}, mean value {mean_value}\")\n", | |
| " print(f\"Hexagon cell count: {df_aggreg['hex_id'].nunique()}\")\n", | |
| " \n", | |
| " # the name of the layer just needs to be unique, put something silly there for now:\n", | |
| " name_layer = \"Choropleth \" + str(df_aggreg)\n", | |
| " \n", | |
| " if initial_map is None:\n", | |
| " initial_map = folium.Map(location= [df_aggreg['latitude'].mean(), df_aggreg['longitude'].mean()], zoom_start=12, tiles=\"cartodbpositron\")\n", | |
| "\n", | |
| " #create geojson data from dataframe\n", | |
| " geojson_data = hexagons_dataframe_to_geojson_vector(df_hex = df_aggreg, column_name_bearing = column_name_bearing, column_name_magnitude = column_name_magnitude, magn_min = min_value, magn_max = max_value, same_size_arrows = same_size_arrows)\n", | |
| "\n", | |
| " # color_map_name 'Blues' for now, many more at https://matplotlib.org/stable/tutorials/colors/colormaps.html to choose from!\n", | |
| " custom_cm = matplotlib.colormaps[color_map_name] # matplotlib.cm.get_cmap(color_map_name)\n", | |
| "\n", | |
| " folium.GeoJson(\n", | |
| " geojson_data,\n", | |
| " style_function=lambda feature: {\n", | |
| " 'fillColor': get_color_vector(custom_cm, feature['properties'][column_name_magnitude], vmin=min_value, vmax=max_value),\n", | |
| " 'color': border_color,\n", | |
| " 'weight': 1,\n", | |
| " 'fillOpacity': fill_opacity \n", | |
| " }, \n", | |
| " name = name_layer\n", | |
| " ).add_to(initial_map)\n", | |
| "\n", | |
| " return initial_map" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 30, | |
| "id": "8a28634f-af17-4043-bd04-b31bd463a2ed", | |
| "metadata": { | |
| "scrolled": true | |
| }, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Colour column min value 0.044923629829290206, max value 99.46091644204851, mean value 52.00171410729419\n", | |
| "Hexagon cell count: 1410\n" | |
| ] | |
| }, | |
| { | |
| "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-3.7.1.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-glyphicons.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_6fd17d9296b8fc2b80639fab159558d2 {\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_6fd17d9296b8fc2b80639fab159558d2" ></div>\n", | |
| " \n", | |
| "</body>\n", | |
| "<script>\n", | |
| " \n", | |
| " \n", | |
| " var map_6fd17d9296b8fc2b80639fab159558d2 = L.map(\n", | |
| " "map_6fd17d9296b8fc2b80639fab159558d2",\n", | |
| " {\n", | |
| " center: [40.74212561592109, -73.95301911725144],\n", | |
| " crs: L.CRS.EPSG3857,\n", | |
| " zoom: 12,\n", | |
| " zoomControl: true,\n", | |
| " preferCanvas: false,\n", | |
| " }\n", | |
| " );\n", | |
| "\n", | |
| " \n", | |
| "\n", | |
| " \n", | |
| " \n", | |
| " var tile_layer_a7dee579d1613936c921fc6674c074d6 = L.tileLayer(\n", | |
| " "https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",\n", | |
| " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\"https://carto.com/attributions\\"\\u003eCARTO\\u003c/a\\u003e", "detectRetina": false, "maxNativeZoom": 20, "maxZoom": 20, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}\n", | |
| " );\n", | |
| " \n", | |
| " \n", | |
| " tile_layer_a7dee579d1613936c921fc6674c074d6.addTo(map_6fd17d9296b8fc2b80639fab159558d2);\n", | |
| " \n", | |
| " \n", | |
| " function geo_json_d4752c310b42146f48613a2543e51fcf_styler(feature) {\n", | |
| " switch(feature.id) {\n", | |
| " case "892a1001203ffff": case "892a1008d2bffff": case "892a100ab83ffff": case "892a100d28bffff": case "892a100f2a7ffff": case "892a107746bffff": \n", | |
| " return {"color": "black", "fillColor": "#c9d7f0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100120fffff": case "892a100d24bffff": case "892a100d2dbffff": case "892a100d38bffff": case "892a100d483ffff": case "892a100d6d3ffff": case "892a100d6d7ffff": case "892a100da77ffff": case "892a107291bffff": \n", | |
| " return {"color": "black", "fillColor": "#c4d5f3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100121bffff": case "892a100d667ffff": case "892a100d677ffff": case "892a1072907ffff": case "892a1072dc3ffff": case "892a1077693ffff": \n", | |
| " return {"color": "black", "fillColor": "#7a9df8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1001267ffff": case "892a1008c07ffff": case "892a100ab93ffff": case "892a100d1c3ffff": case "892a100de17ffff": \n", | |
| " return {"color": "black", "fillColor": "#cd423b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100126fffff": case "892a1008877ffff": case "892a1072967ffff": case "892a1077547ffff": \n", | |
| " return {"color": "black", "fillColor": "#6180e9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100127bffff": case "892a100d01bffff": case "892a100d3d7ffff": case "892a100d45bffff": case "892a100d6bbffff": case "892a100dcb7ffff": case "892a10729dbffff": case "892a1072d6bffff": \n", | |
| " return {"color": "black", "fillColor": "#cbd8ee", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10012c7ffff": case "892a100d66bffff": case "892a100d6c7ffff": case "892a100db0bffff": case "892a107290fffff": case "892a1072937ffff": \n", | |
| " return {"color": "black", "fillColor": "#8caffe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008803ffff": \n", | |
| " return {"color": "black", "fillColor": "#be242e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008807ffff": case "892a1008babffff": case "892a100ab07ffff": case "892a100ab7bffff": case "892a100d4b7ffff": case "892a100d94fffff": case "892a100d953ffff": case "892a1077483ffff": \n", | |
| " return {"color": "black", "fillColor": "#f5c1a9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100880fffff": case "892a1072127ffff": \n", | |
| " return {"color": "black", "fillColor": "#b40426", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008813ffff": case "892a100ab37ffff": case "892a100ac83ffff": case "892a100d82bffff": case "892a100da17ffff": case "892a100da8bffff": case "892a100ddc7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6bea4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008817ffff": case "892a100aa3bffff": case "892a100ac33ffff": case "892a100d417ffff": case "892a100d423ffff": case "892a100d473ffff": case "892a1072c43ffff": \n", | |
| " return {"color": "black", "fillColor": "#e26952", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008823ffff": case "892a10089cbffff": case "892a100a86bffff": case "892a100c60bffff": case "892a100d2a3ffff": case "892a100d89bffff": \n", | |
| " return {"color": "black", "fillColor": "#efcebd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008827ffff": case "892a1008d37ffff": case "892a100a8a7ffff": case "892a100abafffff": case "892a100d30fffff": case "892a100dca7ffff": case "892a100dd57ffff": case "892a100ddc3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f1ccb8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100882bffff": case "892a1008957ffff": case "892a100897bffff": case "892a100d17bffff": case "892a100d307ffff": case "892a100dc47ffff": case "892a1072d87ffff": \n", | |
| " return {"color": "black", "fillColor": "#f2c9b4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100882fffff": case "892a1008b27ffff": case "892a1008c27ffff": case "892a100a863ffff": case "892a100c617ffff": case "892a100d827ffff": case "892a100d9c3ffff": case "892a100f22fffff": case "892a1072dbbffff": \n", | |
| " return {"color": "black", "fillColor": "#e7d7ce", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008833ffff": case "892a100d33bffff": case "892a100d843ffff": case "892a100dc7bffff": case "892a100de6bffff": \n", | |
| " return {"color": "black", "fillColor": "#f59d7e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008837ffff": case "892a100a893ffff": case "892a100abbbffff": case "892a10721afffff": \n", | |
| " return {"color": "black", "fillColor": "#dc5d4a", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100883bffff": case "892a1008cafffff": case "892a100d443ffff": case "892a100daa3ffff": case "892a10721b7ffff": case "892a1072cc3ffff": case "892a107740fffff": \n", | |
| " return {"color": "black", "fillColor": "#e0dbd8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008867ffff": case "892a100a973ffff": case "892a100a9cbffff": case "892a100d383ffff": case "892a100d5cfffff": case "892a100de23ffff": case "892a1072ccbffff": \n", | |
| " return {"color": "black", "fillColor": "#e7745b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008883ffff": case "892a100c603ffff": case "892a100d377ffff": case "892a100d543ffff": case "892a100dd53ffff": case "892a100ddcbffff": case "892a100deabffff": case "892a100f16bffff": case "892a1072d47ffff": \n", | |
| " return {"color": "black", "fillColor": "#f08a6c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008887ffff": case "892a1008d4fffff": case "892a100a8d3ffff": case "892a100abc3ffff": case "892a100ac37ffff": case "892a100d487ffff": case "892a100d593ffff": case "892a100dc0bffff": case "892a100dc87ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7ad90", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100888bffff": case "892a100dcdbffff": case "892a1072137ffff": \n", | |
| " return {"color": "black", "fillColor": "#b8122a", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100888fffff": case "892a1008943ffff": case "892a100ac13ffff": case "892a100c647ffff": case "892a1072d7bffff": \n", | |
| " return {"color": "black", "fillColor": "#ec8165", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008893ffff": case "892a100a903ffff": case "892a100d463ffff": case "892a100de0bffff": case "892a100f32fffff": \n", | |
| " return {"color": "black", "fillColor": "#cf453c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008897ffff": case "892a100d40bffff": case "892a100d893ffff": case "892a100dc77ffff": case "892a100f30bffff": case "892a1072db7ffff": case "892a10774a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7bca1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100889bffff": case "892a100a827ffff": case "892a100dcd3ffff": \n", | |
| " return {"color": "black", "fillColor": "#bd1f2d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088a3ffff": case "892a10088bbffff": case "892a100ab9bffff": case "892a100c677ffff": case "892a100da33ffff": case "892a100dabbffff": case "892a1072d43ffff": \n", | |
| " return {"color": "black", "fillColor": "#edd1c2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088a7ffff": case "892a1008db3ffff": case "892a100ab1bffff": case "892a100d1dbffff": case "892a100d883ffff": case "892a100d88bffff": case "892a100f24bffff": \n", | |
| " return {"color": "black", "fillColor": "#e36c55", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088abffff": case "892a1008977ffff": case "892a100d14fffff": case "892a100f16fffff": case "892a100f223ffff": case "892a100f3abffff": case "892a107701bffff": \n", | |
| " return {"color": "black", "fillColor": "#ead5c9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088afffff": case "892a100da13ffff": case "892a100db03ffff": case "892a100f13bffff": case "892a100f333ffff": case "892a107258fffff": case "892a107290bffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b99e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088b3ffff": case "892a100d143ffff": case "892a100d54bffff": case "892a100d8a7ffff": case "892a100da6bffff": case "892a100dbafffff": case "892a100dc17ffff": case "892a100f167ffff": case "892a10775cfffff": \n", | |
| " return {"color": "black", "fillColor": "#bcd2f7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088b7ffff": case "892a1008bafffff": case "892a100d4a3ffff": case "892a100d59bffff": case "892a100de6fffff": case "892a10770d3ffff": case "892a107755bffff": \n", | |
| " return {"color": "black", "fillColor": "#f5a081", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008903ffff": case "892a100a823ffff": case "892a100a963ffff": case "892a100ac03ffff": case "892a100c44fffff": case "892a100c4cbffff": case "892a100d80fffff": case "892a100dc33ffff": \n", | |
| " return {"color": "black", "fillColor": "#f0cdbb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008907ffff": case "892a100ab73ffff": case "892a1072983ffff": case "892a107750fffff": \n", | |
| " return {"color": "black", "fillColor": "#6f92f3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100890bffff": case "892a1008cb7ffff": case "892a1008d07ffff": case "892a100a943ffff": case "892a100d05bffff": case "892a100d317ffff": case "892a107709bffff": \n", | |
| " return {"color": "black", "fillColor": "#f5c0a7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100890fffff": case "892a100893bffff": case "892a1008b3bffff": case "892a100d20fffff": case "892a100d217ffff": case "892a100dc3bffff": case "892a1077433ffff": \n", | |
| " return {"color": "black", "fillColor": "#c5d6f2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008913ffff": case "892a1008dabffff": case "892a100d12bffff": case "892a100d243ffff": case "892a100d693ffff": case "892a100dad7ffff": case "892a100db93ffff": case "892a10774abffff": \n", | |
| " return {"color": "black", "fillColor": "#cad8ef", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008917ffff": case "892a100898fffff": case "892a100d3dbffff": case "892a100dcafffff": case "892a1072597ffff": case "892a10774d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#c0d4f5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100891bffff": case "892a1008b13ffff": case "892a100d0c3ffff": case "892a100dd03ffff": case "892a100f357ffff": case "892a100f39bffff": \n", | |
| " return {"color": "black", "fillColor": "#d4dbe6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008923ffff": case "892a100ac17ffff": case "892a100c68fffff": case "892a100d087ffff": case "892a100d947ffff": case "892a100da2fffff": case "892a1072187ffff": case "892a1072c6fffff": \n", | |
| " return {"color": "black", "fillColor": "#8badfd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008927ffff": case "892a100d203ffff": case "892a100d633ffff": case "892a100da2bffff": case "892a100dec3ffff": \n", | |
| " return {"color": "black", "fillColor": "#a9c6fd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100892bffff": case "892a100d277ffff": case "892a100d27bffff": case "892a100d86fffff": case "892a100de97ffff": case "892a1072527ffff": \n", | |
| " return {"color": "black", "fillColor": "#c3d5f4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100892fffff": case "892a100d15bffff": case "892a100d23bffff": case "892a100d68fffff": case "892a100dac3ffff": case "892a1072c9bffff": \n", | |
| " return {"color": "black", "fillColor": "#b6cefa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008933ffff": case "892a100a8a3ffff": case "892a100d863ffff": case "892a100f163ffff": case "892a100f37bffff": case "892a1072cd7ffff": case "892a107740bffff": case "892a107741bffff": \n", | |
| " return {"color": "black", "fillColor": "#bed2f6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008937ffff": case "892a1008ba3ffff": case "892a100ab4fffff": case "892a100d00bffff": case "892a100d21bffff": case "892a100d297ffff": case "892a100d2abffff": \n", | |
| " return {"color": "black", "fillColor": "#d1dae9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008947ffff": case "892a100896bffff": case "892a100a817ffff": case "892a100db53ffff": case "892a100dd13ffff": case "892a10729d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f4c5ad", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100894bffff": case "892a1008c2bffff": case "892a1008c97ffff": case "892a100ac27ffff": case "892a100ae07ffff": case "892a100d387ffff": \n", | |
| " return {"color": "black", "fillColor": "#d85646", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100894fffff": case "892a100aa8fffff": case "892a100abdbffff": case "892a100ac2bffff": case "892a100d0a3ffff": case "892a100d467ffff": case "892a100de37ffff": case "892a1072d13ffff": \n", | |
| " return {"color": "black", "fillColor": "#e36b54", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008953ffff": case "892a100a88bffff": case "892a100aa93ffff": case "892a100ae67ffff": case "892a100d8cfffff": case "892a100dc1bffff": case "892a100ddcfffff": \n", | |
| " return {"color": "black", "fillColor": "#e67259", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100895bffff": case "892a10089dbffff": case "892a100c61bffff": case "892a100d2b7ffff": case "892a100db4bffff": case "892a1072c57ffff": case "892a1072d97ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7ac8e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008963ffff": case "892a100d207ffff": case "892a100d373ffff": case "892a100d50bffff": case "892a100d5b3ffff": case "892a100f063ffff": case "892a100f393ffff": case "892a10728a7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b9d0f9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008967ffff": case "892a100a8abffff": case "892a100c377ffff": case "892a100d627ffff": case "892a100de87ffff": case "892a100de8fffff": case "892a1077553ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b396", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100896fffff": case "892a1008973ffff": case "892a100d62fffff": case "892a100da3bffff": case "892a100dc5bffff": case "892a100f34bffff": case "892a10774c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#e5d8d1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008983ffff": case "892a100d03bffff": case "892a100d26fffff": case "892a100d503ffff": case "892a100d613ffff": case "892a100de93ffff": case "892a10772a7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b2ccfb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008987ffff": case "892a100d22fffff": case "892a100f227ffff": case "892a100f35bffff": case "892a1072c87ffff": case "892a107706bffff": case "892a107748bffff": \n", | |
| " return {"color": "black", "fillColor": "#9fbfff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100898bffff": case "892a100d167ffff": case "892a100db23ffff": case "892a100db6bffff": case "892a100dc03ffff": case "892a100dca3ffff": case "892a100deb7ffff": case "892a1077443ffff": \n", | |
| " return {"color": "black", "fillColor": "#e8d6cc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008993ffff": case "892a100a807ffff": case "892a100d1cfffff": case "892a100dd0bffff": case "892a100dd5bffff": case "892a100f04fffff": case "892a1072ccfffff": case "892a1077057ffff": \n", | |
| " return {"color": "black", "fillColor": "#edd2c3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008997ffff": case "892a100d313ffff": case "892a100d3b7ffff": case "892a100dc2bffff": case "892a100dd93ffff": case "892a1072917ffff": case "892a1077473ffff": case "892a10774cbffff": case "892a107753bffff": \n", | |
| " return {"color": "black", "fillColor": "#c6d6f1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100899bffff": case "892a100c613ffff": case "892a100d2bbffff": case "892a100d5bbffff": case "892a100f32bffff": case "892a107748fffff": \n", | |
| " return {"color": "black", "fillColor": "#d6dce4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089a3ffff": case "892a100c6b7ffff": case "892a100d97bffff": case "892a107298bffff": case "892a1072d0fffff": \n", | |
| " return {"color": "black", "fillColor": "#779af7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089a7ffff": case "892a1008d8bffff": case "892a100d353ffff": case "892a100f127ffff": case "892a100f3cfffff": case "892a10729b3ffff": case "892a1072d67ffff": \n", | |
| " return {"color": "black", "fillColor": "#7699f6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089abffff": case "892a100ab43ffff": case "892a100d26bffff": case "892a100dacfffff": case "892a100dad3ffff": case "892a100dd4fffff": case "892a1072d33ffff": case "892a10774b3ffff": case "892a10775d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#cedaeb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089afffff": case "892a100ab67ffff": case "892a100d46bffff": case "892a100f077ffff": case "892a1072903ffff": case "892a1072c2fffff": case "892a1072cabffff": \n", | |
| " return {"color": "black", "fillColor": "#799cf8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089b3ffff": case "892a100ac07ffff": case "892a100d0bbffff": case "892a100d0cfffff": case "892a100d283ffff": case "892a100d68bffff": case "892a100dbd3ffff": \n", | |
| " return {"color": "black", "fillColor": "#dedcdb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089b7ffff": case "892a10728bbffff": case "892a1076643ffff": \n", | |
| " return {"color": "black", "fillColor": "#485fd1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089bbffff": case "892a100d3cbffff": case "892a100da63ffff": case "892a100f06fffff": case "892a100f07bffff": case "892a10725bbffff": \n", | |
| " return {"color": "black", "fillColor": "#98b9ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089c3ffff": case "892a1008d67ffff": case "892a100ab6bffff": case "892a100c643ffff": case "892a100d24fffff": case "892a100d8a3ffff": case "892a100da57ffff": \n", | |
| " return {"color": "black", "fillColor": "#dcdddd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089c7ffff": case "892a1008c83ffff": case "892a1008d47ffff": case "892a100a8c7ffff": case "892a100d067ffff": case "892a100dcbbffff": case "892a100f64bffff": case "892a10775cbffff": \n", | |
| " return {"color": "black", "fillColor": "#f7a688", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089cfffff": case "892a100a94bffff": case "892a100d093ffff": case "892a100da23ffff": case "892a100da9bffff": case "892a1072d0bffff": case "892a1072d9bffff": \n", | |
| " return {"color": "black", "fillColor": "#f2cab5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089d3ffff": case "892a100d337ffff": case "892a100d5c3ffff": case "892a100de4fffff": case "892a1072dabffff": case "892a107743bffff": case "892a10774a7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b194", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089d7ffff": case "892a100ab0fffff": case "892a100ababffff": case "892a100d053ffff": case "892a100d38fffff": case "892a100dddbffff": case "892a100de57ffff": \n", | |
| " return {"color": "black", "fillColor": "#ef886b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b03ffff": \n", | |
| " return {"color": "black", "fillColor": "#445acc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b07ffff": case "892a100d023ffff": case "892a100d6c3ffff": case "892a100db37ffff": case "892a100db87ffff": case "892a1077413ffff": \n", | |
| " return {"color": "black", "fillColor": "#d5dbe5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b0fffff": case "892a100f2b3ffff": case "892a10775bbffff": \n", | |
| " return {"color": "black", "fillColor": "#5572df", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b17ffff": case "892a100a873ffff": case "892a100aabbffff": case "892a100d51bffff": case "892a100d85bffff": case "892a100de4bffff": case "892a1072d8fffff": case "892a107744bffff": \n", | |
| " return {"color": "black", "fillColor": "#f59c7d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b23ffff": case "892a100d397ffff": case "892a100dbc3ffff": case "892a100dbc7ffff": case "892a100f38bffff": case "892a1072593ffff": \n", | |
| " return {"color": "black", "fillColor": "#f2cbb7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b2bffff": case "892a100d063ffff": case "892a100d58fffff": case "892a100d62bffff": case "892a100dacbffff": case "892a100dba3ffff": case "892a1072537ffff": \n", | |
| " return {"color": "black", "fillColor": "#9ebeff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b2fffff": case "892a1008b97ffff": case "892a100a81bffff": case "892a100ae13ffff": case "892a10729abffff": case "892a1072cd3ffff": \n", | |
| " return {"color": "black", "fillColor": "#d3dbe7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b33ffff": case "892a1008b8bffff": case "892a1008c17ffff": case "892a100d14bffff": case "892a100daafffff": case "892a100dab3ffff": case "892a100dd0fffff": \n", | |
| " return {"color": "black", "fillColor": "#f5c2aa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b37ffff": case "892a1008ba7ffff": case "892a100aa13ffff": case "892a100aa77ffff": case "892a100c36fffff": case "892a100d5cbffff": case "892a10721a3ffff": case "892a1077487ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7ba9f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b83ffff": case "892a1008c8bffff": case "892a100ac63ffff": case "892a100dadbffff": case "892a100dc0fffff": \n", | |
| " return {"color": "black", "fillColor": "#f5c4ac", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b87ffff": case "892a100a867ffff": case "892a100c347ffff": case "892a100d583ffff": case "892a100d587ffff": case "892a100de83ffff": \n", | |
| " return {"color": "black", "fillColor": "#f3c8b2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b8fffff": case "892a100aab7ffff": case "892a100ae2bffff": case "892a100d513ffff": case "892a100de73ffff": \n", | |
| " return {"color": "black", "fillColor": "#df634e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b93ffff": case "892a1008d33ffff": case "892a100c32bffff": case "892a100d8bbffff": case "892a100dd4bffff": case "892a100f383ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b497", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b9bffff": case "892a100abcbffff": case "892a100c687ffff": case "892a100db27ffff": case "892a100f243ffff": case "892a10728c7ffff": \n", | |
| " return {"color": "black", "fillColor": "#5f7fe8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008bb3ffff": case "892a1008c33ffff": case "892a100dc2fffff": case "892a100de53ffff": case "892a1072cdbffff": case "892a1072d07ffff": case "892a1077427ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b599", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008bb7ffff": case "892a100d1d7ffff": case "892a100d5c7ffff": case "892a100f02bffff": case "892a100f25bffff": case "892a100f3b3ffff": case "892a10775dbffff": \n", | |
| " return {"color": "black", "fillColor": "#dd5f4b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008bbbffff": case "892a1008ddbffff": case "892a100c653ffff": case "892a100d127ffff": case "892a100d25bffff": case "892a100d287ffff": case "892a100d3c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#e1dad6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c03ffff": case "892a1008d7bffff": case "892a100aba3ffff": case "892a100d8d7ffff": case "892a100db4fffff": case "892a107747bffff": \n", | |
| " return {"color": "black", "fillColor": "#ee8669", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c0fffff": case "892a100ad6fffff": case "892a100dcd7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b70d28", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c13ffff": case "892a100d0afffff": case "892a100d557ffff": case "892a100d8dbffff": case "892a100dc43ffff": case "892a100f307ffff": \n", | |
| " return {"color": "black", "fillColor": "#eb7d62", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c23ffff": case "892a100a97bffff": case "892a100d2b3ffff": case "892a100d42fffff": case "892a100daa7ffff": case "892a100db97ffff": case "892a100dd8bffff": case "892a100f2b7ffff": \n", | |
| " return {"color": "black", "fillColor": "#dddcdc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c2fffff": case "892a100a87bffff": case "892a100a8b7ffff": case "892a100c64bffff": case "892a100c6d3ffff": case "892a100d803ffff": case "892a100dc57ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7aa8c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c37ffff": case "892a100d097ffff": case "892a100f233ffff": case "892a100f237ffff": case "892a10729a7ffff": case "892a1072c63ffff": case "892a107759bffff": \n", | |
| " return {"color": "black", "fillColor": "#a3c2fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c3bffff": case "892a100ae03ffff": \n", | |
| " return {"color": "black", "fillColor": "#c83836", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c67ffff": case "892a1008c77ffff": case "892a100d53bffff": \n", | |
| " return {"color": "black", "fillColor": "#c73635", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c87ffff": case "892a100d28fffff": case "892a100ded7ffff": case "892a107749bffff": case "892a10775d7ffff": \n", | |
| " return {"color": "black", "fillColor": "#dbdcde", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c8fffff": case "892a100aa2bffff": case "892a100aa2fffff": case "892a100de2fffff": case "892a1072d93ffff": \n", | |
| " return {"color": "black", "fillColor": "#d0473d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c93ffff": case "892a100aa07ffff": case "892a100d043ffff": case "892a100d407ffff": case "892a100d56bffff": case "892a100de43ffff": case "892a100de47ffff": case "892a100dea7ffff": \n", | |
| " return {"color": "black", "fillColor": "#e9785d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c9bffff": case "892a100a9c7ffff": case "892a100a9cfffff": case "892a100c64fffff": case "892a100d3bbffff": case "892a100d40fffff": \n", | |
| " return {"color": "black", "fillColor": "#e0654f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008ca3ffff": case "892a100a813ffff": case "892a100aaa7ffff": case "892a100abc7ffff": case "892a100d857ffff": case "892a107744fffff": \n", | |
| " return {"color": "black", "fillColor": "#ea7b60", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008ca7ffff": case "892a100a947ffff": case "892a100aa23ffff": case "892a100c657ffff": case "892a100d6a7ffff": case "892a100d817ffff": case "892a100dc27ffff": case "892a100f373ffff": \n", | |
| " return {"color": "black", "fillColor": "#e9d5cb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008cabffff": case "892a100c4bbffff": case "892a100d813ffff": case "892a100d82fffff": case "892a100da93ffff": case "892a10775c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6a283", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008cb3ffff": case "892a1008d5bffff": case "892a1008dc3ffff": case "892a100a8c3ffff": case "892a100ab2bffff": case "892a100d2a7ffff": case "892a100dc37ffff": case "892a1072db3ffff": case "892a1077463ffff": \n", | |
| " return {"color": "black", "fillColor": "#f4c6af", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008cbbffff": case "892a100d037ffff": case "892a100d1cbffff": case "892a100d367ffff": case "892a100d8d3ffff": case "892a100de03ffff": \n", | |
| " return {"color": "black", "fillColor": "#d65244", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d03ffff": case "892a1008d73ffff": case "892a100ac87ffff": case "892a100d2afffff": case "892a100dc4fffff": case "892a100de13ffff": case "892a100f6cbffff": case "892a1072d4bffff": case "892a1072da3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6bfa6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d0bffff": case "892a100abd7ffff": case "892a100d09bffff": case "892a100d253ffff": case "892a100d263ffff": case "892a10770cfffff": \n", | |
| " return {"color": "black", "fillColor": "#cdd9ec", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d0fffff": case "892a100a83bffff": case "892a100c363ffff": case "892a100da87ffff": case "892a100dd1bffff": case "892a100dd6bffff": case "892a10774bbffff": \n", | |
| " return {"color": "black", "fillColor": "#e8765c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d13ffff": case "892a100f2afffff": case "892a100f34fffff": case "892a10766d3ffff": case "892a107742bffff": case "892a1077493ffff": \n", | |
| " return {"color": "black", "fillColor": "#adc9fd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d17ffff": case "892a100c69bffff": case "892a100d65bffff": case "892a100db07ffff": case "892a100db2bffff": case "892a100db57ffff": case "892a10728b3ffff": \n", | |
| " return {"color": "black", "fillColor": "#d7dce3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d1bffff": case "892a100ab0bffff": case "892a100c373ffff": case "892a100d6afffff": case "892a100dbcbffff": case "892a100dc67ffff": case "892a1072d4fffff": case "892a1072d57ffff": \n", | |
| " return {"color": "black", "fillColor": "#f3c7b1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d23ffff": case "892a100aa67ffff": case "892a100ac77ffff": case "892a100d887ffff": case "892a100d8cbffff": case "892a100f2cbffff": case "892a1072dc7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f08b6e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d27ffff": case "892a100a8d7ffff": case "892a100d0abffff": case "892a100dc73ffff": case "892a107746fffff": \n", | |
| " return {"color": "black", "fillColor": "#f29274", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d2fffff": case "892a100a96bffff": case "892a100ab97ffff": case "892a100d327ffff": case "892a100d3a3ffff": case "892a100d46fffff": case "892a100d4bbffff": case "892a100d807ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7a98b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d3bffff": case "892a100ab5bffff": case "892a100abcfffff": case "892a100d833ffff": case "892a100f327ffff": case "892a100f36fffff": \n", | |
| " return {"color": "black", "fillColor": "#f39475", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d43ffff": case "892a100ac6fffff": case "892a1072ca7ffff": case "892a1072cafffff": case "892a1077507ffff": case "892a10775b3ffff": \n", | |
| " return {"color": "black", "fillColor": "#6485ec", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d4bffff": case "892a100ad4bffff": case "892a100c26bffff": case "892a100d8abffff": case "892a100f3a7ffff": case "892a1072dafffff": \n", | |
| " return {"color": "black", "fillColor": "#de614d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d53ffff": case "892a1008dd7ffff": case "892a100d13bffff": case "892a100f3dbffff": case "892a1072507ffff": case "892a10725b3ffff": case "892a1072c27ffff": \n", | |
| " return {"color": "black", "fillColor": "#a5c3fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d57ffff": case "892a1008d63ffff": case "892a1008dd3ffff": case "892a100d163ffff": case "892a100d457ffff": case "892a1072d5bffff": case "892a1077457ffff": \n", | |
| " return {"color": "black", "fillColor": "#e4d9d2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d6bffff": case "892a100ab47ffff": case "892a100c343ffff": case "892a100c6c7ffff": case "892a100d2c7ffff": case "892a100d597ffff": case "892a100db13ffff": case "892a1077477ffff": \n", | |
| " return {"color": "black", "fillColor": "#dfdbd9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d6fffff": case "892a100a837ffff": case "892a100d3abffff": case "892a100d3b3ffff": case "892a100d4abffff": case "892a100da83ffff": case "892a100dc6bffff": \n", | |
| " return {"color": "black", "fillColor": "#ee8468", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d77ffff": case "892a1008dcbffff": case "892a100d413ffff": case "892a100d4cbffff": case "892a100d69bffff": case "892a100da27ffff": case "892a10774afffff": \n", | |
| " return {"color": "black", "fillColor": "#f1cdba", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d83ffff": case "892a100d233ffff": case "892a100db1bffff": case "892a1072933ffff": case "892a1072c23ffff": case "892a1072c3bffff": case "892a1072cc7ffff": case "892a10774c7ffff": \n", | |
| " return {"color": "black", "fillColor": "#a2c1ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d87ffff": case "892a100d103ffff": case "892a100d663ffff": case "892a100da43ffff": case "892a100da4fffff": case "892a100f12bffff": \n", | |
| " return {"color": "black", "fillColor": "#89acfd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d8fffff": case "892a100c6b3ffff": case "892a100d347ffff": case "892a100d943ffff": case "892a100f137ffff": case "892a10775a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#6e90f2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d93ffff": case "892a100d227ffff": case "892a100d257ffff": case "892a100d617ffff": case "892a100d623ffff": case "892a100d6abffff": case "892a100db2fffff": case "892a100f347ffff": case "892a1072c0bffff": \n", | |
| " return {"color": "black", "fillColor": "#a7c5fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d97ffff": case "892a100a91bffff": case "892a100dccbffff": case "892a100de2bffff": case "892a100de77ffff": \n", | |
| " return {"color": "black", "fillColor": "#d1493f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d9bffff": case "892a100d37bffff": case "892a100d60bffff": case "892a100d643ffff": case "892a100ddd3ffff": case "892a10773d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#84a7fc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008da3ffff": case "892a1008dbbffff": case "892a100a887ffff": case "892a100d2d3ffff": case "892a100d4c7ffff": case "892a1072c37ffff": case "892a1072d23ffff": case "892a1077497ffff": \n", | |
| " return {"color": "black", "fillColor": "#93b5fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008dafffff": case "892a1008dc7ffff": case "892a100d34bffff": case "892a100db33ffff": case "892a10725a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#a1c0ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008dcfffff": case "892a100aa8bffff": case "892a100d147ffff": case "892a100d247ffff": case "892a100d3d3ffff": case "892a100da6fffff": case "892a10725b7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b5cdfa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a107ffff": case "892a100d34fffff": case "892a100d64fffff": case "892a100d657ffff": case "892a100f2a3ffff": case "892a100f317ffff": case "892a100f6d3ffff": case "892a1072c33ffff": case "892a1072cb3ffff": \n", | |
| " return {"color": "black", "fillColor": "#81a4fb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a167ffff": case "892a1072193ffff": case "892a107293bffff": \n", | |
| " return {"color": "black", "fillColor": "#5875e1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a803ffff": case "892a100aa37ffff": case "892a100abb7ffff": case "892a100d0b3ffff": case "892a100deb3ffff": case "892a10728a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f59f80", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a80bffff": case "892a100d403ffff": case "892a100d9d3ffff": case "892a100dc63ffff": \n", | |
| " return {"color": "black", "fillColor": "#f39577", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a80fffff": case "892a100a98bffff": case "892a100ab23ffff": case "892a100d123ffff": case "892a100da0bffff": case "892a100f3d7ffff": case "892a10766dbffff": case "892a1077407ffff": \n", | |
| " return {"color": "black", "fillColor": "#d2dbe8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a82bffff": case "892a100d42bffff": case "892a100d88fffff": case "892a100f323ffff": case "892a1072d1bffff": \n", | |
| " return {"color": "black", "fillColor": "#ec7f63", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a82fffff": case "892a100a8cfffff": case "892a100d363ffff": case "892a100d447ffff": case "892a100d6dbffff": case "892a100da07ffff": case "892a1072c47ffff": \n", | |
| " return {"color": "black", "fillColor": "#e2dad5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a833ffff": case "892a100ac2fffff": case "892a100d8c3ffff": case "892a100de0fffff": case "892a100f067ffff": \n", | |
| " return {"color": "black", "fillColor": "#e46e56", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a847ffff": case "892a100d113ffff": case "892a100dcc3ffff": \n", | |
| " return {"color": "black", "fillColor": "#c0282f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a857ffff": case "892a100a94fffff": case "892a100ac23ffff": case "892a100de7bffff": case "892a100f337ffff": case "892a1072d83ffff": \n", | |
| " return {"color": "black", "fillColor": "#f18d6f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a86fffff": case "892a100ab63ffff": case "892a100acd7ffff": case "892a100d343ffff": case "892a100d533ffff": case "892a1072533ffff": case "892a10725abffff": \n", | |
| " return {"color": "black", "fillColor": "#80a3fa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a877ffff": case "892a100aa9bffff": case "892a100ac73ffff": case "892a100ae77ffff": case "892a100da1bffff": case "892a100dab7ffff": case "892a100dc23ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6bda2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a88fffff": case "892a100ab8bffff": case "892a100d04bffff": case "892a100d16bffff": case "892a100d16fffff": case "892a100d493ffff": case "892a100d4dbffff": case "892a1072c7bffff": \n", | |
| " return {"color": "black", "fillColor": "#dadce0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a897ffff": case "892a100ac67ffff": case "892a100d137ffff": case "892a100d32fffff": case "892a100dccfffff": \n", | |
| " return {"color": "black", "fillColor": "#d24b40", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a89bffff": case "892a100aa33ffff": case "892a1072577ffff": case "892a1072d8bffff": \n", | |
| " return {"color": "black", "fillColor": "#d55042", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a8afffff": case "892a100c6dbffff": case "892a100d50fffff": case "892a100d847ffff": case "892a100d853ffff": case "892a100db6fffff": case "892a100debbffff": \n", | |
| " return {"color": "black", "fillColor": "#f18f71", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a8b3ffff": case "892a100acbbffff": case "892a100d4afffff": case "892a100d553ffff": case "892a100d83bffff": case "892a100d897ffff": \n", | |
| " return {"color": "black", "fillColor": "#f4987a", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a8bbffff": case "892a100d11bffff": case "892a100d453ffff": case "892a1072923ffff": \n", | |
| " return {"color": "black", "fillColor": "#5b7ae5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a953ffff": case "892a100ae0fffff": case "892a100dcb3ffff": case "892a100de1bffff": \n", | |
| " return {"color": "black", "fillColor": "#d95847", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a957ffff": case "892a100f313ffff": case "892a107700bffff": case "892a1077447ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b89c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a95bffff": case "892a100ac0fffff": case "892a100adcbffff": case "892a100d0a7ffff": case "892a100d133ffff": \n", | |
| " return {"color": "black", "fillColor": "#d44e41", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a9c3ffff": case "892a100d637ffff": case "892a100de07ffff": case "892a1077047ffff": \n", | |
| " return {"color": "black", "fillColor": "#da5a49", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a9d3ffff": case "892a100f65bffff": \n", | |
| " return {"color": "black", "fillColor": "#c12b30", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a9dbffff": case "892a100ae63ffff": case "892a100d5d7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7a889", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aa03ffff": case "892a100aa83ffff": case "892a100c6cbffff": case "892a100d43bffff": case "892a100d56fffff": case "892a100d84bffff": case "892a100da97ffff": \n", | |
| " return {"color": "black", "fillColor": "#e57058", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aa17ffff": case "892a100d18bffff": case "892a100d573ffff": case "892a107259bffff": \n", | |
| " return {"color": "black", "fillColor": "#cc403a", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aa27ffff": case "892a100c673ffff": case "892a100decbffff": case "892a10721b3ffff": case "892a1072d53ffff": \n", | |
| " return {"color": "black", "fillColor": "#e3d9d3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aaabffff": case "892a100abd3ffff": case "892a100ad43ffff": case "892a100d433ffff": case "892a100d437ffff": case "892a100deafffff": case "892a1072d17ffff": \n", | |
| " return {"color": "black", "fillColor": "#ed8366", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aaafffff": case "892a100abb3ffff": case "892a100d48fffff": case "892a100d5d3ffff": case "892a100d84fffff": case "892a100dc6fffff": case "892a10770d7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6a385", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab03ffff": case "892a100ab3bffff": case "892a100d6b7ffff": case "892a100d95bffff": case "892a100db7bffff": case "892a100dd77ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b79b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab13ffff": case "892a100d027ffff": case "892a100d033ffff": case "892a100d547ffff": case "892a100d57bffff": case "892a100db43ffff": case "892a100dbbbffff": case "892a100f367ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6a586", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab17ffff": case "892a100f3cbffff": case "892a1072197ffff": case "892a1077587ffff": \n", | |
| " return {"color": "black", "fillColor": "#6c8ff1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab33ffff": case "892a100ac0bffff": case "892a100c34bffff": case "892a100d04fffff": case "892a100d4a7ffff": case "892a100d8c7ffff": case "892a1072583ffff": \n", | |
| " return {"color": "black", "fillColor": "#f29072", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab4bffff": case "892a100ab77ffff": case "892a100d237ffff": case "892a100dbd7ffff": case "892a1072dcfffff": case "892a1077543ffff": \n", | |
| " return {"color": "black", "fillColor": "#d8dce2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab53ffff": case "892a100d12fffff": case "892a100d303ffff": case "892a100d903ffff": case "892a100db17ffff": case "892a100f3c7ffff": case "892a107742fffff": \n", | |
| " return {"color": "black", "fillColor": "#d9dce1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab57ffff": case "892a100ae9bffff": case "892a100db8bffff": case "892a100dbcfffff": case "892a1077417ffff": case "892a107758bffff": \n", | |
| " return {"color": "black", "fillColor": "#bfd3f6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab6fffff": case "892a100d267ffff": case "892a100d5abffff": case "892a100d94bffff": case "892a100db8fffff": case "892a100f123ffff": case "892a1072dd7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b1cbfc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab87ffff": case "892a100ac3bffff": case "892a100da37ffff": case "892a100f073ffff": case "892a100f38fffff": \n", | |
| " return {"color": "black", "fillColor": "#f7af91", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab8fffff": case "892a100ad4fffff": case "892a100d1c7ffff": case "892a100dc8fffff": \n", | |
| " return {"color": "black", "fillColor": "#cb3e38", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aba7ffff": case "892a100d153ffff": case "892a100d4b3ffff": case "892a100d823ffff": case "892a100d87bffff": case "892a100da03ffff": case "892a100dc4bffff": case "892a100f36bffff": \n", | |
| " return {"color": "black", "fillColor": "#eed0c0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac6bffff": case "892a100d653ffff": case "892a100dbb7ffff": case "892a1072d3bffff": \n", | |
| " return {"color": "black", "fillColor": "#6788ee", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac8bffff": case "892a100d0c7ffff": case "892a100db47ffff": case "892a10721a7ffff": \n", | |
| " return {"color": "black", "fillColor": "#ecd3c5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac8fffff": case "892a100d6cbffff": case "892a100d873ffff": case "892a100dbdbffff": case "892a100dc07ffff": case "892a100f3afffff": case "892a1072da7ffff": \n", | |
| " return {"color": "black", "fillColor": "#efcfbf", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac93ffff": case "892a100c34fffff": case "892a100d06fffff": case "892a100d66fffff": case "892a100d867ffff": case "892a100d8b7ffff": case "892a1072517ffff": case "892a1072587ffff": \n", | |
| " return {"color": "black", "fillColor": "#afcafc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac9bffff": case "892a100d007ffff": case "892a100d9dbffff": case "892a100dbb3ffff": case "892a1072883ffff": \n", | |
| " return {"color": "black", "fillColor": "#5977e3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ad5bffff": case "892a100dcc7ffff": \n", | |
| " return {"color": "black", "fillColor": "#c32e31", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ad6bffff": \n", | |
| " return {"color": "black", "fillColor": "#ba162b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ad73ffff": case "892a100d333ffff": \n", | |
| " return {"color": "black", "fillColor": "#c43032", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ad7bffff": case "892a100d54fffff": case "892a100d81bffff": case "892a100d8afffff": case "892a100de33ffff": case "892a100de63ffff": case "892a1072d03ffff": case "892a10770c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#e97a5f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ae0bffff": case "892a100d10bffff": case "892a100da53ffff": case "892a10774dbffff": \n", | |
| " return {"color": "black", "fillColor": "#aac7fd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ae1bffff": case "892a100d047ffff": case "892a100d31bffff": case "892a100d41bffff": case "892a100f06bffff": case "892a100f343ffff": \n", | |
| " return {"color": "black", "fillColor": "#7da0f9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ae73ffff": case "892a100c697ffff": case "892a100d48bffff": case "892a10725a7ffff": case "892a1072c8fffff": \n", | |
| " return {"color": "black", "fillColor": "#96b7ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ae8bffff": case "892a100c683ffff": case "892a100d003ffff": case "892a100d08bffff": case "892a100d61bffff": case "892a100da4bffff": case "892a1072cbbffff": case "892a1077517ffff": \n", | |
| " return {"color": "black", "fillColor": "#7b9ff9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c367ffff": case "892a100d9cbffff": case "892a1072927ffff": case "892a107665bffff": \n", | |
| " return {"color": "black", "fillColor": "#7396f5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c36bffff": case "892a100c453ffff": case "892a100d4c3ffff": case "892a100d877ffff": case "892a100da0fffff": case "892a100daabffff": case "892a100dd43ffff": \n", | |
| " return {"color": "black", "fillColor": "#ebd3c6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c37bffff": case "892a100d36fffff": case "892a100dac7ffff": case "892a100db3bffff": case "892a100de8bffff": case "892a100de9bffff": \n", | |
| " return {"color": "black", "fillColor": "#cfdaea", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c443ffff": case "892a100d077ffff": case "892a100d07bffff": case "892a100d393ffff": case "892a100d3a7ffff": case "892a100d3c7ffff": case "892a1072963ffff": \n", | |
| " return {"color": "black", "fillColor": "#9bbcff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c44bffff": case "892a107288bffff": case "892a1077533ffff": \n", | |
| " return {"color": "black", "fillColor": "#5673e0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c45bffff": case "892a100d64bffff": case "892a100db0fffff": case "892a100ded3ffff": case "892a100f12fffff": case "892a1077423ffff": \n", | |
| " return {"color": "black", "fillColor": "#9dbdff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c4d7ffff": case "892a100d293ffff": case "892a100d2c3ffff": case "892a100d2d7ffff": case "892a100d687ffff": case "892a100f30fffff": \n", | |
| " return {"color": "black", "fillColor": "#abc8fd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c65bffff": case "892a100c6c3ffff": case "892a100c6cfffff": case "892a100d80bffff": case "892a100dd6fffff": case "892a100dec7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b093", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c68bffff": case "892a100d017ffff": case "892a100d30bffff": case "892a1072913ffff": \n", | |
| " return {"color": "black", "fillColor": "#86a9fc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c693ffff": case "892a100d22bffff": case "892a100d35bffff": case "892a100db5bffff": case "892a100f3c3ffff": case "892a1072dd3ffff": case "892a1077453ffff": \n", | |
| " return {"color": "black", "fillColor": "#9abbff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c6bbffff": case "892a100d06bffff": case "892a100d177ffff": case "892a1072c13ffff": case "892a10766cbffff": \n", | |
| " return {"color": "black", "fillColor": "#8db0fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c6d7ffff": case "892a100d0d7ffff": case "892a100d273ffff": case "892a100d4d7ffff": case "892a100d8b3ffff": case "892a100f6dbffff": \n", | |
| " return {"color": "black", "fillColor": "#c1d4f4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d00fffff": case "892a10728d7ffff": case "892a10766c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#5e7de7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d013ffff": case "892a100da5bffff": case "892a100f22bffff": case "892a1072c2bffff": case "892a1072c73ffff": case "892a1072cb7ffff": case "892a1072d6fffff": \n", | |
| " return {"color": "black", "fillColor": "#7597f6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d02bffff": case "892a100d357ffff": case "892a100d96bffff": case "892a10728abffff": \n", | |
| " return {"color": "black", "fillColor": "#7295f4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d02fffff": case "892a100d20bffff": case "892a100d213ffff": case "892a100d2cfffff": case "892a100d697ffff": case "892a100db83ffff": case "892a100f303ffff": \n", | |
| " return {"color": "black", "fillColor": "#c7d7f0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d057ffff": case "892a100d49bffff": case "892a100d67bffff": case "892a100f3d3ffff": case "892a10729a3ffff": case "892a1072c07ffff": case "892a1072c8bffff": \n", | |
| " return {"color": "black", "fillColor": "#92b4fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d073ffff": case "892a100d86bffff": case "892a10729afffff": case "892a107745bffff": case "892a1077467ffff": \n", | |
| " return {"color": "black", "fillColor": "#b3cdfb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d083ffff": case "892a100d63bffff": case "892a1072523ffff": case "892a107252bffff": case "892a1072c03ffff": case "892a1072c17ffff": case "892a1077697ffff": \n", | |
| " return {"color": "black", "fillColor": "#85a8fc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d08fffff": case "892a107258bffff": case "892a107292bffff": case "892a1072c0fffff": case "892a1072ddbffff": \n", | |
| " return {"color": "black", "fillColor": "#6b8df0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d0b7ffff": case "892a100d32bffff": case "892a1072c53ffff": \n", | |
| " return {"color": "black", "fillColor": "#ca3b37", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d0cbffff": case "892a100d107ffff": case "892a100d427ffff": case "892a100d5a3ffff": case "892a100da67ffff": case "892a100f253ffff": case "892a1072c1bffff": case "892a1072c93ffff": \n", | |
| " return {"color": "black", "fillColor": "#aec9fc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d0d3ffff": case "892a100d36bffff": case "892a100d60fffff": case "892a10729bbffff": case "892a1072d63ffff": \n", | |
| " return {"color": "black", "fillColor": "#7ea1fa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d0dbffff": case "892a1072993ffff": case "892a1072d2bffff": \n", | |
| " return {"color": "black", "fillColor": "#8fb1fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d10fffff": case "892a100db77ffff": case "892a1077597ffff": \n", | |
| " return {"color": "black", "fillColor": "#6a8bef", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d157ffff": case "892a100d683ffff": case "892a100d6b3ffff": case "892a100dbabffff": case "892a10774cfffff": \n", | |
| " return {"color": "black", "fillColor": "#ccd9ed", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d173ffff": case "892a100d5dbffff": case "892a100dd47ffff": case "892a100dd73ffff": case "892a100dd7bffff": case "892a100f377ffff": case "892a10728b7ffff": \n", | |
| " return {"color": "black", "fillColor": "#ead4c8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d19bffff": case "892a100d323ffff": case "892a100d477ffff": \n", | |
| " return {"color": "black", "fillColor": "#c53334", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d1d3ffff": case "892a100de3bffff": case "892a100de5bffff": \n", | |
| " return {"color": "black", "fillColor": "#e16751", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d223ffff": case "892a100d29bffff": case "892a100d497ffff": case "892a100f353ffff": case "892a1072977ffff": case "892a10774d7ffff": \n", | |
| " return {"color": "black", "fillColor": "#94b6ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d2cbffff": case "892a100d3afffff": case "892a100d4cfffff": case "892a1077557ffff": \n", | |
| " return {"color": "black", "fillColor": "#b7cff9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d39bffff": case "892a100dc53ffff": case "892a100f33bffff": \n", | |
| " return {"color": "black", "fillColor": "#f49a7b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d3cfffff": case "892a10725afffff": case "892a1072973ffff": case "892a10775c7ffff": \n", | |
| " return {"color": "black", "fillColor": "#a6c4fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d44bffff": case "892a100d44fffff": case "892a100dcabffff": case "892a100dd63ffff": case "892a100dedbffff": case "892a100f31bffff": \n", | |
| " return {"color": "black", "fillColor": "#bad0f8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d47bffff": case "892a100d6cfffff": case "892a10729c7ffff": \n", | |
| " return {"color": "black", "fillColor": "#4f69d9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d507ffff": case "892a100d607ffff": case "892a100d9cfffff": case "892a10729b7ffff": case "892a1072d73ffff": \n", | |
| " return {"color": "black", "fillColor": "#97b8ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d517ffff": case "892a100d647ffff": case "892a100d673ffff": case "892a100d9d7ffff": case "892a100da47ffff": case "892a100dba7ffff": case "892a107252fffff": \n", | |
| " return {"color": "black", "fillColor": "#90b2fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d55bffff": case "892a100dd17ffff": case "892a100decfffff": case "892a100f3bbffff": case "892a1072c97ffff": \n", | |
| " return {"color": "black", "fillColor": "#88abfd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d58bffff": case "892a100de67ffff": case "892a100dea3ffff": case "892a100f3a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#d75445", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d603ffff": case "892a100ddd7ffff": case "892a10729d7ffff": case "892a1072c67ffff": case "892a1072dcbffff": case "892a107769bffff": \n", | |
| " return {"color": "black", "fillColor": "#82a6fb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d6a3ffff": case "892a100db73ffff": case "892a100db9bffff": case "892a1072d37ffff": case "892a10772b7ffff": case "892a10774b7ffff": \n", | |
| " return {"color": "black", "fillColor": "#e6d7cf", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d837ffff": case "892a100da73ffff": case "892a100da7bffff": case "892a100f363ffff": case "892a107298fffff": case "892a1072c83ffff": case "892a1072d27ffff": \n", | |
| " return {"color": "black", "fillColor": "#bbd1f8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100da8fffff": case "892a100dc13ffff": case "892a100de27ffff": case "892a100f02fffff": case "892a1072c4fffff": \n", | |
| " return {"color": "black", "fillColor": "#f39778", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100db63ffff": case "892a1072987ffff": case "892a107707bffff": \n", | |
| " return {"color": "black", "fillColor": "#6687ed", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100db67ffff": case "892a107299bffff": case "892a107664bffff": case "892a1077503ffff": \n", | |
| " return {"color": "black", "fillColor": "#6282ea", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100f207ffff": \n", | |
| " return {"color": "black", "fillColor": "#4358cb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100f26fffff": case "892a107292fffff": case "892a1077053ffff": case "892a1077073ffff": case "892a107758fffff": \n", | |
| " return {"color": "black", "fillColor": "#6384eb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10721bbffff": case "892a107253bffff": case "892a1072c6bffff": case "892a107751bffff": \n", | |
| " return {"color": "black", "fillColor": "#5a78e4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072503ffff": \n", | |
| " return {"color": "black", "fillColor": "#3c4ec2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072803ffff": \n", | |
| " return {"color": "black", "fillColor": "#4e68d8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072813ffff": \n", | |
| " return {"color": "black", "fillColor": "#4a63d3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072817ffff": \n", | |
| " return {"color": "black", "fillColor": "#4961d2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a107281bffff": \n", | |
| " return {"color": "black", "fillColor": "#4b64d5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072887ffff": case "892a1072893ffff": case "892a10728d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#506bda", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a107288fffff": \n", | |
| " return {"color": "black", "fillColor": "#5470de", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072897ffff": case "892a107289bffff": case "892a10728c3ffff": case "892a1072ca3ffff": case "892a107750bffff": \n", | |
| " return {"color": "black", "fillColor": "#688aef", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a107294bffff": \n", | |
| " return {"color": "black", "fillColor": "#3e51c5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072997ffff": case "892a1072d77ffff": case "892a1077437ffff": case "892a10775abffff": \n", | |
| " return {"color": "black", "fillColor": "#5d7ce6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072bb3ffff": \n", | |
| " return {"color": "black", "fillColor": "#3b4cc0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072c77ffff": case "892a1072d2fffff": case "892a1077403ffff": case "892a1077593ffff": \n", | |
| " return {"color": "black", "fillColor": "#7093f3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1077513ffff": case "892a10775afffff": \n", | |
| " return {"color": "black", "fillColor": "#516ddb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1077573ffff": case "892a1077583ffff": \n", | |
| " return {"color": "black", "fillColor": "#4c66d6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " default:\n", | |
| " return {"color": "black", "fillColor": "#536edd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " }\n", | |
| " }\n", | |
| "\n", | |
| " function geo_json_d4752c310b42146f48613a2543e51fcf_onEachFeature(feature, layer) {\n", | |
| " layer.on({\n", | |
| " });\n", | |
| " };\n", | |
| " var geo_json_d4752c310b42146f48613a2543e51fcf = L.geoJson(null, {\n", | |
| " onEachFeature: geo_json_d4752c310b42146f48613a2543e51fcf_onEachFeature,\n", | |
| " \n", | |
| " style: geo_json_d4752c310b42146f48613a2543e51fcf_styler,\n", | |
| " });\n", | |
| "\n", | |
| " function geo_json_d4752c310b42146f48613a2543e51fcf_add (data) {\n", | |
| " geo_json_d4752c310b42146f48613a2543e51fcf\n", | |
| " .addData(data);\n", | |
| " }\n", | |
| " geo_json_d4752c310b42146f48613a2543e51fcf_add({"features": [{"geometry": {"coordinates": [[[-73.888386, 40.875578], [-73.888234, 40.872843], [-73.887456, 40.873968], [-73.885893, 40.873731], [-73.888386, 40.875578]]], "type": "Polygon"}, "id": "892a1001203ffff", "properties": {"percentile_speed_kmh": 42.497753818508535}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.891287, 40.872204], [-73.889087, 40.870127], [-73.88933, 40.871401], [-73.887919, 40.871996], [-73.891287, 40.872204]]], "type": "Polygon"}, "id": "892a100120fffff", "properties": {"percentile_speed_kmh": 40.83557951482479}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.890652, 40.878158], [-73.890452, 40.875425], [-73.889693, 40.876559], [-73.888126, 40.87634], [-73.890652, 40.878158]]], "type": "Polygon"}, "id": "892a100121bffff", "properties": {"percentile_speed_kmh": 19.67654986522911}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8945, 40.867482], [-73.89439, 40.864747], [-73.893595, 40.865863], [-73.892036, 40.865611], [-73.8945, 40.867482]]], "type": "Polygon"}, "id": "892a1001267ffff", "properties": {"percentile_speed_kmh": 92.22821203953279}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.897107, 40.864744], [-73.897573, 40.867454], [-73.898218, 40.866276], [-73.899802, 40.866393], [-73.897107, 40.864744]]], "type": "Polygon"}, "id": "892a100126fffff", "properties": {"percentile_speed_kmh": 12.353998203054806}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.896643, 40.870576], [-73.898712, 40.872739], [-73.898548, 40.871457], [-73.899994, 40.87092], [-73.896643, 40.870576]]], "type": "Polygon"}, "id": "892a100127bffff", "properties": {"percentile_speed_kmh": 43.44115004492363}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.886366, 40.878615], [-73.888031, 40.880997], [-73.888096, 40.879709], [-73.889622, 40.879345], [-73.886366, 40.878615]]], "type": "Polygon"}, "id": "892a10012c7ffff", "properties": {"percentile_speed_kmh": 24.842767295597483}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973903, 40.799133], [-73.976496, 40.797383], [-73.974922, 40.797561], [-73.974209, 40.79641], [-73.973903, 40.799133]]], "type": "Polygon"}, "id": "892a1008803ffff", "properties": {"percentile_speed_kmh": 96.67565139263252}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972888, 40.79379], [-73.970978, 40.796044], [-73.972433, 40.795527], [-73.973504, 40.796479], [-73.972888, 40.79379]]], "type": "Polygon"}, "id": "892a1008807ffff", "properties": {"percentile_speed_kmh": 63.25247079964061}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978419, 40.79579], [-73.976219, 40.793717], [-73.976463, 40.794989], [-73.975054, 40.795585], [-73.978419, 40.79579]]], "type": "Polygon"}, "id": "892a100880fffff", "properties": {"percentile_speed_kmh": 99.14645103324348}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973175, 40.799091], [-73.971139, 40.801272], [-73.972623, 40.80081], [-73.973639, 40.801799], [-73.973175, 40.799091]]], "type": "Polygon"}, "id": "892a1008813ffff", "properties": {"percentile_speed_kmh": 64.37556154537286}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971193, 40.796578], [-73.968775, 40.798486], [-73.970328, 40.79821], [-73.971148, 40.799313], [-73.971193, 40.796578]]], "type": "Polygon"}, "id": "892a1008817ffff", "properties": {"percentile_speed_kmh": 85.22012578616352}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972778, 40.788524], [-73.970721, 40.790691], [-73.972208, 40.790239], [-73.973214, 40.791235], [-73.972778, 40.788524]]], "type": "Polygon"}, "id": "892a1008823ffff", "properties": {"percentile_speed_kmh": 58.086253369272235}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970669, 40.785973], [-73.968413, 40.788007], [-73.969939, 40.787647], [-73.970849, 40.788703], [-73.970669, 40.785973]]], "type": "Polygon"}, "id": "892a1008827ffff", "properties": {"percentile_speed_kmh": 59.11949685534591}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977098, 40.788418], [-73.97498, 40.790546], [-73.97648, 40.790122], [-73.977457, 40.791137], [-73.977098, 40.788418]]], "type": "Polygon"}, "id": "892a100882bffff", "properties": {"percentile_speed_kmh": 60.37735849056604}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97443, 40.785775], [-73.972987, 40.788247], [-73.974322, 40.787549], [-73.975566, 40.78835], [-73.97443, 40.785775]]], "type": "Polygon"}, "id": "892a100882fffff", "properties": {"percentile_speed_kmh": 53.77358490566038}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970728, 40.791221], [-73.968691, 40.793401], [-73.970174, 40.792939], [-73.97119, 40.79393], [-73.970728, 40.791221]]], "type": "Polygon"}, "id": "892a1008833ffff", "properties": {"percentile_speed_kmh": 73.49505840071878}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968873, 40.788758], [-73.96628, 40.790508], [-73.967854, 40.79033], [-73.968567, 40.791481], [-73.968873, 40.788758]]], "type": "Polygon"}, "id": "892a1008837ffff", "properties": {"percentile_speed_kmh": 87.78077268643307}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974679, 40.791062], [-73.973164, 40.793505], [-73.974519, 40.792833], [-73.97574, 40.793658], [-73.974679, 40.791062]]], "type": "Polygon"}, "id": "892a100883bffff", "properties": {"percentile_speed_kmh": 51.257861635220124}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981731, 40.788421], [-73.979112, 40.790145], [-73.980689, 40.789983], [-73.981384, 40.791141], [-73.981731, 40.788421]]], "type": "Polygon"}, "id": "892a1008867ffff", "properties": {"percentile_speed_kmh": 82.83917340521114}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977479, 40.791423], [-73.978906, 40.793901], [-73.979095, 40.792623], [-73.980651, 40.792358], [-73.977479, 40.791423]]], "type": "Polygon"}, "id": "892a1008877ffff", "properties": {"percentile_speed_kmh": 12.264150943396226}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967607, 40.80223], [-73.964573, 40.803428], [-73.966154, 40.80356], [-73.966507, 40.804816], [-73.967607, 40.80223]]], "type": "Polygon"}, "id": "892a1008883ffff", "properties": {"percentile_speed_kmh": 78.30188679245283}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965831, 40.800168], [-73.962457, 40.800206], [-73.963818, 40.80087], [-73.963478, 40.802128], [-73.965831, 40.800168]]], "type": "Polygon"}, "id": "892a1008887ffff", "properties": {"percentile_speed_kmh": 69.36208445642407}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971555, 40.801926], [-73.968924, 40.803638], [-73.970502, 40.803483], [-73.971189, 40.804644], [-73.971555, 40.801926]]], "type": "Polygon"}, "id": "892a100888bffff", "properties": {"percentile_speed_kmh": 98.24797843665768}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969357, 40.799361], [-73.966667, 40.801013], [-73.96825, 40.800894], [-73.968896, 40.80207], [-73.969357, 40.799361]]], "type": "Polygon"}, "id": "892a100888fffff", "properties": {"percentile_speed_kmh": 80.05390835579514}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964097, 40.807503], [-73.965822, 40.805153], [-73.964411, 40.805746], [-73.963266, 40.804853], [-73.964097, 40.807503]]], "type": "Polygon"}, "id": "892a1008893ffff", "properties": {"percentile_speed_kmh": 91.91374663072776}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962562, 40.804888], [-73.963053, 40.802183], [-73.962027, 40.803166], [-73.960548, 40.802694], [-73.962562, 40.804888]]], "type": "Polygon"}, "id": "892a1008897ffff", "properties": {"percentile_speed_kmh": 64.95956873315363}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967518, 40.807092], [-73.970452, 40.805741], [-73.968864, 40.80569], [-73.968413, 40.804455], [-73.967518, 40.807092]]], "type": "Polygon"}, "id": "892a100889bffff", "properties": {"percentile_speed_kmh": 96.99011680143755}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964789, 40.794154], [-73.962208, 40.795915], [-73.963781, 40.795731], [-73.964501, 40.796878], [-73.964789, 40.794154]]], "type": "Polygon"}, "id": "892a10088a3ffff", "properties": {"percentile_speed_kmh": 56.78346810422282}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962501, 40.79155], [-73.959982, 40.79337], [-73.961548, 40.793149], [-73.962308, 40.79428], [-73.962501, 40.79155]]], "type": "Polygon"}, "id": "892a10088a7ffff", "properties": {"percentile_speed_kmh": 84.4115004492363}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969071, 40.79404], [-73.966488, 40.795799], [-73.968061, 40.795616], [-73.96878, 40.796764], [-73.969071, 40.79404]]], "type": "Polygon"}, "id": "892a10088abffff", "properties": {"percentile_speed_kmh": 54.80682839173405}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966856, 40.791467], [-73.964236, 40.79319], [-73.965813, 40.793028], [-73.966507, 40.794186], [-73.966856, 40.791467]]], "type": "Polygon"}, "id": "892a10088afffff", "properties": {"percentile_speed_kmh": 65.99281221922732}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962829, 40.796888], [-73.960146, 40.798547], [-73.961728, 40.798424], [-73.962379, 40.799598], [-73.962829, 40.796888]]], "type": "Polygon"}, "id": "892a10088b3ffff", "properties": {"percentile_speed_kmh": 38.499550763701706}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959613, 40.794103], [-73.958418, 40.79666], [-73.95968, 40.795878], [-73.960999, 40.796596], [-73.959613, 40.794103]]], "type": "Polygon"}, "id": "892a10088b7ffff", "properties": {"percentile_speed_kmh": 73.04582210242587}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966876, 40.796681], [-73.96451, 40.798631], [-73.966055, 40.798327], [-73.966905, 40.799415], [-73.966876, 40.796681]]], "type": "Polygon"}, "id": "892a10088bbffff", "properties": {"percentile_speed_kmh": 57.05300988319856}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960075, 40.778501], [-73.957265, 40.780013], [-73.958852, 40.779974], [-73.959407, 40.781181], [-73.960075, 40.778501]]], "type": "Polygon"}, "id": "892a1008903ffff", "properties": {"percentile_speed_kmh": 58.58041329739443}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958053, 40.776057], [-73.954991, 40.777203], [-73.956567, 40.777362], [-73.956888, 40.778622], [-73.958053, 40.776057]]], "type": "Polygon"}, "id": "892a1008907ffff", "properties": {"percentile_speed_kmh": 16.666666666666668}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963673, 40.77816], [-73.961827, 40.780449], [-73.963267, 40.779905], [-73.964365, 40.780836], [-73.963673, 40.77816]]], "type": "Polygon"}, "id": "892a100890bffff", "properties": {"percentile_speed_kmh": 63.61185983827493}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961943, 40.77572], [-73.95935, 40.777469], [-73.960924, 40.777291], [-73.961635, 40.778442], [-73.961943, 40.77572]]], "type": "Polygon"}, "id": "892a100890fffff", "properties": {"percentile_speed_kmh": 41.37466307277628}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957729, 40.781065], [-73.955328, 40.782985], [-73.956877, 40.782701], [-73.957706, 40.783799], [-73.957729, 40.781065]]], "type": "Polygon"}, "id": "892a1008913ffff", "properties": {"percentile_speed_kmh": 42.99191374663073}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95648, 40.780378], [-73.95404, 40.77849], [-73.954437, 40.779736], [-73.953108, 40.780441], [-73.95648, 40.780378]]], "type": "Polygon"}, "id": "892a1008917ffff", "properties": {"percentile_speed_kmh": 39.98203054806828}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962153, 40.781006], [-73.959553, 40.782748], [-73.961127, 40.782575], [-73.961834, 40.783728], [-73.962153, 40.781006]]], "type": "Polygon"}, "id": "892a100891bffff", "properties": {"percentile_speed_kmh": 46.36118598382749}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958175, 40.771098], [-73.95484, 40.771504], [-73.956298, 40.772013], [-73.956171, 40.773296], [-73.958175, 40.771098]]], "type": "Polygon"}, "id": "892a1008923ffff", "properties": {"percentile_speed_kmh": 24.21383647798742}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955592, 40.768177], [-73.952548, 40.769353], [-73.954126, 40.769496], [-73.954465, 40.770753], [-73.955592, 40.768177]]], "type": "Polygon"}, "id": "892a1008927ffff", "properties": {"percentile_speed_kmh": 32.79424977538185}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962367, 40.770878], [-73.959087, 40.771512], [-73.960593, 40.771919], [-73.960601, 40.773207], [-73.962367, 40.770878]]], "type": "Polygon"}, "id": "892a100892bffff", "properties": {"percentile_speed_kmh": 40.655884995507634}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959897, 40.768083], [-73.956824, 40.769209], [-73.958398, 40.769377], [-73.958706, 40.77064], [-73.959897, 40.768083]]], "type": "Polygon"}, "id": "892a100892fffff", "properties": {"percentile_speed_kmh": 36.92722371967655}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956014, 40.77365], [-73.952763, 40.774377], [-73.954286, 40.774741], [-73.954349, 40.776028], [-73.956014, 40.77365]]], "type": "Polygon"}, "id": "892a1008933ffff", "properties": {"percentile_speed_kmh": 39.26325247079964}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95357, 40.770887], [-73.95051, 40.772035], [-73.952086, 40.772192], [-73.952408, 40.773453], [-73.95357, 40.770887]]], "type": "Polygon"}, "id": "892a1008937ffff", "properties": {"percentile_speed_kmh": 45.238095238095234}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96025, 40.773494], [-73.957034, 40.774316], [-73.958572, 40.774635], [-73.958693, 40.775919], [-73.96025, 40.773494]]], "type": "Polygon"}, "id": "892a100893bffff", "properties": {"percentile_speed_kmh": 41.284815813117696}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970191, 40.78063], [-73.968349, 40.78292], [-73.969788, 40.782375], [-73.970887, 40.783305], [-73.970191, 40.78063]]], "type": "Polygon"}, "id": "892a1008943ffff", "properties": {"percentile_speed_kmh": 80.09883198562444}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96797, 40.778048], [-73.966095, 40.780321], [-73.967542, 40.779789], [-73.968627, 40.78073], [-73.96797, 40.778048]]], "type": "Polygon"}, "id": "892a1008947ffff", "properties": {"percentile_speed_kmh": 61.9496855345912}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974924, 40.780635], [-73.972412, 40.78246], [-73.973976, 40.782236], [-73.97474, 40.783365], [-73.974924, 40.780635]]], "type": "Polygon"}, "id": "892a100894bffff", "properties": {"percentile_speed_kmh": 88.67924528301887}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97248, 40.777984], [-73.970254, 40.780038], [-73.971775, 40.779664], [-73.972699, 40.780712], [-73.97248, 40.777984]]], "type": "Polygon"}, "id": "892a100894fffff", "properties": {"percentile_speed_kmh": 84.8607367475292}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968286, 40.783353], [-73.96624, 40.785527], [-73.967725, 40.78507], [-73.968736, 40.786063], [-73.968286, 40.783353]]], "type": "Polygon"}, "id": "892a1008953ffff", "properties": {"percentile_speed_kmh": 83.15363881401618}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965558, 40.780719], [-73.964299, 40.783256], [-73.96558, 40.782495], [-73.966881, 40.783234], [-73.965558, 40.780719]]], "type": "Polygon"}, "id": "892a1008957ffff", "properties": {"percentile_speed_kmh": 60.467205750224615}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972734, 40.783282], [-73.970438, 40.785285], [-73.97197, 40.784946], [-73.972858, 40.786014], [-73.972734, 40.783282]]], "type": "Polygon"}, "id": "892a100895bffff", "properties": {"percentile_speed_kmh": 69.85624438454627}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968078, 40.772839], [-73.965734, 40.774805], [-73.967274, 40.774491], [-73.968136, 40.775572], [-73.968078, 40.772839]]], "type": "Polygon"}, "id": "892a1008963ffff", "properties": {"percentile_speed_kmh": 37.37646001796945}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966267, 40.770451], [-73.963359, 40.771835], [-73.964947, 40.771867], [-73.965419, 40.773096], [-73.966267, 40.770451]]], "type": "Polygon"}, "id": "892a1008967ffff", "properties": {"percentile_speed_kmh": 67.78975741239893}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971602, 40.772623], [-73.970457, 40.775194], [-73.971703, 40.774396], [-73.973036, 40.775097], [-73.971602, 40.772623]]], "type": "Polygon"}, "id": "892a100896bffff", "properties": {"percentile_speed_kmh": 62.03953279424977}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970175, 40.77016], [-73.967745, 40.772056], [-73.969299, 40.771787], [-73.970111, 40.772893], [-73.970175, 40.77016]]], "type": "Polygon"}, "id": "892a100896fffff", "properties": {"percentile_speed_kmh": 53.23450134770889}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96575, 40.775467], [-73.963842, 40.777722], [-73.965296, 40.777204], [-73.966368, 40.778155], [-73.96575, 40.775467]]], "type": "Polygon"}, "id": "892a1008973ffff", "properties": {"percentile_speed_kmh": 52.96495956873315}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964361, 40.773238], [-73.961307, 40.774397], [-73.962884, 40.774549], [-73.963213, 40.775808], [-73.964361, 40.773238]]], "type": "Polygon"}, "id": "892a1008977ffff", "properties": {"percentile_speed_kmh": 54.98652291105121}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96961, 40.775321], [-73.968388, 40.777869], [-73.969658, 40.777096], [-73.970969, 40.777823], [-73.96961, 40.775321]]], "type": "Polygon"}, "id": "892a100897bffff", "properties": {"percentile_speed_kmh": 60.42228212039532}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951824, 40.786409], [-73.950927, 40.783774], [-73.950478, 40.785008], [-73.94889, 40.785059], [-73.951824, 40.786409]]], "type": "Polygon"}, "id": "892a1008983ffff", "properties": {"percentile_speed_kmh": 35.57951482479784}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950224, 40.782272], [-73.946879, 40.781919], [-73.948109, 40.782734], [-73.947551, 40.783939], [-73.950224, 40.782272]]], "type": "Polygon"}, "id": "892a1008987ffff", "properties": {"percentile_speed_kmh": 30.18867924528302}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956806, 40.785086], [-73.953654, 40.784111], [-73.954616, 40.785136], [-73.953727, 40.786203], [-73.956806, 40.785086]]], "type": "Polygon"}, "id": "892a100898bffff", "properties": {"percentile_speed_kmh": 54.1329739442947}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954049, 40.783574], [-73.952715, 40.781063], [-73.952478, 40.782336], [-73.950915, 40.782563], [-73.954049, 40.783574]]], "type": "Polygon"}, "id": "892a100898fffff", "properties": {"percentile_speed_kmh": 39.75741239892183}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949986, 40.78692], [-73.946839, 40.787906], [-73.9484, 40.788145], [-73.94862, 40.789421], [-73.949986, 40.78692]]], "type": "Polygon"}, "id": "892a1008993ffff", "properties": {"percentile_speed_kmh": 56.37915543575921}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947216, 40.784023], [-73.9447, 40.785844], [-73.946264, 40.785623], [-73.947025, 40.786753], [-73.947216, 40.784023]]], "type": "Polygon"}, "id": "892a1008997ffff", "properties": {"percentile_speed_kmh": 41.86882300089847}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953927, 40.786581], [-73.95116, 40.788144], [-73.952747, 40.788076], [-73.953335, 40.789272], [-73.953927, 40.786581]]], "type": "Polygon"}, "id": "892a100899bffff", "properties": {"percentile_speed_kmh": 47.079964061096135}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949933, 40.776785], [-73.946561, 40.776829], [-73.947923, 40.77749], [-73.947587, 40.778749], [-73.949933, 40.776785]]], "type": "Polygon"}, "id": "892a10089a3ffff", "properties": {"percentile_speed_kmh": 18.823000898472596}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94695, 40.773516], [-73.944249, 40.775153], [-73.945831, 40.775042], [-73.946468, 40.776222], [-73.94695, 40.773516]]], "type": "Polygon"}, "id": "892a10089a7ffff", "properties": {"percentile_speed_kmh": 18.553459119496853}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954036, 40.776415], [-73.95074, 40.776996], [-73.952237, 40.777427], [-73.952213, 40.778715], [-73.954036, 40.776415]]], "type": "Polygon"}, "id": "892a10089abffff", "properties": {"percentile_speed_kmh": 44.42946990116801}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951805, 40.775505], [-73.949954, 40.773221], [-73.949994, 40.774507], [-73.948503, 40.774951], [-73.951805, 40.775505]]], "type": "Polygon"}, "id": "892a10089afffff", "properties": {"percentile_speed_kmh": 19.2722371967655}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946102, 40.781548], [-73.947592, 40.779096], [-73.946244, 40.779777], [-73.945016, 40.77896], [-73.946102, 40.781548]]], "type": "Polygon"}, "id": "892a10089b3ffff", "properties": {"percentile_speed_kmh": 50.17969451931716}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945777, 40.777229], [-73.942484, 40.776639], [-73.94362, 40.777539], [-73.942934, 40.778699], [-73.945777, 40.777229]]], "type": "Polygon"}, "id": "892a10089b7ffff", "properties": {"percentile_speed_kmh": 4.492362982929021}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951888, 40.778998], [-73.948679, 40.77984], [-73.950221, 40.78015], [-73.950354, 40.781433], [-73.951888, 40.778998]]], "type": "Polygon"}, "id": "892a10089bbffff", "properties": {"percentile_speed_kmh": 28.25696316262354}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9623, 40.786267], [-73.959777, 40.788082], [-73.961343, 40.787864], [-73.9621, 40.788996], [-73.9623, 40.786267]]], "type": "Polygon"}, "id": "892a10089c3ffff", "properties": {"percentile_speed_kmh": 49.37106918238994}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959797, 40.783599], [-73.957647, 40.785706], [-73.959153, 40.785296], [-73.960115, 40.78632], [-73.959797, 40.783599]]], "type": "Polygon"}, "id": "892a10089c7ffff", "properties": {"percentile_speed_kmh": 71.33872416891285}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966252, 40.786054], [-73.964201, 40.788224], [-73.965687, 40.787769], [-73.966696, 40.788764], [-73.966252, 40.786054]]], "type": "Polygon"}, "id": "892a10089cbffff", "properties": {"percentile_speed_kmh": 58.17610062893082}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964412, 40.783598], [-73.961788, 40.785318], [-73.963365, 40.785158], [-73.964057, 40.786317], [-73.964412, 40.783598]]], "type": "Polygon"}, "id": "892a10089cfffff", "properties": {"percentile_speed_kmh": 59.97304582210243}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960284, 40.788975], [-73.957731, 40.790763], [-73.959301, 40.790562], [-73.960039, 40.791702], [-73.960284, 40.788975]]], "type": "Polygon"}, "id": "892a10089d3ffff", "properties": {"percentile_speed_kmh": 68.10422282120395}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95818, 40.786452], [-73.955447, 40.788055], [-73.957031, 40.787965], [-73.957646, 40.789152], [-73.95818, 40.786452]]], "type": "Polygon"}, "id": "892a10089d7ffff", "properties": {"percentile_speed_kmh": 78.52650494159928}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963523, 40.788714], [-73.962619, 40.791348], [-73.963788, 40.790477], [-73.965182, 40.791095], [-73.963523, 40.788714]]], "type": "Polygon"}, "id": "892a10089dbffff", "properties": {"percentile_speed_kmh": 69.90116801437556}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989195, 40.777451], [-73.987589, 40.779855], [-73.988969, 40.779217], [-73.990158, 40.780071], [-73.989195, 40.777451]]], "type": "Polygon"}, "id": "892a1008b03ffff", "properties": {"percentile_speed_kmh": 3.324348607367475}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987049, 40.774877], [-73.985286, 40.777208], [-73.986706, 40.776631], [-73.987837, 40.777536], [-73.987049, 40.774877]]], "type": "Polygon"}, "id": "892a1008b07ffff", "properties": {"percentile_speed_kmh": 46.675651392632524}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991317, 40.77476], [-73.989571, 40.7771], [-73.990987, 40.776515], [-73.992124, 40.777415], [-73.991317, 40.77476]]], "type": "Polygon"}, "id": "892a1008b0fffff", "properties": {"percentile_speed_kmh": 8.939802336028752}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987623, 40.780241], [-73.985303, 40.782226], [-73.98684, 40.781899], [-73.987716, 40.782974], [-73.987623, 40.780241]]], "type": "Polygon"}, "id": "892a1008b13ffff", "properties": {"percentile_speed_kmh": 46.45103324348607}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985419, 40.777669], [-73.983044, 40.779611], [-73.98459, 40.779312], [-73.985434, 40.780403], [-73.985419, 40.777669]]], "type": "Polygon"}, "id": "892a1008b17ffff", "properties": {"percentile_speed_kmh": 73.94429469901168}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986918, 40.769605], [-73.985035, 40.771873], [-73.986484, 40.771345], [-73.987566, 40.772288], [-73.986918, 40.769605]]], "type": "Polygon"}, "id": "892a1008b23ffff", "properties": {"percentile_speed_kmh": 59.83827493261455}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9839, 40.76703], [-73.983349, 40.769727], [-73.984397, 40.768759], [-73.985864, 40.769253], [-73.9839, 40.76703]]], "type": "Polygon"}, "id": "892a1008b27ffff", "properties": {"percentile_speed_kmh": 53.81850853548966}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991413, 40.769536], [-73.989201, 40.7716], [-73.990718, 40.77122], [-73.991649, 40.772263], [-73.991413, 40.769536]]], "type": "Polygon"}, "id": "892a1008b2bffff", "properties": {"percentile_speed_kmh": 29.919137466307276}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988213, 40.766908], [-73.987597, 40.769596], [-73.988667, 40.768645], [-73.990122, 40.769162], [-73.988213, 40.766908]]], "type": "Polygon"}, "id": "892a1008b2fffff", "properties": {"percentile_speed_kmh": 46.22641509433962}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98328, 40.772669], [-73.984451, 40.775233], [-73.984769, 40.773972], [-73.986345, 40.773811], [-73.98328, 40.772669]]], "type": "Polygon"}, "id": "892a1008b33ffff", "properties": {"percentile_speed_kmh": 62.848158131176994}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982426, 40.769696], [-73.980887, 40.772129], [-73.982249, 40.771465], [-73.983461, 40.772298], [-73.982426, 40.769696]]], "type": "Polygon"}, "id": "892a1008b37ffff", "properties": {"percentile_speed_kmh": 65.49865229110512}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989569, 40.772298], [-73.987084, 40.774146], [-73.988645, 40.773907], [-73.989425, 40.775029], [-73.989569, 40.772298]]], "type": "Polygon"}, "id": "892a1008b3bffff", "properties": {"percentile_speed_kmh": 41.55435759209344}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981169, 40.783018], [-73.979054, 40.785148], [-73.980553, 40.784722], [-73.981533, 40.785736], [-73.981169, 40.783018]]], "type": "Polygon"}, "id": "892a1008b83ffff", "properties": {"percentile_speed_kmh": 62.488769092542675}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978869, 40.780421], [-73.976841, 40.782606], [-73.978322, 40.78214], [-73.979341, 40.783128], [-73.978869, 40.780421]]], "type": "Polygon"}, "id": "892a1008b87ffff", "properties": {"percentile_speed_kmh": 60.82659478885894}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98555, 40.782929], [-73.983284, 40.784955], [-73.984812, 40.784601], [-73.985716, 40.78566], [-73.98555, 40.782929]]], "type": "Polygon"}, "id": "892a1008b8bffff", "properties": {"percentile_speed_kmh": 62.893081761006286}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983363, 40.780362], [-73.981016, 40.782327], [-73.982558, 40.782013], [-73.983418, 40.783096], [-73.983363, 40.780362]]], "type": "Polygon"}, "id": "892a1008b8fffff", "properties": {"percentile_speed_kmh": 86.38814016172506}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979256, 40.785751], [-73.976959, 40.787754], [-73.978492, 40.787415], [-73.97938, 40.788483], [-73.979256, 40.785751]]], "type": "Polygon"}, "id": "892a1008b93ffff", "properties": {"percentile_speed_kmh": 67.34052111410602}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976825, 40.783119], [-73.974808, 40.785311], [-73.976287, 40.78484], [-73.977312, 40.785824], [-73.976825, 40.783119]]], "type": "Polygon"}, "id": "892a1008b97ffff", "properties": {"percentile_speed_kmh": 46.04672057502246}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983158, 40.785558], [-73.981437, 40.78791], [-73.982847, 40.787315], [-73.983994, 40.788207], [-73.983158, 40.785558]]], "type": "Polygon"}, "id": "892a1008b9bffff", "properties": {"percentile_speed_kmh": 11.859838274932613}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97858, 40.775121], [-73.976679, 40.77738], [-73.978132, 40.776859], [-73.979207, 40.777807], [-73.97858, 40.775121]]], "type": "Polygon"}, "id": "892a1008ba3ffff", "properties": {"percentile_speed_kmh": 45.103324348607366}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976115, 40.772511], [-73.974572, 40.774942], [-73.975935, 40.77428], [-73.977145, 40.775114], [-73.976115, 40.772511]]], "type": "Polygon"}, "id": "892a1008ba7ffff", "properties": {"percentile_speed_kmh": 65.63342318059298}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982838, 40.775003], [-73.980969, 40.777278], [-73.982415, 40.776744], [-73.983502, 40.777683], [-73.982838, 40.775003]]], "type": "Polygon"}, "id": "892a1008babffff", "properties": {"percentile_speed_kmh": 63.11769991015274}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980569, 40.772414], [-73.978742, 40.774712], [-73.980177, 40.774161], [-73.981282, 40.775086], [-73.980569, 40.772414]]], "type": "Polygon"}, "id": "892a1008bafffff", "properties": {"percentile_speed_kmh": 72.77628032345014}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976639, 40.777839], [-73.974591, 40.780012], [-73.976077, 40.779555], [-73.977087, 40.780549], [-73.976639, 40.777839]]], "type": "Polygon"}, "id": "892a1008bb3ffff", "properties": {"percentile_speed_kmh": 67.11590296495957}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974156, 40.775217], [-73.972487, 40.777592], [-73.973883, 40.776978], [-73.975049, 40.777853], [-73.974156, 40.775217]]], "type": "Polygon"}, "id": "892a1008bb7ffff", "properties": {"percentile_speed_kmh": 87.10691823899371}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98112, 40.777778], [-73.978774, 40.779743], [-73.980315, 40.779429], [-73.981176, 40.780511], [-73.98112, 40.777778]]], "type": "Polygon"}, "id": "892a1008bbbffff", "properties": {"percentile_speed_kmh": 51.43755615453728}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960721, 40.815258], [-73.959039, 40.817629], [-73.960439, 40.817019], [-73.961602, 40.817898], [-73.960721, 40.815258]]], "type": "Polygon"}, "id": "892a1008c03ffff", "properties": {"percentile_speed_kmh": 79.11051212938006}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958833, 40.815541], [-73.959049, 40.812811], [-73.958125, 40.81386], [-73.956603, 40.813487], [-73.958833, 40.815541]]], "type": "Polygon"}, "id": "892a1008c07ffff", "properties": {"percentile_speed_kmh": 92.45283018867924}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963452, 40.812749], [-73.960756, 40.814396], [-73.96234, 40.81428], [-73.962983, 40.815458], [-73.963452, 40.812749]]], "type": "Polygon"}, "id": "892a1008c0fffff", "properties": {"percentile_speed_kmh": 98.38274932614556}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959983, 40.818624], [-73.956662, 40.819114], [-73.95814, 40.819587], [-73.958062, 40.820873], [-73.959983, 40.818624]]], "type": "Polygon"}, "id": "892a1008c13ffff", "properties": {"percentile_speed_kmh": 80.95238095238095}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957551, 40.81584], [-73.954379, 40.816776], [-73.955935, 40.81704], [-73.956125, 40.818319], [-73.957551, 40.81584]]], "type": "Polygon"}, "id": "892a1008c17ffff", "properties": {"percentile_speed_kmh": 62.71338724168913}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959697, 40.808232], [-73.956324, 40.808344], [-73.957708, 40.808978], [-73.95741, 40.810243], [-73.959697, 40.808232]]], "type": "Polygon"}, "id": "892a1008c23ffff", "properties": {"percentile_speed_kmh": 50.089847259658576}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957616, 40.806394], [-73.95462, 40.805136], [-73.955433, 40.806243], [-73.954399, 40.807221], [-73.957616, 40.806394]]], "type": "Polygon"}, "id": "892a1008c27ffff", "properties": {"percentile_speed_kmh": 53.72866127583109}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963656, 40.80773], [-73.960495, 40.808687], [-73.962053, 40.808941], [-73.962256, 40.810218], [-73.963656, 40.80773]]], "type": "Polygon"}, "id": "892a1008c2bffff", "properties": {"percentile_speed_kmh": 88.63432165318957}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961549, 40.805277], [-73.958272, 40.80593], [-73.959783, 40.806329], [-73.959802, 40.807616], [-73.961549, 40.805277]]], "type": "Polygon"}, "id": "892a1008c2fffff", "properties": {"percentile_speed_kmh": 70.30548068283917}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957226, 40.810456], [-73.954176, 40.811628], [-73.955755, 40.811773], [-73.956092, 40.813032], [-73.957226, 40.810456]]], "type": "Polygon"}, "id": "892a1008c33ffff", "properties": {"percentile_speed_kmh": 67.16082659478886}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955232, 40.808094], [-73.951953, 40.808741], [-73.953463, 40.809143], [-73.953478, 40.810431], [-73.955232, 40.808094]]], "type": "Polygon"}, "id": "892a1008c37ffff", "properties": {"percentile_speed_kmh": 31.356693620844563}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96205, 40.811066], [-73.958706, 40.81069], [-73.959928, 40.811514], [-73.959357, 40.812716], [-73.96205, 40.811066]]], "type": "Polygon"}, "id": "892a1008c3bffff", "properties": {"percentile_speed_kmh": 93.66576819407008}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96588, 40.809984], [-73.968299, 40.808076], [-73.966746, 40.808352], [-73.965925, 40.807249], [-73.96588, 40.809984]]], "type": "Polygon"}, "id": "892a1008c67ffff", "properties": {"percentile_speed_kmh": 94.07008086253369}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963256, 40.812358], [-73.96639, 40.811343], [-73.964825, 40.811118], [-73.964586, 40.809845], [-73.963256, 40.812358]]], "type": "Polygon"}, "id": "892a1008c77ffff", "properties": {"percentile_speed_kmh": 94.11500449236298}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951972, 40.820766], [-73.950948, 40.823373], [-73.952157, 40.822536], [-73.953522, 40.823196], [-73.951972, 40.820766]]], "type": "Polygon"}, "id": "892a1008c83ffff", "properties": {"percentile_speed_kmh": 71.42857142857143}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951161, 40.820713], [-73.949903, 40.818175], [-73.949627, 40.819443], [-73.948056, 40.819639], [-73.951161, 40.820713]]], "type": "Polygon"}, "id": "892a1008c87ffff", "properties": {"percentile_speed_kmh": 49.281221922731355}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956935, 40.820709], [-73.954799, 40.822828], [-73.956303, 40.82241], [-73.957273, 40.823431], [-73.956935, 40.820709]]], "type": "Polygon"}, "id": "892a1008c8bffff", "properties": {"percentile_speed_kmh": 62.443845462713384}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955043, 40.818242], [-73.952411, 40.819956], [-73.95399, 40.8198], [-73.954678, 40.820962], [-73.955043, 40.818242]]], "type": "Polygon"}, "id": "892a1008c8fffff", "properties": {"percentile_speed_kmh": 91.55435759209344}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951448, 40.823954], [-73.948262, 40.82486], [-73.949814, 40.825139], [-73.949985, 40.82642], [-73.951448, 40.823954]]], "type": "Polygon"}, "id": "892a1008c93ffff", "properties": {"percentile_speed_kmh": 82.21024258760107}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948646, 40.821026], [-73.946115, 40.822836], [-73.947683, 40.822621], [-73.948436, 40.823756], [-73.948646, 40.821026]]], "type": "Polygon"}, "id": "892a1008c97ffff", "properties": {"percentile_speed_kmh": 88.85893980233602}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95617, 40.824576], [-73.952876, 40.823974], [-73.954009, 40.824878], [-73.953316, 40.826037], [-73.95617, 40.824576]]], "type": "Polygon"}, "id": "892a1008c9bffff", "properties": {"percentile_speed_kmh": 86.07367475292003}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950819, 40.813212], [-73.947864, 40.814534], [-73.949452, 40.8146], [-73.949883, 40.815839], [-73.950819, 40.813212]]], "type": "Polygon"}, "id": "892a1008ca3ffff", "properties": {"percentile_speed_kmh": 81.40161725067385}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948857, 40.810851], [-73.945621, 40.811628], [-73.947153, 40.811969], [-73.947246, 40.813255], [-73.948857, 40.810851]]], "type": "Polygon"}, "id": "892a1008ca7ffff", "properties": {"percentile_speed_kmh": 54.492362982929016}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954383, 40.812814], [-73.952406, 40.815031], [-73.953877, 40.814542], [-73.95492, 40.815514], [-73.954383, 40.812814]]], "type": "Polygon"}, "id": "892a1008cabffff", "properties": {"percentile_speed_kmh": 72.50673854447439}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953535, 40.811505], [-73.950293, 40.810743], [-73.951356, 40.811701], [-73.950577, 40.812824], [-73.953535, 40.811505]]], "type": "Polygon"}, "id": "892a1008cafffff", "properties": {"percentile_speed_kmh": 51.21293800539083}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948723, 40.815877], [-73.945834, 40.817291], [-73.947424, 40.817307], [-73.947915, 40.818532], [-73.948723, 40.815877]]], "type": "Polygon"}, "id": "892a1008cb3ffff", "properties": {"percentile_speed_kmh": 61.725067385444746}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945889, 40.813057], [-73.943806, 40.815209], [-73.9453, 40.814768], [-73.946295, 40.815772], [-73.945889, 40.813057]]], "type": "Polygon"}, "id": "892a1008cb7ffff", "properties": {"percentile_speed_kmh": 63.47708894878706}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952529, 40.815558], [-73.950275, 40.817594], [-73.951801, 40.817234], [-73.952712, 40.818289], [-73.952529, 40.815558]]], "type": "Polygon"}, "id": "892a1008cbbffff", "properties": {"percentile_speed_kmh": 89.57771787960468}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945707, 40.797345], [-73.943025, 40.799005], [-73.944607, 40.798881], [-73.945258, 40.800056], [-73.945707, 40.797345]]], "type": "Polygon"}, "id": "892a1008d03ffff", "properties": {"percentile_speed_kmh": 63.881401617250674}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943714, 40.794901], [-73.94073, 40.796177], [-73.942315, 40.796267], [-73.942718, 40.797513], [-73.943714, 40.794901]]], "type": "Polygon"}, "id": "892a1008d07ffff", "properties": {"percentile_speed_kmh": 63.43216531895777}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949666, 40.797112], [-73.947428, 40.799159], [-73.948951, 40.798791], [-73.94987, 40.799842], [-73.949666, 40.797112]]], "type": "Polygon"}, "id": "892a1008d0bffff", "properties": {"percentile_speed_kmh": 44.20485175202156}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948595, 40.79555], [-73.945252, 40.795179], [-73.946475, 40.796001], [-73.945908, 40.797204], [-73.948595, 40.79555]]], "type": "Polygon"}, "id": "892a1008d0fffff", "properties": {"percentile_speed_kmh": 82.38993710691824}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943013, 40.79986], [-73.941288, 40.80221], [-73.942699, 40.801618], [-73.943843, 40.802511], [-73.943013, 40.79986]]], "type": "Polygon"}, "id": "892a1008d13ffff", "properties": {"percentile_speed_kmh": 34.18688230008985}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942136, 40.799413], [-73.939948, 40.797331], [-73.940184, 40.798605], [-73.938772, 40.799195], [-73.942136, 40.799413]]], "type": "Polygon"}, "id": "892a1008d17ffff", "properties": {"percentile_speed_kmh": 47.7088948787062}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947566, 40.799796], [-73.945419, 40.801905], [-73.946925, 40.801494], [-73.947888, 40.802518], [-73.947566, 40.799796]]], "type": "Polygon"}, "id": "892a1008d1bffff", "properties": {"percentile_speed_kmh": 61.36567834681042}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943538, 40.789634], [-73.940526, 40.790864], [-73.942108, 40.790979], [-73.942481, 40.79223], [-73.943538, 40.789634]]], "type": "Polygon"}, "id": "892a1008d23ffff", "properties": {"percentile_speed_kmh": 78.07726864330638}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941237, 40.787008], [-73.938292, 40.788342], [-73.939879, 40.788402], [-73.940319, 40.789639], [-73.941237, 40.787008]]], "type": "Polygon"}, "id": "892a1008d27ffff", "properties": {"percentile_speed_kmh": 76.37017070979336}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948141, 40.789815], [-73.944834, 40.790356], [-73.946323, 40.790806], [-73.946274, 40.792093], [-73.948141, 40.789815]]], "type": "Polygon"}, "id": "892a1008d2bffff", "properties": {"percentile_speed_kmh": 42.677448337825695}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945627, 40.786971], [-73.94256, 40.78811], [-73.944136, 40.788272], [-73.944452, 40.789534], [-73.945627, 40.786971]]], "type": "Polygon"}, "id": "892a1008d2fffff", "properties": {"percentile_speed_kmh": 70.61994609164421}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941837, 40.794262], [-73.939931, 40.792006], [-73.940002, 40.793293], [-73.938521, 40.79376], [-73.941837, 40.794262]]], "type": "Polygon"}, "id": "892a1008d33ffff", "properties": {"percentile_speed_kmh": 67.4303683737646}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939283, 40.789765], [-73.936244, 40.790952], [-73.937823, 40.791089], [-73.938169, 40.792346], [-73.939283, 40.789765]]], "type": "Polygon"}, "id": "892a1008d37ffff", "properties": {"percentile_speed_kmh": 59.34411500449236}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945783, 40.792222], [-73.942766, 40.793446], [-73.944348, 40.793564], [-73.944718, 40.794816], [-73.945783, 40.792222]]], "type": "Polygon"}, "id": "892a1008d3bffff", "properties": {"percentile_speed_kmh": 76.1455525606469}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955314, 40.79952], [-73.954514, 40.802176], [-73.955648, 40.801275], [-73.957066, 40.801857], [-73.955314, 40.79952]]], "type": "Polygon"}, "id": "892a1008d43ffff", "properties": {"percentile_speed_kmh": 13.477088948787062}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952314, 40.797178], [-73.95302, 40.799852], [-73.953558, 40.79864], [-73.955147, 40.798664], [-73.952314, 40.797178]]], "type": "Polygon"}, "id": "892a1008d47ffff", "properties": {"percentile_speed_kmh": 71.47349505840072}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960977, 40.799689], [-73.958064, 40.801069], [-73.959652, 40.801104], [-73.960122, 40.802334], [-73.960977, 40.799689]]], "type": "Polygon"}, "id": "892a1008d4bffff", "properties": {"percentile_speed_kmh": 86.79245283018868}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958972, 40.797278], [-73.955806, 40.798224], [-73.957363, 40.798483], [-73.957559, 40.799761], [-73.958972, 40.797278]]], "type": "Polygon"}, "id": "892a1008d4fffff", "properties": {"percentile_speed_kmh": 69.49685534591195}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954201, 40.802298], [-73.951889, 40.804291], [-73.953425, 40.803959], [-73.954305, 40.805031], [-73.954201, 40.802298]]], "type": "Polygon"}, "id": "892a1008d53ffff", "properties": {"percentile_speed_kmh": 31.581311769991014}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950544, 40.799754], [-73.950684, 40.802486], [-73.951466, 40.801365], [-73.953027, 40.801606], [-73.950544, 40.799754]]], "type": "Polygon"}, "id": "892a1008d57ffff", "properties": {"percentile_speed_kmh": 52.695417789757414}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959397, 40.802801], [-73.956061, 40.803215], [-73.957523, 40.803721], [-73.9574, 40.805005], [-73.959397, 40.802801]]], "type": "Polygon"}, "id": "892a1008d5bffff", "properties": {"percentile_speed_kmh": 61.500449236298294}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953262, 40.791635], [-73.951777, 40.79409], [-73.953124, 40.793407], [-73.954355, 40.794222], [-73.953262, 40.791635]]], "type": "Polygon"}, "id": "892a1008d63ffff", "properties": {"percentile_speed_kmh": 52.83018867924528}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951531, 40.789136], [-73.94925, 40.791151], [-73.95078, 40.790805], [-73.951676, 40.791868], [-73.951531, 40.789136]]], "type": "Polygon"}, "id": "892a1008d67ffff", "properties": {"percentile_speed_kmh": 49.59568733153639}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957191, 40.79153], [-73.956313, 40.79417], [-73.957474, 40.793291], [-73.958874, 40.7939], [-73.957191, 40.79153]]], "type": "Polygon"}, "id": "892a1008d6bffff", "properties": {"percentile_speed_kmh": 50.62893081761006}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955957, 40.789071], [-73.953469, 40.790918], [-73.955031, 40.79068], [-73.955809, 40.791803], [-73.955957, 40.789071]]], "type": "Polygon"}, "id": "892a1008d6fffff", "properties": {"percentile_speed_kmh": 79.60467205750224}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951682, 40.794406], [-73.949477, 40.796476], [-73.950994, 40.796092], [-73.951929, 40.797133], [-73.951682, 40.794406]]], "type": "Polygon"}, "id": "892a1008d73ffff", "properties": {"percentile_speed_kmh": 64.01617250673854}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949372, 40.791804], [-73.947269, 40.793942], [-73.948766, 40.79351], [-73.949751, 40.794521], [-73.949372, 40.791804]]], "type": "Polygon"}, "id": "892a1008d77ffff", "properties": {"percentile_speed_kmh": 59.02964959568733}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953771, 40.79501], [-73.955933, 40.79711], [-73.955712, 40.795834], [-73.957132, 40.795256], [-73.953771, 40.79501]]], "type": "Polygon"}, "id": "892a1008d7bffff", "properties": {"percentile_speed_kmh": 79.15543575920934}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935766, 40.80276], [-73.935698, 40.805494], [-73.936564, 40.804414], [-73.938104, 40.804733], [-73.935766, 40.80276]]], "type": "Polygon"}, "id": "892a1008d83ffff", "properties": {"percentile_speed_kmh": 31.087151841868824}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932803, 40.802515], [-73.93601, 40.801667], [-73.934467, 40.80136], [-73.934331, 40.800077], [-73.932803, 40.802515]]], "type": "Polygon"}, "id": "892a1008d87ffff", "properties": {"percentile_speed_kmh": 23.89937106918239}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939064, 40.804663], [-73.942434, 40.804517], [-73.941041, 40.803897], [-73.941319, 40.802629], [-73.939064, 40.804663]]], "type": "Polygon"}, "id": "892a1008d8bffff", "properties": {"percentile_speed_kmh": 18.418688230008986}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938942, 40.802868], [-73.939384, 40.800157], [-73.938376, 40.801153], [-73.936889, 40.800699], [-73.938942, 40.802868]]], "type": "Polygon"}, "id": "892a1008d8fffff", "properties": {"percentile_speed_kmh": 16.352201257861633}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936012, 40.806156], [-73.93265, 40.806392], [-73.934067, 40.806975], [-73.93384, 40.808249], [-73.936012, 40.806156]]], "type": "Polygon"}, "id": "892a1008d93ffff", "properties": {"percentile_speed_kmh": 32.65947888589398}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.933901, 40.803833], [-73.930546, 40.803545], [-73.9318, 40.804336], [-73.931278, 40.805552], [-73.933901, 40.803833]]], "type": "Polygon"}, "id": "892a1008d97ffff", "properties": {"percentile_speed_kmh": 91.2398921832884}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.937992, 40.805351], [-73.937955, 40.808086], [-73.938808, 40.806999], [-73.940352, 40.807306], [-73.937992, 40.805351]]], "type": "Polygon"}, "id": "892a1008d9bffff", "properties": {"percentile_speed_kmh": 22.237196765498652}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934553, 40.79486], [-73.932361, 40.796939], [-73.933875, 40.796549], [-73.934817, 40.797586], [-73.934553, 40.79486]]], "type": "Polygon"}, "id": "892a1008da3ffff", "properties": {"percentile_speed_kmh": 26.549865229110512}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936496, 40.795799], [-73.939212, 40.79742], [-73.938623, 40.796225], [-73.939832, 40.795389], [-73.936496, 40.795799]]], "type": "Polygon"}, "id": "892a1008dabffff", "properties": {"percentile_speed_kmh": 43.1266846361186}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934277, 40.793149], [-73.9369, 40.794868], [-73.936378, 40.793652], [-73.937631, 40.792861], [-73.934277, 40.793149]]], "type": "Polygon"}, "id": "892a1008dafffff", "properties": {"percentile_speed_kmh": 30.54806828391734}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932253, 40.797507], [-73.930461, 40.799825], [-73.931888, 40.799259], [-73.933007, 40.800173], [-73.932253, 40.797507]]], "type": "Polygon"}, "id": "892a1008db3ffff", "properties": {"percentile_speed_kmh": 84.63611859838275}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935502, 40.80021], [-73.937928, 40.79831], [-73.936375, 40.798582], [-73.93556, 40.797476], [-73.935502, 40.80021]]], "type": "Polygon"}, "id": "892a1008dbbffff", "properties": {"percentile_speed_kmh": 26.5947888589398}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946218, 40.807726], [-73.949026, 40.806209], [-73.947438, 40.806251], [-73.94688, 40.805045], [-73.946218, 40.807726]]], "type": "Polygon"}, "id": "892a1008dc3ffff", "properties": {"percentile_speed_kmh": 61.76999101527403}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943752, 40.802825], [-73.944922, 40.80539], [-73.945241, 40.804128], [-73.946818, 40.803968], [-73.943752, 40.802825]]], "type": "Polygon"}, "id": "892a1008dc7ffff", "properties": {"percentile_speed_kmh": 30.41329739442947}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9532, 40.806955], [-73.950824, 40.805012], [-73.951179, 40.806268], [-73.949825, 40.806942], [-73.9532, 40.806955]]], "type": "Polygon"}, "id": "892a1008dcbffff", "properties": {"percentile_speed_kmh": 58.89487870619946}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947572, 40.803258], [-73.950006, 40.805152], [-73.949614, 40.803904], [-73.950946, 40.803203], [-73.947572, 40.803258]]], "type": "Polygon"}, "id": "892a1008dcfffff", "properties": {"percentile_speed_kmh": 36.43306379155435}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944031, 40.808056], [-73.945024, 40.81067], [-73.945428, 40.809425], [-73.947014, 40.809336], [-73.944031, 40.808056]]], "type": "Polygon"}, "id": "892a1008dd3ffff", "properties": {"percentile_speed_kmh": 52.56064690026954}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944077, 40.805444], [-73.941141, 40.806792], [-73.942729, 40.806844], [-73.943178, 40.808079], [-73.944077, 40.805444]]], "type": "Polygon"}, "id": "892a1008dd7ffff", "properties": {"percentile_speed_kmh": 31.626235399820306}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95063, 40.807935], [-73.947659, 40.809233], [-73.949246, 40.809312], [-73.949663, 40.810555], [-73.95063, 40.807935]]], "type": "Polygon"}, "id": "892a1008ddbffff", "properties": {"percentile_speed_kmh": 51.662174303683734}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914777, 40.872259], [-73.917024, 40.870215], [-73.915498, 40.87058], [-73.914582, 40.869527], [-73.914777, 40.872259]]], "type": "Polygon"}, "id": "892a100a107ffff", "properties": {"percentile_speed_kmh": 21.69811320754717}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922348, 40.866293], [-73.925572, 40.865476], [-73.924032, 40.865154], [-73.923915, 40.863869], [-73.922348, 40.866293]]], "type": "Polygon"}, "id": "892a100a167ffff", "properties": {"percentile_speed_kmh": 9.658580413297393}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.916118, 40.834948], [-73.915008, 40.837531], [-73.916244, 40.836721], [-73.917588, 40.83741], [-73.916118, 40.834948]]], "type": "Polygon"}, "id": "892a100a803ffff", "properties": {"percentile_speed_kmh": 73.27044025157232}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.912514, 40.832957], [-73.914251, 40.835303], [-73.914275, 40.834015], [-73.915789, 40.83362], [-73.912514, 40.832957]]], "type": "Polygon"}, "id": "892a100a807ffff", "properties": {"percentile_speed_kmh": 56.55884995507637}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919227, 40.835256], [-73.92049, 40.837793], [-73.920763, 40.836524], [-73.922334, 40.836326], [-73.919227, 40.835256]]], "type": "Polygon"}, "id": "892a100a80bffff", "properties": {"percentile_speed_kmh": 75.42677448337825}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917406, 40.832419], [-73.917732, 40.835141], [-73.918437, 40.833987], [-73.920013, 40.834157], [-73.917406, 40.832419]]], "type": "Polygon"}, "id": "892a100a80fffff", "properties": {"percentile_speed_kmh": 45.77717879604672}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914855, 40.840502], [-73.914906, 40.837767], [-73.914046, 40.838851], [-73.912504, 40.838539], [-73.914855, 40.840502]]], "type": "Polygon"}, "id": "892a100a813ffff", "properties": {"percentile_speed_kmh": 81.35669362084457}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910976, 40.835281], [-73.911524, 40.83798], [-73.912132, 40.83679], [-73.913719, 40.836876], [-73.910976, 40.835281]]], "type": "Polygon"}, "id": "892a100a817ffff", "properties": {"percentile_speed_kmh": 61.904761904761905}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917103, 40.838026], [-73.918566, 40.840491], [-73.918737, 40.839211], [-73.920289, 40.838931], [-73.917103, 40.838026]]], "type": "Polygon"}, "id": "892a100a81bffff", "properties": {"percentile_speed_kmh": 46.18149146451033}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914814, 40.827329], [-73.911987, 40.828824], [-73.913576, 40.828795], [-73.91412, 40.830006], [-73.914814, 40.827329]]], "type": "Polygon"}, "id": "892a100a823ffff", "properties": {"percentile_speed_kmh": 58.40071877807727}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911953, 40.824521], [-73.909992, 40.826748], [-73.911459, 40.826252], [-73.912509, 40.82722], [-73.911953, 40.824521]]], "type": "Polygon"}, "id": "892a100a827ffff", "properties": {"percentile_speed_kmh": 96.90026954177897}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919441, 40.827464], [-73.916243, 40.828338], [-73.91779, 40.828633], [-73.917943, 40.829915], [-73.919441, 40.827464]]], "type": "Polygon"}, "id": "892a100a82bffff", "properties": {"percentile_speed_kmh": 80.68283917340521}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914672, 40.824702], [-73.915636, 40.827323], [-73.916055, 40.826081], [-73.917641, 40.826003], [-73.914672, 40.824702]]], "type": "Polygon"}, "id": "892a100a82fffff", "properties": {"percentile_speed_kmh": 51.886792452830186}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91328, 40.830454], [-73.909956, 40.830933], [-73.911433, 40.83141], [-73.911348, 40.832697], [-73.91328, 40.830454]]], "type": "Polygon"}, "id": "892a100a833ffff", "properties": {"percentile_speed_kmh": 84.09703504043127}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909979, 40.827235], [-73.907914, 40.829399], [-73.909404, 40.828949], [-73.910407, 40.829949], [-73.909979, 40.827235]]], "type": "Polygon"}, "id": "892a100a837ffff", "properties": {"percentile_speed_kmh": 79.3351302785265}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915821, 40.829667], [-73.914883, 40.832294], [-73.916064, 40.831432], [-73.917451, 40.832063], [-73.915821, 40.829667]]], "type": "Polygon"}, "id": "892a100a83bffff", "properties": {"percentile_speed_kmh": 82.52470799640611}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924909, 40.834722], [-73.923418, 40.837176], [-73.924767, 40.836495], [-73.925996, 40.837312], [-73.924909, 40.834722]]], "type": "Polygon"}, "id": "892a100a847ffff", "properties": {"percentile_speed_kmh": 96.13656783468105}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921031, 40.838397], [-73.923525, 40.84024], [-73.923093, 40.839001], [-73.924403, 40.838271], [-73.921031, 40.838397]]], "type": "Polygon"}, "id": "892a100a857ffff", "properties": {"percentile_speed_kmh": 77.40341419586703}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924862, 40.829448], [-73.923121, 40.831792], [-73.924536, 40.831205], [-73.925676, 40.832103], [-73.924862, 40.829448]]], "type": "Polygon"}, "id": "892a100a863ffff", "properties": {"percentile_speed_kmh": 53.908355795148246}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923265, 40.827044], [-73.920583, 40.828705], [-73.922165, 40.828581], [-73.922818, 40.829755], [-73.923265, 40.827044]]], "type": "Polygon"}, "id": "892a100a867ffff", "properties": {"percentile_speed_kmh": 60.691823899371066}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928826, 40.829318], [-73.927616, 40.831872], [-73.928883, 40.831094], [-73.930199, 40.831817], [-73.928826, 40.829318]]], "type": "Polygon"}, "id": "892a100a86bffff", "properties": {"percentile_speed_kmh": 57.99640610961366}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926181, 40.826777], [-73.925698, 40.829484], [-73.926722, 40.828498], [-73.928202, 40.828968], [-73.926181, 40.826777]]], "type": "Polygon"}, "id": "892a100a86fffff", "properties": {"percentile_speed_kmh": 21.159029649595688}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922772, 40.832143], [-73.921108, 40.834523], [-73.922504, 40.833906], [-73.923673, 40.834779], [-73.922772, 40.832143]]], "type": "Polygon"}, "id": "892a100a873ffff", "properties": {"percentile_speed_kmh": 74.12398921832884}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.920939, 40.829636], [-73.918648, 40.831645], [-73.920181, 40.831303], [-73.921072, 40.832369], [-73.920939, 40.829636]]], "type": "Polygon"}, "id": "892a100a877ffff", "properties": {"percentile_speed_kmh": 64.64510332434861}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927288, 40.832065], [-73.925259, 40.834251], [-73.926741, 40.833786], [-73.927761, 40.834774], [-73.927288, 40.832065]]], "type": "Polygon"}, "id": "892a100a87bffff", "properties": {"percentile_speed_kmh": 70.26055705300988}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904224, 40.83839], [-73.905757, 40.840828], [-73.905891, 40.839544], [-73.907434, 40.839235], [-73.904224, 40.83839]]], "type": "Polygon"}, "id": "892a100a887ffff", "properties": {"percentile_speed_kmh": 26.729559748427672}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910703, 40.840911], [-73.912355, 40.843297], [-73.912426, 40.84201], [-73.913953, 40.841651], [-73.910703, 40.840911]]], "type": "Polygon"}, "id": "892a100a88bffff", "properties": {"percentile_speed_kmh": 83.4681042228212}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9097, 40.837767], [-73.908752, 40.840393], [-73.909936, 40.839533], [-73.911321, 40.840167], [-73.9097, 40.837767]]], "type": "Polygon"}, "id": "892a100a88fffff", "properties": {"percentile_speed_kmh": 48.83198562443845}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904693, 40.84581], [-73.907624, 40.844453], [-73.906035, 40.844406], [-73.905581, 40.843171], [-73.904693, 40.84581]]], "type": "Polygon"}, "id": "892a100a893ffff", "properties": {"percentile_speed_kmh": 87.55615453728662}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902276, 40.841007], [-73.903573, 40.843533], [-73.903829, 40.842261], [-73.905397, 40.842049], [-73.902276, 40.841007]]], "type": "Polygon"}, "id": "892a100a897ffff", "properties": {"percentile_speed_kmh": 90.8355795148248}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911516, 40.843595], [-73.908279, 40.844373], [-73.909812, 40.844713], [-73.909906, 40.846], [-73.911516, 40.843595]]], "type": "Polygon"}, "id": "892a100a89bffff", "properties": {"percentile_speed_kmh": 89.84725965858041}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90713, 40.833554], [-73.903757, 40.833442], [-73.905072, 40.834166], [-73.904647, 40.835407], [-73.90713, 40.833554]]], "type": "Polygon"}, "id": "892a100a8a3ffff", "properties": {"percentile_speed_kmh": 39.21832884097035}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902347, 40.830156], [-73.902607, 40.832884], [-73.903339, 40.83174], [-73.90491, 40.831936], [-73.902347, 40.830156]]], "type": "Polygon"}, "id": "892a100a8a7ffff", "properties": {"percentile_speed_kmh": 59.1644204851752}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911514, 40.834117], [-73.90856, 40.832793], [-73.909335, 40.833918], [-73.90827, 40.834874], [-73.911514, 40.834117]]], "type": "Polygon"}, "id": "892a100a8abffff", "properties": {"percentile_speed_kmh": 67.83468104222821}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.905653, 40.831131], [-73.90853, 40.832562], [-73.907818, 40.83141], [-73.908936, 40.830494], [-73.905653, 40.831131]]], "type": "Polygon"}, "id": "892a100a8afffff", "properties": {"percentile_speed_kmh": 77.0440251572327}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901662, 40.837285], [-73.905036, 40.837375], [-73.903714, 40.83666], [-73.904126, 40.835415], [-73.901662, 40.837285]]], "type": "Polygon"}, "id": "892a100a8b3ffff", "properties": {"percentile_speed_kmh": 74.88769092542677}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.899304, 40.834178], [-73.902425, 40.835222], [-73.901497, 40.834176], [-73.902421, 40.833128], [-73.899304, 40.834178]]], "type": "Polygon"}, "id": "892a100a8b7ffff", "properties": {"percentile_speed_kmh": 69.99101527403414}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908578, 40.83793], [-73.908119, 40.835219], [-73.907471, 40.836396], [-73.905889, 40.836276], [-73.908578, 40.83793]]], "type": "Polygon"}, "id": "892a100a8bbffff", "properties": {"percentile_speed_kmh": 10.69182389937107}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.918152, 40.84288], [-73.917787, 40.8456], [-73.918767, 40.844585], [-73.920268, 40.845012], [-73.918152, 40.84288]]], "type": "Polygon"}, "id": "892a100a8c3ffff", "properties": {"percentile_speed_kmh": 61.54537286612758}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914683, 40.841262], [-73.917259, 40.84303], [-73.916771, 40.841804], [-73.918048, 40.841036], [-73.914683, 40.841262]]], "type": "Polygon"}, "id": "892a100a8c7ffff", "properties": {"percentile_speed_kmh": 71.20395327942498}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.918985, 40.841105], [-73.921492, 40.842937], [-73.921051, 40.8417], [-73.922357, 40.840964], [-73.918985, 40.841105]]], "type": "Polygon"}, "id": "892a100a8cfffff", "properties": {"percentile_speed_kmh": 52.02156334231806}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915478, 40.845847], [-73.916424, 40.848474], [-73.916851, 40.847233], [-73.918439, 40.847163], [-73.915478, 40.845847]]], "type": "Polygon"}, "id": "892a100a8d3ffff", "properties": {"percentile_speed_kmh": 69.18238993710692}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91463, 40.842947], [-73.912924, 40.845308], [-73.91433, 40.844708], [-73.915484, 40.845595], [-73.91463, 40.842947]]], "type": "Polygon"}, "id": "892a100a8d7ffff", "properties": {"percentile_speed_kmh": 76.32524707996406}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902319, 40.817987], [-73.898993, 40.817526], [-73.900182, 40.818381], [-73.899565, 40.819568], [-73.902319, 40.817987]]], "type": "Polygon"}, "id": "892a100a903ffff", "properties": {"percentile_speed_kmh": 91.95867026055706}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902565, 40.819432], [-73.901645, 40.822064], [-73.90282, 40.821196], [-73.904211, 40.82182], [-73.902565, 40.819432]]], "type": "Polygon"}, "id": "892a100a91bffff", "properties": {"percentile_speed_kmh": 91.06019766397125}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.912323, 40.819428], [-73.90956, 40.820998], [-73.911146, 40.820927], [-73.911738, 40.822122], [-73.912323, 40.819428]]], "type": "Polygon"}, "id": "892a100a943ffff", "properties": {"percentile_speed_kmh": 63.56693620844564}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908158, 40.816823], [-73.908664, 40.819527], [-73.909291, 40.818343], [-73.910875, 40.818445], [-73.908158, 40.816823]]], "type": "Polygon"}, "id": "892a100a947ffff", "properties": {"percentile_speed_kmh": 54.44743935309973}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.916987, 40.819578], [-73.913801, 40.820481], [-73.915352, 40.820761], [-73.915522, 40.822042], [-73.916987, 40.819578]]], "type": "Polygon"}, "id": "892a100a94bffff", "properties": {"percentile_speed_kmh": 59.928122192273136}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914744, 40.816989], [-73.91156, 40.817897], [-73.913112, 40.818175], [-73.913285, 40.819455], [-73.914744, 40.816989]]], "type": "Polygon"}, "id": "892a100a94fffff", "properties": {"percentile_speed_kmh": 77.58310871518418}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910135, 40.82206], [-73.907562, 40.82383], [-73.909134, 40.82364], [-73.90986, 40.824786], [-73.910135, 40.82206]]], "type": "Polygon"}, "id": "892a100a953ffff", "properties": {"percentile_speed_kmh": 88.45462713387242}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908561, 40.819946], [-73.905263, 40.820526], [-73.90676, 40.820958], [-73.906735, 40.822246], [-73.908561, 40.819946]]], "type": "Polygon"}, "id": "892a100a957ffff", "properties": {"percentile_speed_kmh": 66.17250673854447}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914321, 40.821909], [-73.91188, 40.823799], [-73.913436, 40.823535], [-73.914243, 40.824644], [-73.914321, 40.821909]]], "type": "Polygon"}, "id": "892a100a95bffff", "properties": {"percentile_speed_kmh": 90.43126684636118}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909689, 40.81414], [-73.909514, 40.811408], [-73.908746, 40.812536], [-73.907182, 40.812309], [-73.909689, 40.81414]]], "type": "Polygon"}, "id": "892a100a963ffff", "properties": {"percentile_speed_kmh": 58.310871518418686}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911573, 40.813386], [-73.914932, 40.813123], [-73.913507, 40.812552], [-73.913718, 40.811275], [-73.911573, 40.813386]]], "type": "Polygon"}, "id": "892a100a96bffff", "properties": {"percentile_speed_kmh": 70.48517520215633}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.906907, 40.816983], [-73.90812, 40.814431], [-73.906853, 40.815207], [-73.905539, 40.814483], [-73.906907, 40.816983]]], "type": "Polygon"}, "id": "892a100a973ffff", "properties": {"percentile_speed_kmh": 82.88409703504043}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909813, 40.816404], [-73.912969, 40.815436], [-73.91141, 40.815187], [-73.9112, 40.813911], [-73.909813, 40.816404]]], "type": "Polygon"}, "id": "892a100a97bffff", "properties": {"percentile_speed_kmh": 49.865229110512125}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.896581, 40.822237], [-73.895074, 40.824685], [-73.896428, 40.824009], [-73.897651, 40.824832], [-73.896581, 40.822237]]], "type": "Polygon"}, "id": "892a100a98bffff", "properties": {"percentile_speed_kmh": 45.50763701707098}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901782, 40.825068], [-73.902842, 40.827665], [-73.903215, 40.826413], [-73.904797, 40.826297], [-73.901782, 40.825068]]], "type": "Polygon"}, "id": "892a100a9c3ffff", "properties": {"percentile_speed_kmh": 87.96046720575022}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901582, 40.82229], [-73.898993, 40.824044], [-73.900566, 40.823864], [-73.901282, 40.825014], [-73.901582, 40.82229]]], "type": "Polygon"}, "id": "892a100a9c7ffff", "properties": {"percentile_speed_kmh": 86.20844564240791}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908147, 40.824783], [-73.905502, 40.826482], [-73.907081, 40.826335], [-73.907759, 40.8275], [-73.908147, 40.824783]]], "type": "Polygon"}, "id": "892a100a9cbffff", "properties": {"percentile_speed_kmh": 82.92902066486973}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.906638, 40.824173], [-73.904469, 40.822078], [-73.904694, 40.823353], [-73.903276, 40.823935], [-73.906638, 40.824173]]], "type": "Polygon"}, "id": "892a100a9cfffff", "properties": {"percentile_speed_kmh": 85.89398023360287}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.900442, 40.827463], [-73.900037, 40.830179], [-73.901032, 40.829174], [-73.902525, 40.829615], [-73.900442, 40.827463]]], "type": "Polygon"}, "id": "892a100a9d3ffff", "properties": {"percentile_speed_kmh": 95.82210242587601}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904542, 40.827401], [-73.904493, 40.830136], [-73.905351, 40.829052], [-73.906894, 40.829363], [-73.904542, 40.827401]]], "type": "Polygon"}, "id": "892a100a9dbffff", "properties": {"percentile_speed_kmh": 71.06918238993711}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946528, 40.834173], [-73.944712, 40.836479], [-73.946146, 40.835922], [-73.947257, 40.836844], [-73.946528, 40.834173]]], "type": "Polygon"}, "id": "892a100aa03ffff", "properties": {"percentile_speed_kmh": 83.78256963162623}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94367, 40.831583], [-73.9429, 40.834247], [-73.944025, 40.833336], [-73.945451, 40.833908], [-73.94367, 40.831583]]], "type": "Polygon"}, "id": "892a100aa07ffff", "properties": {"percentile_speed_kmh": 82.0754716981132}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945824, 40.837705], [-73.942451, 40.837827], [-73.943838, 40.838457], [-73.943545, 40.839724], [-73.945824, 40.837705]]], "type": "Polygon"}, "id": "892a100aa13ffff", "properties": {"percentile_speed_kmh": 65.31895777178796}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9421, 40.837219], [-73.943089, 40.834603], [-73.941891, 40.83545], [-73.940516, 40.834802], [-73.9421, 40.837219]]], "type": "Polygon"}, "id": "892a100aa17ffff", "properties": {"percentile_speed_kmh": 92.6774483378257}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943497, 40.826292], [-73.942674, 40.828945], [-73.943817, 40.82805], [-73.94523, 40.828639], [-73.943497, 40.826292]]], "type": "Polygon"}, "id": "892a100aa23ffff", "properties": {"percentile_speed_kmh": 54.76190476190476}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942875, 40.824176], [-73.939696, 40.825097], [-73.94125, 40.825369], [-73.94143, 40.826649], [-73.942875, 40.824176]]], "type": "Polygon"}, "id": "892a100aa27ffff", "properties": {"percentile_speed_kmh": 52.291105121293796}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948798, 40.826293], [-73.946337, 40.828166], [-73.947896, 40.827912], [-73.948693, 40.829027], [-73.948798, 40.826293]]], "type": "Polygon"}, "id": "892a100aa2bffff", "properties": {"percentile_speed_kmh": 91.50943396226415}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947497, 40.8245], [-73.944121, 40.824479], [-73.945465, 40.825167], [-73.945092, 40.826419], [-73.947497, 40.8245]]], "type": "Polygon"}, "id": "892a100aa2fffff", "properties": {"percentile_speed_kmh": 91.46451033243486}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942522, 40.829126], [-73.939996, 40.830941], [-73.941563, 40.830724], [-73.94232, 40.831857], [-73.942522, 40.829126]]], "type": "Polygon"}, "id": "892a100aa33ffff", "properties": {"percentile_speed_kmh": 89.80233602875113}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939484, 40.82639], [-73.938186, 40.828915], [-73.93948, 40.828167], [-73.94077, 40.828919], [-73.939484, 40.82639]]], "type": "Polygon"}, "id": "892a100aa37ffff", "properties": {"percentile_speed_kmh": 73.13566936208446}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945431, 40.828938], [-73.945187, 40.831667], [-73.946122, 40.830624], [-73.94764, 40.831007], [-73.945431, 40.828938]]], "type": "Polygon"}, "id": "892a100aa3bffff", "properties": {"percentile_speed_kmh": 85.3099730458221}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953268, 40.826258], [-73.950557, 40.827889], [-73.952142, 40.827782], [-73.952775, 40.828964], [-73.953268, 40.826258]]], "type": "Polygon"}, "id": "892a100aa67ffff", "properties": {"percentile_speed_kmh": 77.9424977538185}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948588, 40.830768], [-73.951964, 40.830823], [-73.95063, 40.830121], [-73.951022, 40.828873], [-73.948588, 40.830768]]], "type": "Polygon"}, "id": "892a100aa77ffff", "properties": {"percentile_speed_kmh": 65.45372866127583}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936824, 40.842375], [-73.939638, 40.840862], [-73.938048, 40.840901], [-73.937493, 40.839694], [-73.936824, 40.842375]]], "type": "Polygon"}, "id": "892a100aa83ffff", "properties": {"percentile_speed_kmh": 83.60287511230908}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940873, 40.842109], [-73.943955, 40.84099], [-73.942379, 40.840817], [-73.942076, 40.839553], [-73.940873, 40.842109]]], "type": "Polygon"}, "id": "892a100aa8bffff", "properties": {"percentile_speed_kmh": 36.253369272237194}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940998, 40.83962], [-73.940123, 40.836978], [-73.939662, 40.838211], [-73.938073, 40.838253], [-73.940998, 40.83962]]], "type": "Polygon"}, "id": "892a100aa8fffff", "properties": {"percentile_speed_kmh": 84.95058400718779}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936883, 40.842653], [-73.933996, 40.844073], [-73.935587, 40.844086], [-73.936081, 40.845311], [-73.936883, 40.842653]]], "type": "Polygon"}, "id": "892a100aa93ffff", "properties": {"percentile_speed_kmh": 83.37825696316263}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938824, 40.844804], [-73.941914, 40.8437], [-73.94034, 40.84352], [-73.940046, 40.842253], [-73.938824, 40.844804]]], "type": "Polygon"}, "id": "892a100aa9bffff", "properties": {"percentile_speed_kmh": 64.86972147349506}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931928, 40.829589], [-73.933069, 40.832164], [-73.933402, 40.830904], [-73.934982, 40.830756], [-73.931928, 40.829589]]], "type": "Polygon"}, "id": "892a100aaa7ffff", "properties": {"percentile_speed_kmh": 81.58131176999102}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.937855, 40.833154], [-73.940971, 40.834208], [-73.940048, 40.833159], [-73.940978, 40.832114], [-73.937855, 40.833154]]], "type": "Polygon"}, "id": "892a100aaabffff", "properties": {"percentile_speed_kmh": 79.96406109613656}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938827, 40.829607], [-73.935618, 40.830459], [-73.937163, 40.830764], [-73.937301, 40.832047], [-73.938827, 40.829607]]], "type": "Polygon"}, "id": "892a100aaafffff", "properties": {"percentile_speed_kmh": 72.19227313566937}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932391, 40.832325], [-73.929289, 40.833405], [-73.930861, 40.833598], [-73.93114, 40.834866], [-73.932391, 40.832325]]], "type": "Polygon"}, "id": "892a100aab7ffff", "properties": {"percentile_speed_kmh": 86.61275831087151}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938236, 40.834459], [-73.936, 40.836508], [-73.937523, 40.836139], [-73.938444, 40.837189], [-73.938236, 40.834459]]], "type": "Polygon"}, "id": "892a100aabbffff", "properties": {"percentile_speed_kmh": 74.16891284815813}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928887, 40.818199], [-73.932251, 40.817978], [-73.930837, 40.817389], [-73.931073, 40.816115], [-73.928887, 40.818199]]], "type": "Polygon"}, "id": "892a100ab03ffff", "properties": {"percentile_speed_kmh": 66.75651392632524}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929639, 40.813957], [-73.926448, 40.814847], [-73.927997, 40.815134], [-73.928159, 40.816415], [-73.929639, 40.813957]]], "type": "Polygon"}, "id": "892a100ab07ffff", "properties": {"percentile_speed_kmh": 63.16262353998203}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932968, 40.817389], [-73.936067, 40.818472], [-73.93516, 40.817415], [-73.936104, 40.816379], [-73.932968, 40.817389]]], "type": "Polygon"}, "id": "892a100ab0bffff", "properties": {"percentile_speed_kmh": 61.14106019766397}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931312, 40.813738], [-73.932482, 40.816303], [-73.932801, 40.815041], [-73.934378, 40.814881], [-73.931312, 40.813738]]], "type": "Polygon"}, "id": "892a100ab0fffff", "properties": {"percentile_speed_kmh": 78.57142857142857}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929225, 40.818876], [-73.926762, 40.820746], [-73.928321, 40.820494], [-73.929115, 40.82161], [-73.929225, 40.818876]]], "type": "Polygon"}, "id": "892a100ab13ffff", "properties": {"percentile_speed_kmh": 71.87780772686433}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926777, 40.816225], [-73.924611, 40.818323], [-73.926121, 40.81792], [-73.927076, 40.81895], [-73.926777, 40.816225]]], "type": "Polygon"}, "id": "892a100ab17ffff", "properties": {"percentile_speed_kmh": 15.633423180592992}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931308, 40.819206], [-73.932986, 40.821579], [-73.933043, 40.820292], [-73.934566, 40.819922], [-73.931308, 40.819206]]], "type": "Polygon"}, "id": "892a100ab1bffff", "properties": {"percentile_speed_kmh": 84.54627133872417}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929253, 40.810779], [-73.928217, 40.808176], [-73.927833, 40.809426], [-73.92625, 40.809532], [-73.929253, 40.810779]]], "type": "Polygon"}, "id": "892a100ab23ffff", "properties": {"percentile_speed_kmh": 45.687331536388136}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.933635, 40.808485], [-73.930525, 40.809547], [-73.932095, 40.809749], [-73.932362, 40.811018], [-73.933635, 40.808485]]], "type": "Polygon"}, "id": "892a100ab2bffff", "properties": {"percentile_speed_kmh": 61.41060197663971}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927855, 40.812393], [-73.924775, 40.811276], [-73.925665, 40.812343], [-73.924703, 40.813368], [-73.927855, 40.812393]]], "type": "Polygon"}, "id": "892a100ab33ffff", "properties": {"percentile_speed_kmh": 76.59478885893981}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925459, 40.810364], [-73.92313, 40.808384], [-73.923455, 40.809645], [-73.922085, 40.810299], [-73.925459, 40.810364]]], "type": "Polygon"}, "id": "892a100ab37ffff", "properties": {"percentile_speed_kmh": 64.28571428571428}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93166, 40.81124], [-73.928487, 40.81217], [-73.930041, 40.812437], [-73.930228, 40.813716], [-73.93166, 40.81124]]], "type": "Polygon"}, "id": "892a100ab3bffff", "properties": {"percentile_speed_kmh": 66.57681940700809}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942323, 40.818647], [-73.939529, 40.820182], [-73.941118, 40.820131], [-73.941687, 40.821333], [-73.942323, 40.818647]]], "type": "Polygon"}, "id": "892a100ab43ffff", "properties": {"percentile_speed_kmh": 44.38454627133872}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938861, 40.815827], [-73.937946, 40.81846], [-73.939119, 40.817591], [-73.940511, 40.818213], [-73.938861, 40.815827]]], "type": "Polygon"}, "id": "892a100ab47ffff", "properties": {"percentile_speed_kmh": 50.76370170709793}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946757, 40.818623], [-73.943783, 40.819917], [-73.94537, 40.819998], [-73.945784, 40.821242], [-73.946757, 40.818623]]], "type": "Polygon"}, "id": "892a100ab4bffff", "properties": {"percentile_speed_kmh": 48.1581311769991}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943351, 40.815703], [-73.942072, 40.818234], [-73.94336, 40.817479], [-73.944656, 40.818225], [-73.943351, 40.815703]]], "type": "Polygon"}, "id": "892a100ab4fffff", "properties": {"percentile_speed_kmh": 45.32794249775382}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93893, 40.82113], [-73.938257, 40.823811], [-73.939348, 40.822874], [-73.940793, 40.823411], [-73.93893, 40.82113]]], "type": "Polygon"}, "id": "892a100ab53ffff", "properties": {"percentile_speed_kmh": 48.56244384546271}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936175, 40.818692], [-73.936506, 40.821414], [-73.937208, 40.820258], [-73.938784, 40.820427], [-73.936175, 40.818692]]], "type": "Polygon"}, "id": "892a100ab57ffff", "properties": {"percentile_speed_kmh": 39.62264150943396}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945036, 40.821596], [-73.941755, 40.822243], [-73.943266, 40.822644], [-73.943281, 40.823932], [-73.945036, 40.821596]]], "type": "Polygon"}, "id": "892a100ab5bffff", "properties": {"percentile_speed_kmh": 76.05570530098832}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939734, 40.813317], [-73.939406, 40.810595], [-73.938702, 40.811749], [-73.937127, 40.81158], [-73.939734, 40.813317]]], "type": "Polygon"}, "id": "892a100ab63ffff", "properties": {"percentile_speed_kmh": 21.29380053908356}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936852, 40.807955], [-73.935196, 40.810338], [-73.936589, 40.809718], [-73.93776, 40.810589], [-73.936852, 40.807955]]], "type": "Polygon"}, "id": "892a100ab67ffff", "properties": {"percentile_speed_kmh": 19.137466307277627}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943449, 40.810436], [-73.941674, 40.812762], [-73.943097, 40.812189], [-73.944224, 40.813098], [-73.943449, 40.810436]]], "type": "Polygon"}, "id": "892a100ab6bffff", "properties": {"percentile_speed_kmh": 49.41599281221922}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941497, 40.807908], [-73.939278, 40.809969], [-73.940797, 40.809591], [-73.941726, 40.810636], [-73.941497, 40.807908]]], "type": "Polygon"}, "id": "892a100ab6fffff", "properties": {"percentile_speed_kmh": 35.08535489667565}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.937429, 40.813311], [-73.935193, 40.815359], [-73.936715, 40.81499], [-73.937635, 40.816041], [-73.937429, 40.813311]]], "type": "Polygon"}, "id": "892a100ab73ffff", "properties": {"percentile_speed_kmh": 16.531895777178796}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932863, 40.8126], [-73.936231, 40.812779], [-73.934939, 40.812029], [-73.9354, 40.810797], [-73.932863, 40.8126]]], "type": "Polygon"}, "id": "892a100ab77ffff", "properties": {"percentile_speed_kmh": 48.11320754716981}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941242, 40.81312], [-73.939738, 40.815569], [-73.941091, 40.814892], [-73.942315, 40.815713], [-73.941242, 40.81312]]], "type": "Polygon"}, "id": "892a100ab7bffff", "properties": {"percentile_speed_kmh": 62.98292902066487}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923974, 40.822994], [-73.920819, 40.822022], [-73.921783, 40.823046], [-73.920895, 40.824115], [-73.923974, 40.822994]]], "type": "Polygon"}, "id": "892a100ab83ffff", "properties": {"percentile_speed_kmh": 42.6325247079964}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.918081, 40.820476], [-73.921221, 40.821479], [-73.920272, 40.820446], [-73.921176, 40.819386], [-73.918081, 40.820476]]], "type": "Polygon"}, "id": "892a100ab87ffff", "properties": {"percentile_speed_kmh": 68.91284815813117}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926948, 40.821505], [-73.924826, 40.823632], [-73.926327, 40.823208], [-73.927304, 40.824225], [-73.926948, 40.821505]]], "type": "Polygon"}, "id": "892a100ab8bffff", "properties": {"percentile_speed_kmh": 48.78706199460916}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924832, 40.818952], [-73.922526, 40.820949], [-73.924061, 40.820615], [-73.924944, 40.821686], [-73.924832, 40.818952]]], "type": "Polygon"}, "id": "892a100ab8fffff", "properties": {"percentile_speed_kmh": 93.08176100628931}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92115, 40.824523], [-73.918309, 40.825999], [-73.919898, 40.825981], [-73.92043, 40.827195], [-73.92115, 40.824523]]], "type": "Polygon"}, "id": "892a100ab93ffff", "properties": {"percentile_speed_kmh": 92.36298292902066}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919183, 40.822125], [-73.91604, 40.823121], [-73.917602, 40.823356], [-73.917829, 40.824631], [-73.919183, 40.822125]]], "type": "Polygon"}, "id": "892a100ab97ffff", "properties": {"percentile_speed_kmh": 70.44025157232704}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923728, 40.824245], [-73.923654, 40.826979], [-73.924522, 40.8259], [-73.926062, 40.826221], [-73.923728, 40.824245]]], "type": "Polygon"}, "id": "892a100ab9bffff", "properties": {"percentile_speed_kmh": 57.097933513027854}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.920433, 40.813806], [-73.918009, 40.815709], [-73.919562, 40.815436], [-73.920379, 40.816541], [-73.920433, 40.813806]]], "type": "Polygon"}, "id": "892a100aba3ffff", "properties": {"percentile_speed_kmh": 79.24528301886792}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91912, 40.811949], [-73.915749, 40.812075], [-73.917136, 40.812704], [-73.916847, 40.81397], [-73.91912, 40.811949]]], "type": "Polygon"}, "id": "892a100aba7ffff", "properties": {"percentile_speed_kmh": 57.18778077268643}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924454, 40.81362], [-73.922412, 40.815797], [-73.923896, 40.815337], [-73.92491, 40.81633], [-73.924454, 40.81362]]], "type": "Polygon"}, "id": "892a100ababffff", "properties": {"percentile_speed_kmh": 78.79604672057502}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922305, 40.813874], [-73.922584, 40.811149], [-73.921637, 40.812183], [-73.920124, 40.811787], [-73.922305, 40.813874]]], "type": "Polygon"}, "id": "892a100abafffff", "properties": {"percentile_speed_kmh": 59.07457322551662}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.918817, 40.816715], [-73.91585, 40.818017], [-73.917436, 40.818094], [-73.917855, 40.819336], [-73.918817, 40.816715]]], "type": "Polygon"}, "id": "892a100abb3ffff", "properties": {"percentile_speed_kmh": 72.23719676549865}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.916686, 40.816348], [-73.915468, 40.813798], [-73.915173, 40.815063], [-73.9136, 40.815243], [-73.916686, 40.816348]]], "type": "Polygon"}, "id": "892a100abb7ffff", "properties": {"percentile_speed_kmh": 73.40521114106019}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923172, 40.816652], [-73.920124, 40.817827], [-73.921703, 40.817971], [-73.922042, 40.819229], [-73.923172, 40.816652]]], "type": "Polygon"}, "id": "892a100abbbffff", "properties": {"percentile_speed_kmh": 87.73584905660377}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931803, 40.824249], [-73.932767, 40.82687], [-73.933186, 40.825627], [-73.934773, 40.82555], [-73.931803, 40.824249]]], "type": "Polygon"}, "id": "892a100abc3ffff", "properties": {"percentile_speed_kmh": 69.54177897574124}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931564, 40.821501], [-73.928969, 40.82325], [-73.930543, 40.823073], [-73.931255, 40.824225], [-73.931564, 40.821501]]], "type": "Polygon"}, "id": "892a100abc7ffff", "properties": {"percentile_speed_kmh": 81.22192273135668}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936906, 40.823828], [-73.936202, 40.826503], [-73.937304, 40.825575], [-73.938743, 40.826123], [-73.936906, 40.823828]]], "type": "Polygon"}, "id": "892a100abcbffff", "properties": {"percentile_speed_kmh": 11.994609164420485}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93476, 40.821229], [-73.933882, 40.823871], [-73.935043, 40.822991], [-73.936444, 40.8236], [-73.93476, 40.821229]]], "type": "Polygon"}, "id": "892a100abcfffff", "properties": {"percentile_speed_kmh": 75.92093441150045}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929602, 40.827068], [-73.930944, 40.829578], [-73.931177, 40.828304], [-73.932741, 40.828074], [-73.929602, 40.827068]]], "type": "Polygon"}, "id": "892a100abd3ffff", "properties": {"percentile_speed_kmh": 79.87421383647799}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928256, 40.82407], [-73.927709, 40.826769], [-73.928756, 40.825799], [-73.930225, 40.826292], [-73.928256, 40.82407]]], "type": "Polygon"}, "id": "892a100abd7ffff", "properties": {"percentile_speed_kmh": 44.07008086253369}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934971, 40.826515], [-73.934076, 40.829153], [-73.935243, 40.828278], [-73.93664, 40.828893], [-73.934971, 40.826515]]], "type": "Polygon"}, "id": "892a100abdbffff", "properties": {"percentile_speed_kmh": 84.99550763701707}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.900694, 40.856426], [-73.903748, 40.855258], [-73.902169, 40.85511], [-73.901835, 40.85385], [-73.900694, 40.856426]]], "type": "Polygon"}, "id": "892a100ac03ffff", "properties": {"percentile_speed_kmh": 58.670260557053005}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901497, 40.852574], [-73.898251, 40.851819], [-73.899318, 40.852775], [-73.898543, 40.8539], [-73.901497, 40.852574]]], "type": "Polygon"}, "id": "892a100ac07ffff", "properties": {"percentile_speed_kmh": 50.22461814914645}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.907214, 40.856454], [-73.906577, 40.853766], [-73.906007, 40.85497], [-73.904418, 40.854919], [-73.907214, 40.856454]]], "type": "Polygon"}, "id": "892a100ac0bffff", "properties": {"percentile_speed_kmh": 76.90925426774483}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.905242, 40.853689], [-73.90399, 40.851148], [-73.903711, 40.852417], [-73.902139, 40.85261], [-73.905242, 40.853689]]], "type": "Polygon"}, "id": "892a100ac0fffff", "properties": {"percentile_speed_kmh": 90.16172506738545}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.898762, 40.856858], [-73.899647, 40.859499], [-73.900103, 40.858265], [-73.901692, 40.858219], [-73.898762, 40.856858]]], "type": "Polygon"}, "id": "892a100ac13ffff", "properties": {"percentile_speed_kmh": 80.3234501347709}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.899454, 40.855279], [-73.896211, 40.854517], [-73.897274, 40.855475], [-73.896496, 40.856598], [-73.899454, 40.855279]]], "type": "Polygon"}, "id": "892a100ac17ffff", "properties": {"percentile_speed_kmh": 24.438454627133872}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.897896, 40.848186], [-73.901246, 40.847843], [-73.899801, 40.847306], [-73.899966, 40.846024], [-73.897896, 40.848186]]], "type": "Polygon"}, "id": "892a100ac23ffff", "properties": {"percentile_speed_kmh": 77.67295597484276}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.895792, 40.843964], [-73.897482, 40.846333], [-73.897533, 40.845045], [-73.899054, 40.84467], [-73.895792, 40.843964]]], "type": "Polygon"}, "id": "892a100ac27ffff", "properties": {"percentile_speed_kmh": 88.76909254267744}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902385, 40.848308], [-73.905591, 40.847449], [-73.904045, 40.847147], [-73.903903, 40.845863], [-73.902385, 40.848308]]], "type": "Polygon"}, "id": "892a100ac2bffff", "properties": {"percentile_speed_kmh": 84.8158131176999}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901189, 40.843297], [-73.900496, 40.845975], [-73.901594, 40.845043], [-73.903035, 40.845588], [-73.901189, 40.843297]]], "type": "Polygon"}, "id": "892a100ac2fffff", "properties": {"percentile_speed_kmh": 84.23180592991913}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.898639, 40.849036], [-73.895617, 40.850256], [-73.8972, 40.850377], [-73.897567, 40.85163], [-73.898639, 40.849036]]], "type": "Polygon"}, "id": "892a100ac33ffff", "properties": {"percentile_speed_kmh": 85.2650494159928}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.894086, 40.846391], [-73.894961, 40.849033], [-73.895421, 40.8478], [-73.897011, 40.847757], [-73.894086, 40.846391]]], "type": "Polygon"}, "id": "892a100ac37ffff", "properties": {"percentile_speed_kmh": 69.2273135669362}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902717, 40.851284], [-73.902109, 40.848593], [-73.901527, 40.849792], [-73.899938, 40.84973], [-73.902717, 40.851284]]], "type": "Polygon"}, "id": "892a100ac3bffff", "properties": {"percentile_speed_kmh": 68.8230008984726}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910364, 40.848336], [-73.908955, 40.850822], [-73.910281, 40.850111], [-73.911537, 40.850901], [-73.910364, 40.848336]]], "type": "Polygon"}, "id": "892a100ac63ffff", "properties": {"percentile_speed_kmh": 62.309074573225516}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.906269, 40.846907], [-73.909035, 40.848477], [-73.90841, 40.847292], [-73.909594, 40.846432], [-73.906269, 40.846907]]], "type": "Polygon"}, "id": "892a100ac67ffff", "properties": {"percentile_speed_kmh": 90.88050314465409}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.913414, 40.848562], [-73.914409, 40.851177], [-73.914813, 40.849931], [-73.916399, 40.849841], [-73.913414, 40.848562]]], "type": "Polygon"}, "id": "892a100ac6bffff", "properties": {"percentile_speed_kmh": 14.240790655884995}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.913429, 40.845927], [-73.91053, 40.84733], [-73.91212, 40.847352], [-73.912603, 40.84858], [-73.913429, 40.845927]]], "type": "Polygon"}, "id": "892a100ac6fffff", "properties": {"percentile_speed_kmh": 13.2973944294699}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908768, 40.853937], [-73.909126, 40.851216], [-73.908148, 40.852232], [-73.906647, 40.851808], [-73.908768, 40.853937]]], "type": "Polygon"}, "id": "892a100ac73ffff", "properties": {"percentile_speed_kmh": 64.82479784366576}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904663, 40.848928], [-73.90609, 40.851408], [-73.906279, 40.850128], [-73.907836, 40.849864], [-73.904663, 40.848928]]], "type": "Polygon"}, "id": "892a100ac77ffff", "properties": {"percentile_speed_kmh": 77.71787960467205}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.892625, 40.859566], [-73.893087, 40.862276], [-73.893734, 40.861099], [-73.895317, 40.861218], [-73.892625, 40.859566]]], "type": "Polygon"}, "id": "892a100ac83ffff", "properties": {"percentile_speed_kmh": 64.19586702605571}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.890018, 40.857205], [-73.891304, 40.859736], [-73.891566, 40.858465], [-73.893135, 40.858258], [-73.890018, 40.857205]]], "type": "Polygon"}, "id": "892a100ac87ffff", "properties": {"percentile_speed_kmh": 64.10601976639713}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.898465, 40.862121], [-73.898603, 40.859387], [-73.897709, 40.860453], [-73.896176, 40.860109], [-73.898465, 40.862121]]], "type": "Polygon"}, "id": "892a100ac8bffff", "properties": {"percentile_speed_kmh": 56.01976639712488}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.894372, 40.859244], [-73.897418, 40.858063], [-73.895838, 40.857922], [-73.895495, 40.856664], [-73.894372, 40.859244]]], "type": "Polygon"}, "id": "892a100ac8fffff", "properties": {"percentile_speed_kmh": 57.726864330637916}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.890518, 40.862297], [-73.891114, 40.864991], [-73.891702, 40.863794], [-73.89329, 40.863861], [-73.890518, 40.862297]]], "type": "Polygon"}, "id": "892a100ac93ffff", "properties": {"percentile_speed_kmh": 34.81581311769991}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.896482, 40.862061], [-73.894106, 40.864006], [-73.895653, 40.863706], [-73.896499, 40.864797], [-73.896482, 40.862061]]], "type": "Polygon"}, "id": "892a100ac9bffff", "properties": {"percentile_speed_kmh": 10.107816711590296}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.892068, 40.8545], [-73.89334, 40.857035], [-73.893609, 40.855765], [-73.895179, 40.855564], [-73.892068, 40.8545]]], "type": "Polygon"}, "id": "892a100acbbffff", "properties": {"percentile_speed_kmh": 74.70799640610961}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.899004, 40.86212], [-73.899789, 40.864782], [-73.900291, 40.86356], [-73.901882, 40.863553], [-73.899004, 40.86212]]], "type": "Polygon"}, "id": "892a100acd7ffff", "properties": {"percentile_speed_kmh": 21.069182389937108}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.898697, 40.838945], [-73.895326, 40.839076], [-73.896715, 40.839703], [-73.896428, 40.84097], [-73.898697, 40.838945]]], "type": "Polygon"}, "id": "892a100ad43ffff", "properties": {"percentile_speed_kmh": 79.69451931716083}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.899786, 40.840256], [-73.903112, 40.839788], [-73.901638, 40.839306], [-73.901729, 40.838019], [-73.899786, 40.840256]]], "type": "Polygon"}, "id": "892a100ad4bffff", "properties": {"percentile_speed_kmh": 86.88230008984726}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.900369, 40.835821], [-73.897261, 40.836889], [-73.898832, 40.837088], [-73.899104, 40.838357], [-73.900369, 40.835821]]], "type": "Polygon"}, "id": "892a100ad4fffff", "properties": {"percentile_speed_kmh": 93.1266846361186}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.897531, 40.841754], [-73.900169, 40.843461], [-73.899637, 40.842246], [-73.900885, 40.841449], [-73.897531, 40.841754]]], "type": "Polygon"}, "id": "892a100ad5bffff", "properties": {"percentile_speed_kmh": 95.55256064690026}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.900553, 40.830975], [-73.89718, 40.83107], [-73.898558, 40.831712], [-73.898251, 40.832975], [-73.900553, 40.830975]]], "type": "Polygon"}, "id": "892a100ad6bffff", "properties": {"percentile_speed_kmh": 97.84366576819407}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.896046, 40.827604], [-73.895859, 40.830335], [-73.896771, 40.829281], [-73.898296, 40.829643], [-73.896046, 40.827604]]], "type": "Polygon"}, "id": "892a100ad6fffff", "properties": {"percentile_speed_kmh": 98.33782569631626}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.891662, 40.835688], [-73.894325, 40.834008], [-73.892745, 40.834143], [-73.892079, 40.832973], [-73.891662, 40.835688]]], "type": "Polygon"}, "id": "892a100ad73ffff", "properties": {"percentile_speed_kmh": 94.9236298292902}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.898483, 40.833629], [-73.895116, 40.833818], [-73.896521, 40.834421], [-73.896267, 40.835692], [-73.898483, 40.833629]]], "type": "Polygon"}, "id": "892a100ad7bffff", "properties": {"percentile_speed_kmh": 81.76100628930817}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.893761, 40.843647], [-73.89123, 40.845457], [-73.892797, 40.845243], [-73.89355, 40.846378], [-73.893761, 40.843647]]], "type": "Polygon"}, "id": "892a100adcbffff", "properties": {"percentile_speed_kmh": 90.25157232704402}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93114, 40.855877], [-73.933642, 40.854039], [-73.932077, 40.854271], [-73.931305, 40.853144], [-73.93114, 40.855877]]], "type": "Polygon"}, "id": "892a100ae03ffff", "properties": {"percentile_speed_kmh": 93.89038634321653}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928685, 40.853195], [-73.931465, 40.85164], [-73.929876, 40.851702], [-73.929294, 40.850503], [-73.928685, 40.853195]]], "type": "Polygon"}, "id": "892a100ae07ffff", "properties": {"percentile_speed_kmh": 88.81401617250674}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936191, 40.852944], [-73.934925, 40.855481], [-73.93621, 40.854721], [-73.93751, 40.855463], [-73.936191, 40.852944]]], "type": "Polygon"}, "id": "892a100ae0bffff", "properties": {"percentile_speed_kmh": 33.42318059299191}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934689, 40.850478], [-73.932263, 40.852382], [-73.933818, 40.852109], [-73.934635, 40.853214], [-73.934689, 40.850478]]], "type": "Polygon"}, "id": "892a100ae0fffff", "properties": {"percentile_speed_kmh": 88.36477987421384}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929742, 40.858717], [-73.931265, 40.856274], [-73.929906, 40.856944], [-73.928687, 40.856117], [-73.929742, 40.858717]]], "type": "Polygon"}, "id": "892a100ae13ffff", "properties": {"percentile_speed_kmh": 46.091644204851754}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935486, 40.856102], [-73.932337, 40.857093], [-73.9339, 40.857331], [-73.934124, 40.858607], [-73.935486, 40.856102]]], "type": "Polygon"}, "id": "892a100ae1bffff", "properties": {"percentile_speed_kmh": 20.30548068283917}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934204, 40.847985], [-73.934703, 40.845279], [-73.933673, 40.846261], [-73.932194, 40.845786], [-73.934204, 40.847985]]], "type": "Polygon"}, "id": "892a100ae2bffff", "properties": {"percentile_speed_kmh": 86.43306379155436}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940421, 40.847545], [-73.938907, 40.849991], [-73.940263, 40.849318], [-73.941486, 40.850142], [-73.940421, 40.847545]]], "type": "Polygon"}, "id": "892a100ae63ffff", "properties": {"percentile_speed_kmh": 70.93441150044923}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938589, 40.845021], [-73.936428, 40.847124], [-73.937937, 40.846718], [-73.938896, 40.847746], [-73.938589, 40.845021]]], "type": "Polygon"}, "id": "892a100ae67ffff", "properties": {"percentile_speed_kmh": 83.28840970350404}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938848, 40.850325], [-73.936603, 40.852369], [-73.938128, 40.852003], [-73.939045, 40.853056], [-73.938848, 40.850325]]], "type": "Polygon"}, "id": "892a100ae73ffff", "properties": {"percentile_speed_kmh": 27.448337825696317}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936932, 40.84786], [-73.934235, 40.849507], [-73.935819, 40.849391], [-73.936462, 40.85057], [-73.936932, 40.84786]]], "type": "Polygon"}, "id": "892a100ae77ffff", "properties": {"percentile_speed_kmh": 64.73495058400718}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926764, 40.86114], [-73.929642, 40.859708], [-73.928051, 40.859701], [-73.927548, 40.858479], [-73.926764, 40.86114]]], "type": "Polygon"}, "id": "892a100ae8bffff", "properties": {"percentile_speed_kmh": 20.21563342318059}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924979, 40.863968], [-73.927527, 40.862172], [-73.925957, 40.862377], [-73.925213, 40.861238], [-73.924979, 40.863968]]], "type": "Polygon"}, "id": "892a100ae9bffff", "properties": {"percentile_speed_kmh": 39.57771787960467}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92631, 40.720474], [-73.924051, 40.718447], [-73.924334, 40.719713], [-73.922947, 40.720336], [-73.92631, 40.720474]]], "type": "Polygon"}, "id": "892a100c26bffff", "properties": {"percentile_speed_kmh": 87.01707097933513}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89978, 40.698615], [-73.896461, 40.699069], [-73.897928, 40.699556], [-73.897829, 40.70084], [-73.89978, 40.698615]]], "type": "Polygon"}, "id": "892a100c32bffff", "properties": {"percentile_speed_kmh": 67.56513926325248}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908799, 40.709063], [-73.905442, 40.709274], [-73.90685, 40.709866], [-73.90661, 40.711138], [-73.908799, 40.709063]]], "type": "Polygon"}, "id": "892a100c343ffff", "properties": {"percentile_speed_kmh": 50.718778077268645}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.903557, 40.706187], [-73.905079, 40.708623], [-73.905216, 40.707342], [-73.906756, 40.707036], [-73.903557, 40.706187]]], "type": "Polygon"}, "id": "892a100c347ffff", "properties": {"percentile_speed_kmh": 60.91644204851752}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.913068, 40.710294], [-73.910889, 40.708213], [-73.911123, 40.709485], [-73.909712, 40.710073], [-73.913068, 40.710294]]], "type": "Polygon"}, "id": "892a100c34bffff", "properties": {"percentile_speed_kmh": 76.68463611859838}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910965, 40.707438], [-73.908322, 40.705747], [-73.908861, 40.706956], [-73.907622, 40.707759], [-73.910965, 40.707438]]], "type": "Polygon"}, "id": "892a100c34fffff", "properties": {"percentile_speed_kmh": 34.90566037735849}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.905928, 40.700748], [-73.902926, 40.701983], [-73.904505, 40.702095], [-73.904881, 40.703344], [-73.905928, 40.700748]]], "type": "Polygon"}, "id": "892a100c363ffff", "properties": {"percentile_speed_kmh": 82.70440251572327}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90392, 40.698353], [-73.900695, 40.699137], [-73.902225, 40.699474], [-73.902323, 40.700757], [-73.90392, 40.698353]]], "type": "Polygon"}, "id": "892a100c367ffff", "properties": {"percentile_speed_kmh": 17.69991015274034}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909995, 40.700512], [-73.907234, 40.702075], [-73.908817, 40.702006], [-73.909404, 40.703201], [-73.909995, 40.700512]]], "type": "Polygon"}, "id": "892a100c36bffff", "properties": {"percentile_speed_kmh": 55.84007187780772}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90852, 40.699609], [-73.905926, 40.697868], [-73.906431, 40.699088], [-73.905169, 40.699866], [-73.90852, 40.699609]]], "type": "Polygon"}, "id": "892a100c36fffff", "properties": {"percentile_speed_kmh": 65.36388140161725}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904368, 40.703963], [-73.901003, 40.704038], [-73.902372, 40.704687], [-73.902054, 40.705947], [-73.904368, 40.703963]]], "type": "Polygon"}, "id": "892a100c373ffff", "properties": {"percentile_speed_kmh": 61.18598382749326}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.900428, 40.700505], [-73.899213, 40.703052], [-73.900479, 40.702278], [-73.901788, 40.703003], [-73.900428, 40.700505]]], "type": "Polygon"}, "id": "892a100c377ffff", "properties": {"percentile_speed_kmh": 67.96945193171608}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.905866, 40.703282], [-73.906741, 40.705919], [-73.907199, 40.704688], [-73.908783, 40.704645], [-73.905866, 40.703282]]], "type": "Polygon"}, "id": "892a100c37bffff", "properties": {"percentile_speed_kmh": 44.83378256963162}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.880434, 40.747256], [-73.877162, 40.746609], [-73.878272, 40.747527], [-73.877556, 40.748675], [-73.880434, 40.747256]]], "type": "Polygon"}, "id": "892a100c443ffff", "properties": {"percentile_speed_kmh": 29.11051212938005}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.884666, 40.747763], [-73.882008, 40.746085], [-73.882557, 40.747292], [-73.881323, 40.748101], [-73.884666, 40.747763]]], "type": "Polygon"}, "id": "892a100c44bffff", "properties": {"percentile_speed_kmh": 9.074573225516621}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88245, 40.745114], [-73.879703, 40.743533], [-73.880318, 40.74472], [-73.87913, 40.745573], [-73.88245, 40.745114]]], "type": "Polygon"}, "id": "892a100c44fffff", "properties": {"percentile_speed_kmh": 58.62533692722372}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.876707, 40.748703], [-73.875225, 40.751157], [-73.876569, 40.750474], [-73.877798, 40.751288], [-73.876707, 40.748703]]], "type": "Polygon"}, "id": "892a100c453ffff", "properties": {"percentile_speed_kmh": 55.884995507637015}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.880866, 40.748588], [-73.879581, 40.751114], [-73.880869, 40.750363], [-73.882159, 40.751112], [-73.880866, 40.748588]]], "type": "Polygon"}, "id": "892a100c45bffff", "properties": {"percentile_speed_kmh": 29.245283018867923}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.860251, 40.746602], [-73.859719, 40.743903], [-73.859105, 40.74509], [-73.857523, 40.744999], [-73.860251, 40.746602]]], "type": "Polygon"}, "id": "892a100c4bbffff", "properties": {"percentile_speed_kmh": 72.37196765498652}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.874984, 40.751439], [-73.872993, 40.753643], [-73.874465, 40.753163], [-73.875498, 40.75414], [-73.874984, 40.751439]]], "type": "Polygon"}, "id": "892a100c4cbffff", "properties": {"percentile_speed_kmh": 58.35579514824798}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.865653, 40.751646], [-73.864979, 40.754324], [-73.866069, 40.753389], [-73.86751, 40.753927], [-73.865653, 40.751646]]], "type": "Polygon"}, "id": "892a100c4d7ffff", "properties": {"percentile_speed_kmh": 33.513027852650495}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.899091, 40.74536], [-73.897735, 40.742859], [-73.897511, 40.744133], [-73.895952, 40.74437], [-73.899091, 40.74536]]], "type": "Polygon"}, "id": "892a100c603ffff", "properties": {"percentile_speed_kmh": 78.34681042228212}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.903598, 40.745006], [-73.901635, 40.742785], [-73.90174, 40.744069], [-73.900274, 40.744561], [-73.903598, 40.745006]]], "type": "Polygon"}, "id": "892a100c60bffff", "properties": {"percentile_speed_kmh": 58.2210242587601}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.897551, 40.7469], [-73.894334, 40.746088], [-73.895372, 40.747061], [-73.894568, 40.748171], [-73.897551, 40.7469]]], "type": "Polygon"}, "id": "892a100c613ffff", "properties": {"percentile_speed_kmh": 47.259658580413294}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.894011, 40.745869], [-73.894375, 40.743152], [-73.893397, 40.744166], [-73.8919, 40.743739], [-73.894011, 40.745869]]], "type": "Polygon"}, "id": "892a100c617ffff", "properties": {"percentile_speed_kmh": 53.95327942497754}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.899874, 40.748397], [-73.901393, 40.745958], [-73.900038, 40.746627], [-73.898822, 40.745801], [-73.899874, 40.748397]]], "type": "Polygon"}, "id": "892a100c61bffff", "properties": {"percentile_speed_kmh": 69.76639712488769}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908228, 40.745243], [-73.90753, 40.747916], [-73.908629, 40.746988], [-73.910066, 40.747533], [-73.908228, 40.745243]]], "type": "Polygon"}, "id": "892a100c643ffff", "properties": {"percentile_speed_kmh": 49.505840071877806}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908138, 40.744272], [-73.905182, 40.74296], [-73.905962, 40.74408], [-73.904904, 40.745039], [-73.908138, 40.744272]]], "type": "Polygon"}, "id": "892a100c647ffff", "properties": {"percentile_speed_kmh": 80.18867924528301}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914431, 40.747302], [-73.912336, 40.745162], [-73.912519, 40.74644], [-73.911084, 40.74699], [-73.914431, 40.747302]]], "type": "Polygon"}, "id": "892a100c64bffff", "properties": {"percentile_speed_kmh": 70.12578616352201}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.912314, 40.744505], [-73.90983, 40.742659], [-73.910258, 40.743898], [-73.908948, 40.744625], [-73.912314, 40.744505]]], "type": "Polygon"}, "id": "892a100c64fffff", "properties": {"percentile_speed_kmh": 86.11859838274933}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.907929, 40.750336], [-73.90635, 40.747922], [-73.906242, 40.749206], [-73.904708, 40.749534], [-73.907929, 40.750336]]], "type": "Polygon"}, "id": "892a100c653ffff", "properties": {"percentile_speed_kmh": 51.34770889487871}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904731, 40.745375], [-73.902721, 40.747569], [-73.904197, 40.747096], [-73.905222, 40.748079], [-73.904731, 40.745375]]], "type": "Polygon"}, "id": "892a100c657ffff", "properties": {"percentile_speed_kmh": 54.67205750224618}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.912622, 40.749232], [-73.909467, 40.748271], [-73.910434, 40.749291], [-73.909553, 40.750362], [-73.912622, 40.749232]]], "type": "Polygon"}, "id": "892a100c65bffff", "properties": {"percentile_speed_kmh": 68.73315363881402}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904324, 40.742994], [-73.9052, 40.740356], [-73.904041, 40.741235], [-73.902643, 40.740626], [-73.904324, 40.742994]]], "type": "Polygon"}, "id": "892a100c673ffff", "properties": {"percentile_speed_kmh": 52.33602875112309}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902118, 40.740406], [-73.902939, 40.737756], [-73.901799, 40.738651], [-73.900389, 40.738061], [-73.902118, 40.740406]]], "type": "Polygon"}, "id": "892a100c677ffff", "properties": {"percentile_speed_kmh": 56.96316262353998}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89023, 40.748519], [-73.887692, 40.750315], [-73.889258, 40.750108], [-73.890002, 40.751245], [-73.89023, 40.748519]]], "type": "Polygon"}, "id": "892a100c683ffff", "properties": {"percentile_speed_kmh": 19.946091644204852}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.887414, 40.745791], [-73.885742, 40.748164], [-73.887138, 40.747552], [-73.8883, 40.748428], [-73.887414, 40.745791]]], "type": "Polygon"}, "id": "892a100c687ffff", "properties": {"percentile_speed_kmh": 11.769991015274034}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.895093, 40.748781], [-73.891879, 40.749602], [-73.893416, 40.749922], [-73.893537, 40.751205], [-73.895093, 40.748781]]], "type": "Polygon"}, "id": "892a100c68bffff", "properties": {"percentile_speed_kmh": 23.090745732255165}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.892787, 40.74816], [-73.891405, 40.745668], [-73.891194, 40.746944], [-73.889637, 40.747191], [-73.892787, 40.74816]]], "type": "Polygon"}, "id": "892a100c68fffff", "properties": {"percentile_speed_kmh": 24.258760107816713}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.888408, 40.751319], [-73.885588, 40.752815], [-73.887174, 40.752785], [-73.887718, 40.753994], [-73.888408, 40.751319]]], "type": "Polygon"}, "id": "892a100c693ffff", "properties": {"percentile_speed_kmh": 28.61635220125786}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.886471, 40.748941], [-73.883322, 40.749911], [-73.884879, 40.750158], [-73.88509, 40.751434], [-73.886471, 40.748941]]], "type": "Polygon"}, "id": "892a100c697ffff", "properties": {"percentile_speed_kmh": 27.493261455525605}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89247, 40.751105], [-73.889927, 40.752898], [-73.891493, 40.752693], [-73.892234, 40.753831], [-73.89247, 40.751105]]], "type": "Polygon"}, "id": "892a100c69bffff", "properties": {"percentile_speed_kmh": 47.79874213836478}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.886673, 40.745152], [-73.884146, 40.743346], [-73.884603, 40.744578], [-73.883311, 40.745324], [-73.886673, 40.745152]]], "type": "Polygon"}, "id": "892a100c6b3ffff", "properties": {"percentile_speed_kmh": 16.037735849056602}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.884084, 40.743063], [-73.882593, 40.740613], [-73.882439, 40.741894], [-73.880894, 40.742186], [-73.884084, 40.743063]]], "type": "Polygon"}, "id": "892a100c6b7ffff", "properties": {"percentile_speed_kmh": 18.867924528301888}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.887599, 40.743891], [-73.889788, 40.745968], [-73.889549, 40.744696], [-73.890957, 40.744104], [-73.887599, 40.743891]]], "type": "Polygon"}, "id": "892a100c6bbffff", "properties": {"percentile_speed_kmh": 25.022461814914646}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901989, 40.75252], [-73.899224, 40.750959], [-73.899852, 40.752141], [-73.898673, 40.753002], [-73.901989, 40.75252]]], "type": "Polygon"}, "id": "892a100c6c3ffff", "properties": {"percentile_speed_kmh": 68.46361185983827}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89865, 40.748246], [-73.896295, 40.750201], [-73.897836, 40.749894], [-73.898689, 40.750979], [-73.89865, 40.748246]]], "type": "Polygon"}, "id": "892a100c6c7ffff", "properties": {"percentile_speed_kmh": 50.898472596585805}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.906283, 40.751847], [-73.902999, 40.751233], [-73.904124, 40.75214], [-73.903425, 40.753296], [-73.906283, 40.751847]]], "type": "Polygon"}, "id": "892a100c6cbffff", "properties": {"percentile_speed_kmh": 83.64779874213836}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904018, 40.749154], [-73.900687, 40.748741], [-73.901893, 40.749577], [-73.901303, 40.750772], [-73.904018, 40.749154]]], "type": "Polygon"}, "id": "892a100c6cfffff", "properties": {"percentile_speed_kmh": 68.64330637915543}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89997, 40.754669], [-73.896693, 40.754033], [-73.897808, 40.754948], [-73.897098, 40.756098], [-73.89997, 40.754669]]], "type": "Polygon"}, "id": "892a100c6d3ffff", "properties": {"percentile_speed_kmh": 70.21563342318059}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.896864, 40.751045], [-73.894165, 40.752681], [-73.895746, 40.752571], [-73.896381, 40.75375], [-73.896864, 40.751045]]], "type": "Polygon"}, "id": "892a100c6d7ffff", "properties": {"percentile_speed_kmh": 40.296495956873315}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904255, 40.754967], [-73.90132, 40.753625], [-73.902083, 40.754753], [-73.901009, 40.755701], [-73.904255, 40.754967]]], "type": "Polygon"}, "id": "892a100c6dbffff", "properties": {"percentile_speed_kmh": 77.13387241689128}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955879, 40.743169], [-73.959232, 40.743455], [-73.957978, 40.742665], [-73.958499, 40.741449], [-73.955879, 40.743169]]], "type": "Polygon"}, "id": "892a100d003ffff", "properties": {"percentile_speed_kmh": 19.99101527403414}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955071, 40.741622], [-73.956884, 40.739319], [-73.955453, 40.739874], [-73.954344, 40.738953], [-73.955071, 40.741622]]], "type": "Polygon"}, "id": "892a100d007ffff", "properties": {"percentile_speed_kmh": 10.062893081761006}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962691, 40.743969], [-73.962511, 40.74124], [-73.961746, 40.742368], [-73.960183, 40.742142], [-73.962691, 40.743969]]], "type": "Polygon"}, "id": "892a100d00bffff", "properties": {"percentile_speed_kmh": 45.14824797843666}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959459, 40.74152], [-73.96109, 40.739129], [-73.959705, 40.739757], [-73.958527, 40.738895], [-73.959459, 40.74152]]], "type": "Polygon"}, "id": "892a100d00fffff", "properties": {"percentile_speed_kmh": 11.500449236298293}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955384, 40.743978], [-73.954458, 40.746605], [-73.955634, 40.745741], [-73.957021, 40.746367], [-73.955384, 40.743978]]], "type": "Polygon"}, "id": "892a100d013ffff", "properties": {"percentile_speed_kmh": 18.283917340521114}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952457, 40.744151], [-73.95511, 40.742467], [-73.953532, 40.742606], [-73.952864, 40.741439], [-73.952457, 40.744151]]], "type": "Polygon"}, "id": "892a100d017ffff", "properties": {"percentile_speed_kmh": 23.315363881401616}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961415, 40.746116], [-73.959457, 40.743892], [-73.959559, 40.745176], [-73.958091, 40.745666], [-73.961415, 40.746116]]], "type": "Polygon"}, "id": "892a100d01bffff", "properties": {"percentile_speed_kmh": 43.486073674752916}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953387, 40.735129], [-73.956671, 40.735742], [-73.955545, 40.734835], [-73.956243, 40.73368], [-73.953387, 40.735129]]], "type": "Polygon"}, "id": "892a100d023ffff", "properties": {"percentile_speed_kmh": 46.94519317160827}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953685, 40.730949], [-73.951245, 40.732833], [-73.952799, 40.732571], [-73.953603, 40.733681], [-73.953685, 40.730949]]], "type": "Polygon"}, "id": "892a100d027ffff", "properties": {"percentile_speed_kmh": 71.74303683737647}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959854, 40.733326], [-73.957922, 40.735564], [-73.959381, 40.735059], [-73.96044, 40.736017], [-73.959854, 40.733326]]], "type": "Polygon"}, "id": "892a100d02bffff", "properties": {"percentile_speed_kmh": 17.29559748427673}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958043, 40.730867], [-73.955488, 40.732648], [-73.957056, 40.732451], [-73.95779, 40.733591], [-73.958043, 40.730867]]], "type": "Polygon"}, "id": "892a100d02fffff", "properties": {"percentile_speed_kmh": 42.00359389038634}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952879, 40.739044], [-73.954617, 40.736703], [-73.953204, 40.73729], [-73.952066, 40.736393], [-73.952879, 40.739044]]], "type": "Polygon"}, "id": "892a100d033ffff", "properties": {"percentile_speed_kmh": 71.60826594788858}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951527, 40.73639], [-73.951689, 40.733661], [-73.950788, 40.73472], [-73.949261, 40.734368], [-73.951527, 40.73639]]], "type": "Polygon"}, "id": "892a100d037ffff", "properties": {"percentile_speed_kmh": 89.62264150943396}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957168, 40.738932], [-73.958883, 40.736579], [-73.957476, 40.737175], [-73.956329, 40.736285], [-73.957168, 40.738932]]], "type": "Polygon"}, "id": "892a100d03bffff", "properties": {"percentile_speed_kmh": 35.534591194968556}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968537, 40.746579], [-73.969623, 40.743992], [-73.968395, 40.744808], [-73.967048, 40.744127], [-73.968537, 40.746579]]], "type": "Polygon"}, "id": "892a100d043ffff", "properties": {"percentile_speed_kmh": 81.98562443845462}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967615, 40.743432], [-73.96596, 40.741052], [-73.965892, 40.742337], [-73.964368, 40.742697], [-73.967615, 40.743432]]], "type": "Polygon"}, "id": "892a100d047ffff", "properties": {"percentile_speed_kmh": 20.530098831985622}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972255, 40.746423], [-73.974257, 40.744225], [-73.972782, 40.744701], [-73.971753, 40.743721], [-73.972255, 40.746423]]], "type": "Polygon"}, "id": "892a100d04bffff", "properties": {"percentile_speed_kmh": 48.742138364779876}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970747, 40.743864], [-73.971521, 40.741205], [-73.970396, 40.742113], [-73.968974, 40.74154], [-73.970747, 40.743864]]], "type": "Polygon"}, "id": "892a100d04fffff", "properties": {"percentile_speed_kmh": 76.72955974842768}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96698, 40.749199], [-73.967182, 40.746471], [-73.966264, 40.747522], [-73.964743, 40.747155], [-73.96698, 40.749199]]], "type": "Polygon"}, "id": "892a100d053ffff", "properties": {"percentile_speed_kmh": 78.75112309074574}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96551, 40.746197], [-73.964031, 40.743742], [-73.96387, 40.745022], [-73.962323, 40.745309], [-73.96551, 40.746197]]], "type": "Polygon"}, "id": "892a100d057ffff", "properties": {"percentile_speed_kmh": 26.10062893081761}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969962, 40.749053], [-73.972345, 40.74712], [-73.970799, 40.747413], [-73.96996, 40.74632], [-73.969962, 40.749053]]], "type": "Polygon"}, "id": "892a100d05bffff", "properties": {"percentile_speed_kmh": 63.38724168912848}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967604, 40.737902], [-73.965401, 40.735834], [-73.965648, 40.737105], [-73.964243, 40.737703], [-73.967604, 40.737902]]], "type": "Polygon"}, "id": "892a100d063ffff", "properties": {"percentile_speed_kmh": 29.784366576819405}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964472, 40.736008], [-73.964393, 40.733276], [-73.963587, 40.734385], [-73.962034, 40.734121], [-73.964472, 40.736008]]], "type": "Polygon"}, "id": "892a100d067ffff", "properties": {"percentile_speed_kmh": 71.38364779874213}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971248, 40.73836], [-73.970621, 40.735676], [-73.970049, 40.736876], [-73.968463, 40.736821], [-73.971248, 40.73836]]], "type": "Polygon"}, "id": "892a100d06bffff", "properties": {"percentile_speed_kmh": 25.202156334231805}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969061, 40.735748], [-73.968319, 40.733083], [-73.967799, 40.734299], [-73.966212, 40.734289], [-73.969061, 40.735748]]], "type": "Polygon"}, "id": "892a100d06fffff", "properties": {"percentile_speed_kmh": 34.63611859838275}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96406, 40.741412], [-73.965141, 40.738824], [-73.963915, 40.739641], [-73.962567, 40.738962], [-73.96406, 40.741412]]], "type": "Polygon"}, "id": "892a100d073ffff", "properties": {"percentile_speed_kmh": 36.073674752920034}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962372, 40.738728], [-73.962423, 40.735996], [-73.961565, 40.737078], [-73.960025, 40.736767], [-73.962372, 40.738728]]], "type": "Polygon"}, "id": "892a100d077ffff", "properties": {"percentile_speed_kmh": 29.02066486972147}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969655, 40.740728], [-73.967986, 40.738354], [-73.967926, 40.73964], [-73.966404, 40.740006], [-73.969655, 40.740728]]], "type": "Polygon"}, "id": "892a100d07bffff", "properties": {"percentile_speed_kmh": 29.155435759209343}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94751, 40.748614], [-73.950842, 40.749024], [-73.949635, 40.748189], [-73.950224, 40.746994], [-73.94751, 40.748614]]], "type": "Polygon"}, "id": "892a100d083ffff", "properties": {"percentile_speed_kmh": 22.866127583108714}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94876, 40.746172], [-73.94626, 40.74434], [-73.946698, 40.745577], [-73.945394, 40.74631], [-73.94876, 40.746172]]], "type": "Polygon"}, "id": "892a100d087ffff", "properties": {"percentile_speed_kmh": 24.303683737646}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951953, 40.74885], [-73.955305, 40.748567], [-73.953877, 40.748004], [-73.954076, 40.746728], [-73.951953, 40.74885]]], "type": "Polygon"}, "id": "892a100d08bffff", "properties": {"percentile_speed_kmh": 19.856244384546272}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949841, 40.74643], [-73.953119, 40.745793], [-73.951612, 40.745388], [-73.951603, 40.744101], [-73.949841, 40.74643]]], "type": "Polygon"}, "id": "892a100d08fffff", "properties": {"percentile_speed_kmh": 15.40880503144654}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948748, 40.75012], [-73.945451, 40.750688], [-73.946944, 40.751125], [-73.946911, 40.752412], [-73.948748, 40.75012]]], "type": "Polygon"}, "id": "892a100d093ffff", "properties": {"percentile_speed_kmh": 60.01796945193171}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946328, 40.749392], [-73.944957, 40.746895], [-73.94474, 40.74817], [-73.943182, 40.748413], [-73.946328, 40.749392]]], "type": "Polygon"}, "id": "892a100d097ffff", "properties": {"percentile_speed_kmh": 31.266846361185983}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953308, 40.751138], [-73.950513, 40.74961], [-73.951163, 40.750785], [-73.949999, 40.75166], [-73.953308, 40.751138]]], "type": "Polygon"}, "id": "892a100d09bffff", "properties": {"percentile_speed_kmh": 43.93530997304582}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945857, 40.74164], [-73.94862, 40.740076], [-73.947035, 40.740145], [-73.946447, 40.73895], [-73.945857, 40.74164]]], "type": "Polygon"}, "id": "892a100d0a3ffff", "properties": {"percentile_speed_kmh": 85.08535489667565}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944708, 40.739287], [-73.945812, 40.736705], [-73.944579, 40.737515], [-73.943237, 40.736828], [-73.944708, 40.739287]]], "type": "Polygon"}, "id": "892a100d0a7ffff", "properties": {"percentile_speed_kmh": 90.3414195867026}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950658, 40.741712], [-73.952685, 40.739529], [-73.951205, 40.739994], [-73.950188, 40.739006], [-73.950658, 40.741712]]], "type": "Polygon"}, "id": "892a100d0abffff", "properties": {"percentile_speed_kmh": 76.23539982030547}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95051, 40.738352], [-73.948291, 40.736295], [-73.948548, 40.737565], [-73.947147, 40.73817], [-73.95051, 40.738352]]], "type": "Polygon"}, "id": "892a100d0afffff", "properties": {"percentile_speed_kmh": 81.1769991015274}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942981, 40.74316], [-73.946151, 40.744088], [-73.945167, 40.743078], [-73.946031, 40.741999], [-73.942981, 40.74316]]], "type": "Polygon"}, "id": "892a100d0b3ffff", "properties": {"percentile_speed_kmh": 73.31536388140161}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940934, 40.739846], [-73.943139, 40.741912], [-73.94289, 40.740641], [-73.944295, 40.740042], [-73.940934, 40.739846]]], "type": "Polygon"}, "id": "892a100d0b7ffff", "properties": {"percentile_speed_kmh": 93.35130278526505}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948354, 40.744335], [-73.950773, 40.742433], [-73.949223, 40.742706], [-73.948406, 40.741603], [-73.948354, 40.744335]]], "type": "Polygon"}, "id": "892a100d0bbffff", "properties": {"percentile_speed_kmh": 50.35938903863432}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961737, 40.75122], [-73.959424, 40.749232], [-73.959739, 40.750493], [-73.958367, 40.75114], [-73.961737, 40.75122]]], "type": "Polygon"}, "id": "892a100d0c3ffff", "properties": {"percentile_speed_kmh": 46.316262353998205}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959359, 40.74884], [-73.957459, 40.746583], [-73.957527, 40.747869], [-73.956047, 40.748334], [-73.959359, 40.74884]]], "type": "Polygon"}, "id": "892a100d0c7ffff", "properties": {"percentile_speed_kmh": 55.9748427672956}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965551, 40.751612], [-73.964468, 40.749024], [-73.964108, 40.750277], [-73.962528, 40.750402], [-73.965551, 40.751612]]], "type": "Polygon"}, "id": "892a100d0cbffff", "properties": {"percentile_speed_kmh": 34.276729559748425}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963666, 40.748686], [-73.961678, 40.746479], [-73.961796, 40.747762], [-73.960335, 40.748264], [-73.963666, 40.748686]]], "type": "Polygon"}, "id": "892a100d0cfffff", "properties": {"percentile_speed_kmh": 50.494159928122194}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959684, 40.753948], [-73.957425, 40.751919], [-73.957707, 40.753186], [-73.956317, 40.753808], [-73.959684, 40.753948]]], "type": "Polygon"}, "id": "892a100d0d3ffff", "properties": {"percentile_speed_kmh": 20.889487870619945}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957061, 40.751795], [-73.955832, 40.74925], [-73.955543, 40.750516], [-73.953972, 40.7507], [-73.957061, 40.751795]]], "type": "Polygon"}, "id": "892a100d0d7ffff", "properties": {"percentile_speed_kmh": 40.34141958670261}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964009, 40.753742], [-73.961586, 40.751841], [-73.961973, 40.75309], [-73.960638, 40.753787], [-73.964009, 40.753742]]], "type": "Polygon"}, "id": "892a100d0dbffff", "properties": {"percentile_speed_kmh": 25.606469002695416}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943747, 40.724381], [-73.940445, 40.72384], [-73.9416, 40.724722], [-73.94094, 40.725892], [-73.943747, 40.724381]]], "type": "Polygon"}, "id": "892a100d103ffff", "properties": {"percentile_speed_kmh": 23.76460017969452}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940802, 40.720892], [-73.937918, 40.722304], [-73.939504, 40.72232], [-73.939993, 40.723544], [-73.940802, 40.720892]]], "type": "Polygon"}, "id": "892a100d107ffff", "properties": {"percentile_speed_kmh": 34.54627133872417}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948053, 40.72449], [-73.944889, 40.723551], [-73.945867, 40.724564], [-73.944997, 40.72564], [-73.948053, 40.72449]]], "type": "Polygon"}, "id": "892a100d10bffff", "properties": {"percentile_speed_kmh": 33.37825696316262}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945735, 40.721531], [-73.942381, 40.721279], [-73.943645, 40.722056], [-73.943144, 40.723276], [-73.945735, 40.721531]]], "type": "Polygon"}, "id": "892a100d10fffff", "properties": {"percentile_speed_kmh": 14.824797843665769}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941741, 40.727467], [-73.938727, 40.726246], [-73.939558, 40.727342], [-73.938545, 40.728331], [-73.941741, 40.727467]]], "type": "Polygon"}, "id": "892a100d113ffff", "properties": {"percentile_speed_kmh": 96.3162623539982}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945799, 40.727953], [-73.943676, 40.725831], [-73.943875, 40.727108], [-73.942448, 40.72767], [-73.945799, 40.727953]]], "type": "Polygon"}, "id": "892a100d11bffff", "properties": {"percentile_speed_kmh": 10.871518418688229}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940617, 40.717982], [-73.93977, 40.715338], [-73.939299, 40.716566], [-73.937713, 40.716598], [-73.940617, 40.717982]]], "type": "Polygon"}, "id": "892a100d123ffff", "properties": {"percentile_speed_kmh": 45.73225516621743}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938697, 40.715151], [-73.937093, 40.712749], [-73.936998, 40.714033], [-73.935468, 40.714372], [-73.938697, 40.715151]]], "type": "Polygon"}, "id": "892a100d127ffff", "properties": {"percentile_speed_kmh": 51.57232704402516}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944679, 40.715397], [-73.942038, 40.717092], [-73.943614, 40.716947], [-73.944289, 40.71811], [-73.944679, 40.715397]]], "type": "Polygon"}, "id": "892a100d12bffff", "properties": {"percentile_speed_kmh": 42.857142857142854}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94308, 40.714913], [-73.941179, 40.712659], [-73.941249, 40.713944], [-73.93977, 40.714409], [-73.94308, 40.714913]]], "type": "Polygon"}, "id": "892a100d12fffff", "properties": {"percentile_speed_kmh": 48.47259658580413}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93895, 40.720377], [-73.93721, 40.718037], [-73.937189, 40.719324], [-73.93568, 40.71972], [-73.93895, 40.720377]]], "type": "Polygon"}, "id": "892a100d133ffff", "properties": {"percentile_speed_kmh": 90.20664869721473}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936601, 40.717904], [-73.935148, 40.71544], [-73.934974, 40.716718], [-73.933425, 40.716995], [-73.936601, 40.717904]]], "type": "Polygon"}, "id": "892a100d137ffff", "properties": {"percentile_speed_kmh": 90.56603773584905}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94257, 40.718062], [-73.940027, 40.719854], [-73.941593, 40.71965], [-73.942334, 40.720787], [-73.94257, 40.718062]]], "type": "Polygon"}, "id": "892a100d13bffff", "properties": {"percentile_speed_kmh": 31.536388140161723}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954311, 40.727775], [-73.952293, 40.725588], [-73.95243, 40.726869], [-73.950976, 40.727385], [-73.954311, 40.727775]]], "type": "Polygon"}, "id": "892a100d143ffff", "properties": {"percentile_speed_kmh": 38.81401617250674}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952257, 40.724846], [-73.949622, 40.723144], [-73.950155, 40.724356], [-73.94891, 40.725153], [-73.952257, 40.724846]]], "type": "Polygon"}, "id": "892a100d147ffff", "properties": {"percentile_speed_kmh": 36.2084456424079}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956996, 40.725427], [-73.955743, 40.727963], [-73.957021, 40.727202], [-73.958321, 40.727939], [-73.956996, 40.725427]]], "type": "Polygon"}, "id": "892a100d14bffff", "properties": {"percentile_speed_kmh": 62.75831087151842}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955952, 40.723191], [-73.952962, 40.724451], [-73.954544, 40.724549], [-73.954936, 40.725796], [-73.955952, 40.723191]]], "type": "Polygon"}, "id": "892a100d14fffff", "properties": {"percentile_speed_kmh": 55.0314465408805}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952355, 40.730353], [-73.950098, 40.728324], [-73.950379, 40.729591], [-73.94899, 40.730213], [-73.952355, 40.730353]]], "type": "Polygon"}, "id": "892a100d153ffff", "properties": {"percentile_speed_kmh": 57.502246181491465}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949923, 40.728028], [-73.948221, 40.72567], [-73.948179, 40.726956], [-73.946663, 40.727336], [-73.949923, 40.728028]]], "type": "Polygon"}, "id": "892a100d157ffff", "properties": {"percentile_speed_kmh": 43.71069182389937}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956798, 40.729742], [-73.953819, 40.728465], [-73.954619, 40.729576], [-73.953578, 40.730547], [-73.956798, 40.729742]]], "type": "Polygon"}, "id": "892a100d15bffff", "properties": {"percentile_speed_kmh": 36.657681940700805}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952125, 40.719134], [-73.948993, 40.718128], [-73.949937, 40.719162], [-73.949033, 40.720219], [-73.952125, 40.719134]]], "type": "Polygon"}, "id": "892a100d163ffff", "properties": {"percentile_speed_kmh": 52.78526504941599}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949657, 40.717294], [-73.947565, 40.715152], [-73.947746, 40.71643], [-73.946311, 40.716979], [-73.949657, 40.717294]]], "type": "Polygon"}, "id": "892a100d167ffff", "properties": {"percentile_speed_kmh": 54.31266846361186}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956235, 40.718431], [-73.952868, 40.718523], [-73.954243, 40.719165], [-73.953935, 40.720427], [-73.956235, 40.718431]]], "type": "Polygon"}, "id": "892a100d16bffff", "properties": {"percentile_speed_kmh": 48.876909254267744}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953888, 40.717236], [-73.951917, 40.715021], [-73.952027, 40.716305], [-73.950563, 40.7168], [-73.953888, 40.717236]]], "type": "Polygon"}, "id": "892a100d16fffff", "properties": {"percentile_speed_kmh": 48.96675651392633}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950005, 40.721409], [-73.946649, 40.721172], [-73.947919, 40.721943], [-73.947426, 40.723166], [-73.950005, 40.721409]]], "type": "Polygon"}, "id": "892a100d173ffff", "properties": {"percentile_speed_kmh": 55.39083557951482}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947403, 40.7183], [-73.94421, 40.71917], [-73.945754, 40.719466], [-73.945904, 40.720746], [-73.947403, 40.7183]]], "type": "Polygon"}, "id": "892a100d177ffff", "properties": {"percentile_speed_kmh": 24.977538185085354}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953901, 40.720756], [-73.95072, 40.721655], [-73.952268, 40.721937], [-73.952435, 40.723216], [-73.953901, 40.720756]]], "type": "Polygon"}, "id": "892a100d17bffff", "properties": {"percentile_speed_kmh": 60.287511230907455}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939126, 40.728976], [-73.936064, 40.730115], [-73.937638, 40.730277], [-73.937953, 40.731538], [-73.939126, 40.728976]]], "type": "Polygon"}, "id": "892a100d18bffff", "properties": {"percentile_speed_kmh": 92.58760107816711}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.937397, 40.733539], [-73.935437, 40.731317], [-73.93554, 40.732601], [-73.934073, 40.733092], [-73.937397, 40.733539]]], "type": "Polygon"}, "id": "892a100d19bffff", "properties": {"percentile_speed_kmh": 94.429469901168}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946173, 40.732869], [-73.943439, 40.731272], [-73.944043, 40.732462], [-73.942847, 40.733307], [-73.946173, 40.732869]]], "type": "Polygon"}, "id": "892a100d1c3ffff", "properties": {"percentile_speed_kmh": 92.27313566936208}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942345, 40.731417], [-73.943311, 40.7288], [-73.942123, 40.729652], [-73.940746, 40.729012], [-73.942345, 40.731417]]], "type": "Polygon"}, "id": "892a100d1c7ffff", "properties": {"percentile_speed_kmh": 93.21653189577718}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948723, 40.733893], [-73.949925, 40.731341], [-73.948662, 40.73212], [-73.947347, 40.731399], [-73.948723, 40.733893]]], "type": "Polygon"}, "id": "892a100d1cbffff", "properties": {"percentile_speed_kmh": 89.66756513926325}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947868, 40.730746], [-73.946217, 40.728364], [-73.946147, 40.729649], [-73.944623, 40.730008], [-73.947868, 40.730746]]], "type": "Polygon"}, "id": "892a100d1cfffff", "properties": {"percentile_speed_kmh": 56.51392632524708}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943353, 40.736468], [-73.942743, 40.733781], [-73.942164, 40.734979], [-73.940579, 40.734918], [-73.943353, 40.736468]]], "type": "Polygon"}, "id": "892a100d1d3ffff", "properties": {"percentile_speed_kmh": 85.80413297394429}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941067, 40.733909], [-73.94056, 40.731208], [-73.939935, 40.73239], [-73.938353, 40.73229], [-73.941067, 40.733909]]], "type": "Polygon"}, "id": "892a100d1d7ffff", "properties": {"percentile_speed_kmh": 87.42138364779873}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94728, 40.736496], [-73.947387, 40.733765], [-73.946508, 40.734836], [-73.944975, 40.734504], [-73.94728, 40.736496]]], "type": "Polygon"}, "id": "892a100d1dbffff", "properties": {"percentile_speed_kmh": 84.45642407906558}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988112, 40.743351], [-73.988389, 40.740628], [-73.987443, 40.741662], [-73.985932, 40.741267], [-73.988112, 40.743351]]], "type": "Polygon"}, "id": "892a100d203ffff", "properties": {"percentile_speed_kmh": 32.92902066486972}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986314, 40.740597], [-73.985686, 40.737913], [-73.985114, 40.739113], [-73.983528, 40.739059], [-73.986314, 40.740597]]], "type": "Polygon"}, "id": "892a100d207ffff", "properties": {"percentile_speed_kmh": 37.511230907457325}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991336, 40.743251], [-73.993422, 40.741104], [-73.991929, 40.741543], [-73.990938, 40.740538], [-73.991336, 40.743251]]], "type": "Polygon"}, "id": "892a100d20bffff", "properties": {"percentile_speed_kmh": 42.318059299191376}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99053, 40.740512], [-73.990028, 40.73781], [-73.989401, 40.738991], [-73.987818, 40.738888], [-73.99053, 40.740512]]], "type": "Polygon"}, "id": "892a100d20fffff", "properties": {"percentile_speed_kmh": 41.41958670260557}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985463, 40.74612], [-73.986851, 40.74363], [-73.985532, 40.744346], [-73.984272, 40.743564], [-73.985463, 40.74612]]], "type": "Polygon"}, "id": "892a100d213ffff", "properties": {"percentile_speed_kmh": 42.138364779874216}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983715, 40.743495], [-73.984224, 40.740794], [-73.983193, 40.741772], [-73.981719, 40.741293], [-73.983715, 40.743495]]], "type": "Polygon"}, "id": "892a100d217ffff", "properties": {"percentile_speed_kmh": 41.50943396226415}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989124, 40.745901], [-73.991471, 40.74394], [-73.989931, 40.744251], [-73.989072, 40.743169], [-73.989124, 40.745901]]], "type": "Polygon"}, "id": "892a100d21bffff", "properties": {"percentile_speed_kmh": 45.4177897574124}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986447, 40.735083], [-73.985035, 40.732602], [-73.984839, 40.733879], [-73.983284, 40.734138], [-73.986447, 40.735083]]], "type": "Polygon"}, "id": "892a100d223ffff", "properties": {"percentile_speed_kmh": 26.954177897574123}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983413, 40.732907], [-73.98371, 40.730186], [-73.982757, 40.731214], [-73.981249, 40.730813], [-73.983413, 40.732907]]], "type": "Polygon"}, "id": "892a100d227ffff", "properties": {"percentile_speed_kmh": 32.61455525606469}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990387, 40.735197], [-73.989747, 40.732515], [-73.98918, 40.733717], [-73.987594, 40.733667], [-73.990387, 40.735197]]], "type": "Polygon"}, "id": "892a100d22bffff", "properties": {"percentile_speed_kmh": 28.4366576819407}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988538, 40.732331], [-73.986981, 40.729908], [-73.986861, 40.731191], [-73.985323, 40.73151], [-73.988538, 40.732331]]], "type": "Polygon"}, "id": "892a100d22fffff", "properties": {"percentile_speed_kmh": 30.008984725965856}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984407, 40.737786], [-73.98301, 40.7353], [-73.982806, 40.736576], [-73.98125, 40.736829], [-73.984407, 40.737786]]], "type": "Polygon"}, "id": "892a100d233ffff", "properties": {"percentile_speed_kmh": 31.042228212039532}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981032, 40.735665], [-73.981974, 40.733041], [-73.980793, 40.733901], [-73.97941, 40.733269], [-73.981032, 40.735665]]], "type": "Polygon"}, "id": "892a100d237ffff", "properties": {"percentile_speed_kmh": 47.97843665768194}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988409, 40.737865], [-73.987646, 40.735203], [-73.987135, 40.736421], [-73.985548, 40.73642], [-73.988409, 40.737865]]], "type": "Polygon"}, "id": "892a100d23bffff", "properties": {"percentile_speed_kmh": 36.882300089847256}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996573, 40.743949], [-73.9993, 40.745556], [-73.998702, 40.744364], [-73.999903, 40.743522], [-73.996573, 40.743949]]], "type": "Polygon"}, "id": "892a100d243ffff", "properties": {"percentile_speed_kmh": 42.94699011680144}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994337, 40.742077], [-73.997674, 40.742467], [-73.996459, 40.741639], [-73.997037, 40.74044], [-73.994337, 40.742077]]], "type": "Polygon"}, "id": "892a100d247ffff", "properties": {"percentile_speed_kmh": 36.477987421383645}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.002629, 40.7427], [-74.001328, 40.745221], [-74.002621, 40.744474], [-74.003909, 40.745228], [-74.002629, 40.7427]]], "type": "Polygon"}, "id": "892a100d24bffff", "properties": {"percentile_speed_kmh": 40.97035040431267}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998556, 40.741596], [-74.001671, 40.742641], [-74.000745, 40.741596], [-74.001671, 40.74055], [-73.998556, 40.741596]]], "type": "Polygon"}, "id": "892a100d24fffff", "properties": {"percentile_speed_kmh": 49.73045822102426}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995059, 40.748068], [-73.998138, 40.746952], [-73.996564, 40.746779], [-73.996263, 40.745515], [-73.995059, 40.748068]]], "type": "Polygon"}, "id": "892a100d253ffff", "properties": {"percentile_speed_kmh": 43.98023360287511}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992281, 40.744694], [-73.995586, 40.745236], [-73.99443, 40.744354], [-73.99509, 40.743183], [-73.992281, 40.744694]]], "type": "Polygon"}, "id": "892a100d257ffff", "properties": {"percentile_speed_kmh": 32.5696316262354}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001346, 40.745531], [-73.99888, 40.747396], [-74.000438, 40.747147], [-74.001229, 40.748262], [-74.001346, 40.745531]]], "type": "Polygon"}, "id": "892a100d25bffff", "properties": {"percentile_speed_kmh": 51.61725067385444}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995781, 40.737906], [-73.997267, 40.735453], [-73.99592, 40.736135], [-73.994692, 40.73532], [-73.995781, 40.737906]]], "type": "Polygon"}, "id": "892a100d263ffff", "properties": {"percentile_speed_kmh": 44.24977538185085}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994879, 40.734945], [-73.993749, 40.732371], [-73.993411, 40.733628], [-73.991834, 40.733772], [-73.994879, 40.734945]]], "type": "Polygon"}, "id": "892a100d267ffff", "properties": {"percentile_speed_kmh": 35.04043126684636}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998509, 40.736924], [-74.001879, 40.736836], [-74.000504, 40.736192], [-74.000816, 40.734931], [-73.998509, 40.736924]]], "type": "Polygon"}, "id": "892a100d26bffff", "properties": {"percentile_speed_kmh": 44.56424079065589}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996723, 40.734841], [-73.999751, 40.73364], [-73.998172, 40.73351], [-73.997817, 40.732256], [-73.996723, 40.734841]]], "type": "Polygon"}, "id": "892a100d26fffff", "properties": {"percentile_speed_kmh": 35.75920934411501}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.993782, 40.740606], [-73.995211, 40.738131], [-73.99388, 40.738833], [-73.992633, 40.738037], [-73.993782, 40.740606]]], "type": "Polygon"}, "id": "892a100d273ffff", "properties": {"percentile_speed_kmh": 40.3863432165319}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992485, 40.737849], [-73.99215, 40.735131], [-73.99145, 40.736286], [-73.989876, 40.736119], [-73.992485, 40.737849]]], "type": "Polygon"}, "id": "892a100d277ffff", "properties": {"percentile_speed_kmh": 40.61096136567834}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996833, 40.740046], [-73.999963, 40.739031], [-73.9984, 40.738806], [-73.998161, 40.737534], [-73.996833, 40.740046]]], "type": "Polygon"}, "id": "892a100d27bffff", "properties": {"percentile_speed_kmh": 40.700808625336926}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979609, 40.748899], [-73.980188, 40.746207], [-73.979131, 40.747167], [-73.97767, 40.746664], [-73.979609, 40.748899]]], "type": "Polygon"}, "id": "892a100d283ffff", "properties": {"percentile_speed_kmh": 50.31446540880503}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976799, 40.746345], [-73.978375, 40.743929], [-73.977004, 40.744578], [-73.975806, 40.743734], [-73.976799, 40.746345]]], "type": "Polygon"}, "id": "892a100d287ffff", "properties": {"percentile_speed_kmh": 51.52740341419587}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983349, 40.748815], [-73.984871, 40.746377], [-73.983514, 40.747046], [-73.982297, 40.746219], [-73.983349, 40.748815]]], "type": "Polygon"}, "id": "892a100d28bffff", "properties": {"percentile_speed_kmh": 42.45283018867924}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980477, 40.746099], [-73.982959, 40.744249], [-73.981399, 40.744489], [-73.980618, 40.743369], [-73.980477, 40.746099]]], "type": "Polygon"}, "id": "892a100d28fffff", "properties": {"percentile_speed_kmh": 49.19137466307278}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978142, 40.75141], [-73.977588, 40.748714], [-73.976983, 40.749904], [-73.975398, 40.749821], [-73.978142, 40.75141]]], "type": "Polygon"}, "id": "892a100d293ffff", "properties": {"percentile_speed_kmh": 33.692722371967655}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975856, 40.748848], [-73.975398, 40.746141], [-73.974751, 40.747316], [-73.97317, 40.747196], [-73.975856, 40.748848]]], "type": "Polygon"}, "id": "892a100d297ffff", "properties": {"percentile_speed_kmh": 45.37286612758311}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981029, 40.751478], [-73.983006, 40.749264], [-73.981536, 40.749752], [-73.980495, 40.74878], [-73.981029, 40.751478]]], "type": "Polygon"}, "id": "892a100d29bffff", "properties": {"percentile_speed_kmh": 26.864330637915543}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976271, 40.741015], [-73.978354, 40.738867], [-73.976862, 40.739306], [-73.97587, 40.738302], [-73.976271, 40.741015]]], "type": "Polygon"}, "id": "892a100d2a3ffff", "properties": {"percentile_speed_kmh": 58.265947888589395}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974612, 40.738485], [-73.975749, 40.735913], [-73.974506, 40.736713], [-73.973173, 40.736014], [-73.974612, 40.738485]]], "type": "Polygon"}, "id": "892a100d2a7ffff", "properties": {"percentile_speed_kmh": 61.455525606469}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982142, 40.740654], [-73.981286, 40.738011], [-73.980818, 40.73924], [-73.979231, 40.739275], [-73.982142, 40.740654]]], "type": "Polygon"}, "id": "892a100d2abffff", "properties": {"percentile_speed_kmh": 45.283018867924525}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97824, 40.738301], [-73.980421, 40.736218], [-73.97891, 40.736611], [-73.977965, 40.735577], [-73.97824, 40.738301]]], "type": "Polygon"}, "id": "892a100d2afffff", "properties": {"percentile_speed_kmh": 63.83647798742138}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97443, 40.743748], [-73.976213, 40.74143], [-73.974789, 40.741998], [-73.973668, 40.741087], [-73.97443, 40.743748]]], "type": "Polygon"}, "id": "892a100d2b3ffff", "properties": {"percentile_speed_kmh": 49.77538185085355}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972506, 40.741185], [-73.973767, 40.738651], [-73.972486, 40.739411], [-73.971187, 40.73867], [-73.972506, 40.741185]]], "type": "Polygon"}, "id": "892a100d2b7ffff", "properties": {"percentile_speed_kmh": 69.58670260557052}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979436, 40.743611], [-73.979953, 40.740911], [-73.978918, 40.741887], [-73.977446, 40.741406], [-73.979436, 40.743611]]], "type": "Polygon"}, "id": "892a100d2bbffff", "properties": {"percentile_speed_kmh": 47.214734950584}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988225, 40.750139], [-73.99155, 40.750594], [-73.990359, 40.749742], [-73.990973, 40.748555], [-73.988225, 40.750139]]], "type": "Polygon"}, "id": "892a100d2c3ffff", "properties": {"percentile_speed_kmh": 33.60287511230907}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98698, 40.748561], [-73.989481, 40.746728], [-73.987919, 40.746958], [-73.987149, 40.745832], [-73.98698, 40.748561]]], "type": "Polygon"}, "id": "892a100d2c7ffff", "properties": {"percentile_speed_kmh": 50.58400718778077}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992562, 40.749193], [-73.995059, 40.75103], [-73.994623, 40.749792], [-73.99593, 40.749061], [-73.992562, 40.749193]]], "type": "Polygon"}, "id": "892a100d2cbffff", "properties": {"percentile_speed_kmh": 37.151841868823}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990291, 40.747538], [-73.993647, 40.747807], [-73.992387, 40.747024], [-73.992899, 40.745805], [-73.990291, 40.747538]]], "type": "Polygon"}, "id": "892a100d2cfffff", "properties": {"percentile_speed_kmh": 42.04851752021563}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9862, 40.752144], [-73.988903, 40.753778], [-73.988323, 40.75258], [-73.989537, 40.75175], [-73.9862, 40.752144]]], "type": "Polygon"}, "id": "892a100d2d3ffff", "properties": {"percentile_speed_kmh": 26.81940700808625}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984536, 40.751044], [-73.987548, 40.749815], [-73.985966, 40.7497], [-73.985594, 40.748449], [-73.984536, 40.751044]]], "type": "Polygon"}, "id": "892a100d2d7ffff", "properties": {"percentile_speed_kmh": 33.82749326145552}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990425, 40.752501], [-73.993628, 40.753357], [-73.99261, 40.75237], [-73.993437, 40.751271], [-73.990425, 40.752501]]], "type": "Polygon"}, "id": "892a100d2dbffff", "properties": {"percentile_speed_kmh": 41.01527403414196}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973206, 40.724873], [-73.971811, 40.722386], [-73.971606, 40.723662], [-73.97005, 40.723914], [-73.973206, 40.724873]]], "type": "Polygon"}, "id": "892a100d303ffff", "properties": {"percentile_speed_kmh": 48.292902066486974}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971278, 40.72192], [-73.969028, 40.719887], [-73.969305, 40.721153], [-73.967913, 40.721772], [-73.971278, 40.72192]]], "type": "Polygon"}, "id": "892a100d307ffff", "properties": {"percentile_speed_kmh": 60.33243486073675}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977637, 40.7246], [-73.975835, 40.722292], [-73.975848, 40.723578], [-73.974349, 40.724001], [-73.977637, 40.7246]]], "type": "Polygon"}, "id": "892a100d30bffff", "properties": {"percentile_speed_kmh": 23.000898472596585}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975406, 40.722008], [-73.973581, 40.719711], [-73.973607, 40.720998], [-73.972113, 40.72143], [-73.975406, 40.722008]]], "type": "Polygon"}, "id": "892a100d30fffff", "properties": {"percentile_speed_kmh": 59.20934411500449}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971452, 40.727251], [-73.969299, 40.725149], [-73.969516, 40.726424], [-73.968096, 40.726999], [-73.971452, 40.727251]]], "type": "Polygon"}, "id": "892a100d313ffff", "properties": {"percentile_speed_kmh": 41.82389937106918}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969248, 40.72461], [-73.966983, 40.722587], [-73.967269, 40.723853], [-73.965883, 40.724478], [-73.969248, 40.72461]]], "type": "Polygon"}, "id": "892a100d317ffff", "properties": {"percentile_speed_kmh": 63.52201257861635}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975875, 40.726825], [-73.973196, 40.725168], [-73.97376, 40.726371], [-73.972536, 40.72719], [-73.975875, 40.726825]]], "type": "Polygon"}, "id": "892a100d31bffff", "properties": {"percentile_speed_kmh": 20.485175202156334}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971109, 40.716575], [-73.96874, 40.714632], [-73.969092, 40.715886], [-73.96774, 40.716559], [-73.971109, 40.716575]]], "type": "Polygon"}, "id": "892a100d323ffff", "properties": {"percentile_speed_kmh": 94.51931716082659}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968972, 40.713728], [-73.966198, 40.712178], [-73.966833, 40.713357], [-73.965659, 40.714223], [-73.968972, 40.713728]]], "type": "Polygon"}, "id": "892a100d327ffff", "properties": {"percentile_speed_kmh": 70.53009883198563}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975375, 40.716473], [-73.973029, 40.714512], [-73.973366, 40.715769], [-73.972006, 40.716431], [-73.975375, 40.716473]]], "type": "Polygon"}, "id": "892a100d32bffff", "properties": {"percentile_speed_kmh": 93.44115004492363}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973273, 40.713478], [-73.970334, 40.712142], [-73.9711, 40.713269], [-73.97003, 40.714218], [-73.973273, 40.713478]]], "type": "Polygon"}, "id": "892a100d32fffff", "properties": {"percentile_speed_kmh": 90.70080862533692}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968925, 40.719502], [-73.967012, 40.717253], [-73.967088, 40.718538], [-73.965611, 40.719008], [-73.968925, 40.719502]]], "type": "Polygon"}, "id": "892a100d333ffff", "properties": {"percentile_speed_kmh": 94.83378256963162}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966921, 40.716487], [-73.96423, 40.714842], [-73.964803, 40.716042], [-73.963584, 40.716866], [-73.966921, 40.716487]]], "type": "Polygon"}, "id": "892a100d337ffff", "properties": {"percentile_speed_kmh": 68.28391734052111}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973375, 40.719103], [-73.970913, 40.717238], [-73.971326, 40.71848], [-73.970007, 40.719195], [-73.973375, 40.719103]]], "type": "Polygon"}, "id": "892a100d33bffff", "properties": {"percentile_speed_kmh": 73.45013477088949}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983894, 40.727304], [-73.982737, 40.724739], [-73.982413, 40.725998], [-73.980838, 40.726153], [-73.983894, 40.727304]]], "type": "Polygon"}, "id": "892a100d343ffff", "properties": {"percentile_speed_kmh": 21.38364779874214}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981813, 40.724587], [-73.980267, 40.72216], [-73.980141, 40.723443], [-73.978602, 40.723757], [-73.981813, 40.724587]]], "type": "Polygon"}, "id": "892a100d347ffff", "properties": {"percentile_speed_kmh": 16.082659478885894}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9884, 40.726979], [-73.986663, 40.724638], [-73.98664, 40.725924], [-73.98513, 40.726319], [-73.9884, 40.726979]]], "type": "Polygon"}, "id": "892a100d34bffff", "properties": {"percentile_speed_kmh": 30.68283917340521}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986362, 40.724115], [-73.984035, 40.722139], [-73.98436, 40.723398], [-73.982992, 40.724052], [-73.986362, 40.724115]]], "type": "Polygon"}, "id": "892a100d34fffff", "properties": {"percentile_speed_kmh": 21.428571428571427}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981292, 40.73029], [-73.981356, 40.727559], [-73.980493, 40.728639], [-73.978954, 40.728322], [-73.981292, 40.73029]]], "type": "Polygon"}, "id": "892a100d353ffff", "properties": {"percentile_speed_kmh": 18.373764600179694}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979595, 40.727439], [-73.978497, 40.724855], [-73.978144, 40.72611], [-73.976566, 40.726241], [-73.979595, 40.727439]]], "type": "Polygon"}, "id": "892a100d357ffff", "properties": {"percentile_speed_kmh": 17.20575022461815}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986007, 40.729973], [-73.985142, 40.727333], [-73.984679, 40.728563], [-73.983092, 40.728602], [-73.986007, 40.729973]]], "type": "Polygon"}, "id": "892a100d35bffff", "properties": {"percentile_speed_kmh": 28.57142857142857}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981797, 40.719086], [-73.979733, 40.716927], [-73.979897, 40.718207], [-73.978455, 40.718743], [-73.981797, 40.719086]]], "type": "Polygon"}, "id": "892a100d363ffff", "properties": {"percentile_speed_kmh": 51.93171608265948}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979527, 40.716545], [-73.977551, 40.714333], [-73.977663, 40.715616], [-73.9762, 40.716114], [-73.979527, 40.716545]]], "type": "Polygon"}, "id": "892a100d367ffff", "properties": {"percentile_speed_kmh": 89.4878706199461}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986307, 40.718326], [-73.983277, 40.717132], [-73.984123, 40.71822], [-73.983122, 40.719219], [-73.986307, 40.718326]]], "type": "Polygon"}, "id": "892a100d36bffff", "properties": {"percentile_speed_kmh": 20.799640610961365}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984041, 40.715921], [-73.98121, 40.71444], [-73.981888, 40.715602], [-73.980747, 40.716496], [-73.984041, 40.715921]]], "type": "Polygon"}, "id": "892a100d36fffff", "properties": {"percentile_speed_kmh": 45.01347708894878}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979761, 40.721788], [-73.977705, 40.719624], [-73.977864, 40.720904], [-73.976419, 40.721436], [-73.979761, 40.721788]]], "type": "Polygon"}, "id": "892a100d373ffff", "properties": {"percentile_speed_kmh": 37.42138364779874}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977624, 40.719037], [-73.975246, 40.717102], [-73.975604, 40.718355], [-73.974255, 40.719032], [-73.977624, 40.719037]]], "type": "Polygon"}, "id": "892a100d377ffff", "properties": {"percentile_speed_kmh": 78.3917340521114}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984137, 40.721503], [-73.981757, 40.719569], [-73.982116, 40.720822], [-73.980768, 40.7215], [-73.984137, 40.721503]]], "type": "Polygon"}, "id": "892a100d37bffff", "properties": {"percentile_speed_kmh": 22.551662174303683}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964435, 40.730658], [-73.96401, 40.727948], [-73.963349, 40.729117], [-73.961771, 40.728985], [-73.964435, 40.730658]]], "type": "Polygon"}, "id": "892a100d383ffff", "properties": {"percentile_speed_kmh": 82.79424977538184}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963115, 40.726783], [-73.959995, 40.725751], [-73.960926, 40.726793], [-73.960008, 40.727842], [-73.963115, 40.726783]]], "type": "Polygon"}, "id": "892a100d387ffff", "properties": {"percentile_speed_kmh": 88.94878706199461}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968911, 40.730434], [-73.968046, 40.727794], [-73.967583, 40.729024], [-73.965996, 40.729063], [-73.968911, 40.730434]]], "type": "Polygon"}, "id": "892a100d38bffff", "properties": {"percentile_speed_kmh": 41.105121293800536}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966762, 40.727792], [-73.965691, 40.725201], [-73.965325, 40.726453], [-73.963745, 40.726574], [-73.966762, 40.727792]]], "type": "Polygon"}, "id": "892a100d38fffff", "properties": {"percentile_speed_kmh": 78.61635220125785}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963093, 40.732784], [-73.960986, 40.730652], [-73.961175, 40.73193], [-73.959744, 40.732485], [-73.963093, 40.732784]]], "type": "Polygon"}, "id": "892a100d393ffff", "properties": {"percentile_speed_kmh": 28.840970350404312}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961023, 40.729854], [-73.958325, 40.728218], [-73.958903, 40.729416], [-73.957688, 40.730244], [-73.961023, 40.729854]]], "type": "Polygon"}, "id": "892a100d397ffff", "properties": {"percentile_speed_kmh": 59.6136567834681}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966613, 40.733268], [-73.966316, 40.730547], [-73.965601, 40.731695], [-73.96403, 40.731514], [-73.966613, 40.733268]]], "type": "Polygon"}, "id": "892a100d39bffff", "properties": {"percentile_speed_kmh": 74.57322551662175}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96259, 40.720675], [-73.959294, 40.72124], [-73.960786, 40.721678], [-73.960753, 40.722964], [-73.96259, 40.720675]]], "type": "Polygon"}, "id": "892a100d3a3ffff", "properties": {"percentile_speed_kmh": 70.70979335130278}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957587, 40.719995], [-73.960671, 40.718897], [-73.959101, 40.718715], [-73.95881, 40.71745], [-73.957587, 40.719995]]], "type": "Polygon"}, "id": "892a100d3a7ffff", "properties": {"percentile_speed_kmh": 28.930817610062892}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966864, 40.722232], [-73.965026, 40.719943], [-73.965059, 40.721229], [-73.963568, 40.721667], [-73.966864, 40.722232]]], "type": "Polygon"}, "id": "892a100d3abffff", "properties": {"percentile_speed_kmh": 79.42497753818509}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961298, 40.718838], [-73.964431, 40.719842], [-73.963486, 40.718809], [-73.964389, 40.717751], [-73.961298, 40.718838]]], "type": "Polygon"}, "id": "892a100d3afffff", "properties": {"percentile_speed_kmh": 37.01707097933513}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959484, 40.722772], [-73.957494, 40.724976], [-73.958966, 40.724496], [-73.959999, 40.725472], [-73.959484, 40.722772]]], "type": "Polygon"}, "id": "892a100d3b3ffff", "properties": {"percentile_speed_kmh": 79.38005390835579}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957766, 40.720365], [-73.955041, 40.721971], [-73.956623, 40.721878], [-73.957239, 40.723063], [-73.957766, 40.720365]]], "type": "Polygon"}, "id": "892a100d3b7ffff", "properties": {"percentile_speed_kmh": 41.77897574123989}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964953, 40.723427], [-73.961593, 40.723632], [-73.963, 40.724227], [-73.962757, 40.725498], [-73.964953, 40.723427]]], "type": "Polygon"}, "id": "892a100d3bbffff", "properties": {"percentile_speed_kmh": 86.02875112309074}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975561, 40.732809], [-73.974383, 40.730249], [-73.974069, 40.731511], [-73.972495, 40.731675], [-73.975561, 40.732809]]], "type": "Polygon"}, "id": "892a100d3c3ffff", "properties": {"percentile_speed_kmh": 51.482479784366575}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973469, 40.730101], [-73.971929, 40.727671], [-73.9718, 40.728953], [-73.97026, 40.729265], [-73.973469, 40.730101]]], "type": "Polygon"}, "id": "892a100d3c7ffff", "properties": {"percentile_speed_kmh": 29.065588499550763}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979201, 40.733006], [-73.979378, 40.730277], [-73.978471, 40.731333], [-73.976946, 40.730975], [-73.979201, 40.733006]]], "type": "Polygon"}, "id": "892a100d3cbffff", "properties": {"percentile_speed_kmh": 28.30188679245283}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977569, 40.730131], [-73.976452, 40.727553], [-73.976109, 40.728809], [-73.974531, 40.728948], [-73.977569, 40.730131]]], "type": "Polygon"}, "id": "892a100d3cfffff", "properties": {"percentile_speed_kmh": 32.16531895777179}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97338, 40.735607], [-73.972539, 40.732961], [-73.972064, 40.734189], [-73.970478, 40.734218], [-73.97338, 40.735607]]], "type": "Polygon"}, "id": "892a100d3d3ffff", "properties": {"percentile_speed_kmh": 36.38814016172507}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971209, 40.73298], [-73.970212, 40.73037], [-73.969811, 40.731615], [-73.968228, 40.731706], [-73.971209, 40.73298]]], "type": "Polygon"}, "id": "892a100d3d7ffff", "properties": {"percentile_speed_kmh": 43.35130278526505}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976702, 40.735784], [-73.977742, 40.733185], [-73.976529, 40.734015], [-73.97517, 40.73335], [-73.976702, 40.735784]]], "type": "Polygon"}, "id": "892a100d3dbffff", "properties": {"percentile_speed_kmh": 39.66756513926325}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945165, 40.76136], [-73.941864, 40.760805], [-73.943014, 40.761692], [-73.942347, 40.76286], [-73.945165, 40.76136]]], "type": "Polygon"}, "id": "892a100d403ffff", "properties": {"percentile_speed_kmh": 75.47169811320755}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94243, 40.758012], [-73.939309, 40.759044], [-73.940874, 40.75926], [-73.941123, 40.760532], [-73.94243, 40.758012]]], "type": "Polygon"}, "id": "892a100d407ffff", "properties": {"percentile_speed_kmh": 82.25516621743037}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949452, 40.761293], [-73.946175, 40.760652], [-73.947289, 40.761569], [-73.946575, 40.762718], [-73.949452, 40.761293]]], "type": "Polygon"}, "id": "892a100d40bffff", "properties": {"percentile_speed_kmh": 65.00449236298293}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947181, 40.759295], [-73.944469, 40.757671], [-73.945056, 40.758867], [-73.943847, 40.759701], [-73.947181, 40.759295]]], "type": "Polygon"}, "id": "892a100d40fffff", "properties": {"percentile_speed_kmh": 85.93890386343216}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94315, 40.764177], [-73.939914, 40.763407], [-73.940972, 40.764367], [-73.940191, 40.765487], [-73.94315, 40.764177]]], "type": "Polygon"}, "id": "892a100d413ffff", "properties": {"percentile_speed_kmh": 58.80503144654088}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940835, 40.761304], [-73.937476, 40.761069], [-73.938748, 40.76184], [-73.938255, 40.763064], [-73.940835, 40.761304]]], "type": "Polygon"}, "id": "892a100d417ffff", "properties": {"percentile_speed_kmh": 85.39982030548069}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947369, 40.763819], [-73.94402, 40.763499], [-73.945261, 40.764302], [-73.944722, 40.765512], [-73.947369, 40.763819]]], "type": "Polygon"}, "id": "892a100d41bffff", "properties": {"percentile_speed_kmh": 20.619946091644206}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942755, 40.75373], [-73.939607, 40.752753], [-73.940567, 40.753778], [-73.939677, 40.754844], [-73.942755, 40.75373]]], "type": "Polygon"}, "id": "892a100d423ffff", "properties": {"percentile_speed_kmh": 85.13027852650494}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94046, 40.75082], [-73.937123, 40.750431], [-73.938339, 40.751259], [-73.937762, 40.752458], [-73.94046, 40.75082]]], "type": "Polygon"}, "id": "892a100d427ffff", "properties": {"percentile_speed_kmh": 34.501347708894876}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947031, 40.753604], [-73.943873, 40.752647], [-73.944843, 40.753666], [-73.943964, 40.754738], [-73.947031, 40.753604]]], "type": "Polygon"}, "id": "892a100d42bffff", "properties": {"percentile_speed_kmh": 80.59299191374663}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944785, 40.750937], [-73.941566, 40.750126], [-73.942605, 40.751099], [-73.941802, 40.752209], [-73.944785, 40.750937]]], "type": "Polygon"}, "id": "892a100d42fffff", "properties": {"percentile_speed_kmh": 49.82030548068284}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940297, 40.755522], [-73.937077, 40.756333], [-73.938613, 40.756657], [-73.938727, 40.757941], [-73.940297, 40.755522]]], "type": "Polygon"}, "id": "892a100d433ffff", "properties": {"percentile_speed_kmh": 79.73944294699011}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938352, 40.75334], [-73.934981, 40.753295], [-73.936316, 40.753992], [-73.935929, 40.755241], [-73.938352, 40.75334]]], "type": "Polygon"}, "id": "892a100d437ffff", "properties": {"percentile_speed_kmh": 79.91913746630728}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944981, 40.756174], [-73.941733, 40.755444], [-73.942808, 40.75639], [-73.942048, 40.75752], [-73.944981, 40.756174]]], "type": "Polygon"}, "id": "892a100d43bffff", "properties": {"percentile_speed_kmh": 83.82749326145553}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955988, 40.764084], [-73.952959, 40.762884], [-73.953803, 40.763974], [-73.952799, 40.764972], [-73.955988, 40.764084]]], "type": "Polygon"}, "id": "892a100d443ffff", "properties": {"percentile_speed_kmh": 51.03324348607367}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95369, 40.761026], [-73.950347, 40.760668], [-73.951574, 40.761485], [-73.951013, 40.762689], [-73.95369, 40.761026]]], "type": "Polygon"}, "id": "892a100d447ffff", "properties": {"percentile_speed_kmh": 52.066486972147345}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96002, 40.763132], [-73.956679, 40.763503], [-73.958129, 40.764028], [-73.957981, 40.765309], [-73.96002, 40.763132]]], "type": "Polygon"}, "id": "892a100d44bffff", "properties": {"percentile_speed_kmh": 38.095238095238095}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957994, 40.761007], [-73.954687, 40.760471], [-73.955846, 40.761351], [-73.955188, 40.762523], [-73.957994, 40.761007]]], "type": "Polygon"}, "id": "892a100d44fffff", "properties": {"percentile_speed_kmh": 37.78077268643306}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95393, 40.766448], [-73.950645, 40.765831], [-73.95177, 40.76674], [-73.951069, 40.767895], [-73.95393, 40.766448]]], "type": "Polygon"}, "id": "892a100d453ffff", "properties": {"percentile_speed_kmh": 10.78167115902965}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95165, 40.763717], [-73.948304, 40.763374], [-73.949538, 40.764185], [-73.948986, 40.765392], [-73.95165, 40.763717]]], "type": "Polygon"}, "id": "892a100d457ffff", "properties": {"percentile_speed_kmh": 52.60557053009883}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958106, 40.766036], [-73.954734, 40.765986], [-73.956068, 40.766685], [-73.955678, 40.767933], [-73.958106, 40.766036]]], "type": "Polygon"}, "id": "892a100d45bffff", "properties": {"percentile_speed_kmh": 43.21653189577718}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953458, 40.756583], [-73.950896, 40.754808], [-73.951376, 40.756034], [-73.950097, 40.756797], [-73.953458, 40.756583]]], "type": "Polygon"}, "id": "892a100d463ffff", "properties": {"percentile_speed_kmh": 92.00359389038634}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951276, 40.753265], [-73.947975, 40.75271], [-73.949125, 40.753597], [-73.948458, 40.754765], [-73.951276, 40.753265]]], "type": "Polygon"}, "id": "892a100d467ffff", "properties": {"percentile_speed_kmh": 84.90566037735849}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957571, 40.756764], [-73.955545, 40.754579], [-73.955686, 40.755861], [-73.954233, 40.75638], [-73.957571, 40.756764]]], "type": "Polygon"}, "id": "892a100d46bffff", "properties": {"percentile_speed_kmh": 19.09254267744834}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955477, 40.753927], [-73.952982, 40.75209], [-73.953416, 40.753327], [-73.95211, 40.754058], [-73.955477, 40.753927]]], "type": "Polygon"}, "id": "892a100d46fffff", "properties": {"percentile_speed_kmh": 70.35040431266846}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951473, 40.759125], [-73.948686, 40.757588], [-73.949329, 40.758764], [-73.948161, 40.759636], [-73.951473, 40.759125]]], "type": "Polygon"}, "id": "892a100d473ffff", "properties": {"percentile_speed_kmh": 85.44474393530997}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94926, 40.756076], [-73.946022, 40.755317], [-73.947084, 40.756273], [-73.946308, 40.757395], [-73.94926, 40.756076]]], "type": "Polygon"}, "id": "892a100d477ffff", "properties": {"percentile_speed_kmh": 94.56424079065589}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955737, 40.758363], [-73.952406, 40.757939], [-73.953609, 40.758779], [-73.953012, 40.759972], [-73.955737, 40.758363]]], "type": "Polygon"}, "id": "892a100d47bffff", "properties": {"percentile_speed_kmh": 6.738544474393531}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936836, 40.767004], [-73.933611, 40.766208], [-73.934657, 40.767176], [-73.933861, 40.76829], [-73.936836, 40.767004]]], "type": "Polygon"}, "id": "892a100d483ffff", "properties": {"percentile_speed_kmh": 41.15004492362983}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934552, 40.764208], [-73.931219, 40.763798], [-73.932427, 40.764634], [-73.931838, 40.765829], [-73.934552, 40.764208]]], "type": "Polygon"}, "id": "892a100d487ffff", "properties": {"percentile_speed_kmh": 69.31716082659479}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941085, 40.766736], [-73.937774, 40.766219], [-73.93894, 40.767093], [-73.938293, 40.768269], [-73.941085, 40.766736]]], "type": "Polygon"}, "id": "892a100d48bffff", "properties": {"percentile_speed_kmh": 27.538185085354897}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938279, 40.76335], [-73.935236, 40.764526], [-73.936814, 40.764669], [-73.937153, 40.765926], [-73.938279, 40.76335]]], "type": "Polygon"}, "id": "892a100d48fffff", "properties": {"percentile_speed_kmh": 72.0125786163522}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934736, 40.769438], [-73.931386, 40.769129], [-73.932631, 40.769928], [-73.932098, 40.77114], [-73.934736, 40.769438]]], "type": "Polygon"}, "id": "892a100d493ffff", "properties": {"percentile_speed_kmh": 48.65229110512129}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.930709, 40.765782], [-73.929476, 40.768326], [-73.930749, 40.767557], [-73.932056, 40.768288], [-73.930709, 40.765782]]], "type": "Polygon"}, "id": "892a100d497ffff", "properties": {"percentile_speed_kmh": 27.088948787061994}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938996, 40.770188], [-73.936429, 40.768415], [-73.936913, 40.769641], [-73.935635, 40.770405], [-73.938996, 40.770188]]], "type": "Polygon"}, "id": "892a100d49bffff", "properties": {"percentile_speed_kmh": 26.32524707996406}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.933396, 40.757957], [-73.930849, 40.759748], [-73.932417, 40.759545], [-73.933157, 40.760683], [-73.933396, 40.757957]]], "type": "Polygon"}, "id": "892a100d4a3ffff", "properties": {"percentile_speed_kmh": 72.911051212938}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931929, 40.755968], [-73.928583, 40.756299], [-73.930023, 40.756841], [-73.929852, 40.758121], [-73.931929, 40.755968]]], "type": "Polygon"}, "id": "892a100d4a7ffff", "properties": {"percentile_speed_kmh": 76.63971248876909}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.937521, 40.757789], [-73.935185, 40.759759], [-73.936724, 40.759442], [-73.937588, 40.760521], [-73.937521, 40.757789]]], "type": "Polygon"}, "id": "892a100d4abffff", "properties": {"percentile_speed_kmh": 79.64959568733154}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93595, 40.755571], [-73.932794, 40.756533], [-73.934351, 40.756784], [-73.934557, 40.75806], [-73.93595, 40.755571]]], "type": "Polygon"}, "id": "892a100d4afffff", "properties": {"percentile_speed_kmh": 74.66307277628032}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.930817, 40.760516], [-73.929072, 40.762854], [-73.930487, 40.762271], [-73.931623, 40.76317], [-73.930817, 40.760516]]], "type": "Polygon"}, "id": "892a100d4b3ffff", "properties": {"percentile_speed_kmh": 57.36747529200359}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929377, 40.758198], [-73.926501, 40.759624], [-73.928088, 40.759633], [-73.928587, 40.760855], [-73.929377, 40.758198]]], "type": "Polygon"}, "id": "892a100d4b7ffff", "properties": {"percentile_speed_kmh": 63.20754716981132}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936337, 40.761044], [-73.93303, 40.761574], [-73.934515, 40.762029], [-73.934461, 40.763315], [-73.936337, 40.761044]]], "type": "Polygon"}, "id": "892a100d4bbffff", "properties": {"percentile_speed_kmh": 70.6648697214735}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947628, 40.769338], [-73.944388, 40.768583], [-73.945452, 40.769538], [-73.944678, 40.770662], [-73.947628, 40.769338]]], "type": "Polygon"}, "id": "892a100d4c3ffff", "properties": {"percentile_speed_kmh": 55.660377358490564}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9454, 40.766908], [-73.942274, 40.765883], [-73.94321, 40.766922], [-73.942295, 40.767974], [-73.9454, 40.766908]]], "type": "Polygon"}, "id": "892a100d4c7ffff", "properties": {"percentile_speed_kmh": 26.774483378256964}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951614, 40.768573], [-73.948304, 40.769096], [-73.949789, 40.769554], [-73.94973, 40.77084], [-73.951614, 40.768573]]], "type": "Polygon"}, "id": "892a100d4cbffff", "properties": {"percentile_speed_kmh": 58.93980233602875}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949677, 40.76681], [-73.946565, 40.765757], [-73.947488, 40.766805], [-73.946559, 40.767849], [-73.949677, 40.76681]]], "type": "Polygon"}, "id": "892a100d4cfffff", "properties": {"percentile_speed_kmh": 36.97214734950584}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943264, 40.769138], [-73.939898, 40.768969], [-73.941192, 40.769714], [-73.940736, 40.770947], [-73.943264, 40.769138]]], "type": "Polygon"}, "id": "892a100d4d7ffff", "properties": {"percentile_speed_kmh": 40.071877807726864}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949228, 40.770956], [-73.946237, 40.772218], [-73.947821, 40.772316], [-73.948214, 40.773563], [-73.949228, 40.770956]]], "type": "Polygon"}, "id": "892a100d4dbffff", "properties": {"percentile_speed_kmh": 48.697214734950585}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929522, 40.743632], [-73.926489, 40.742443], [-73.927337, 40.74353], [-73.92634, 40.744531], [-73.929522, 40.743632]]], "type": "Polygon"}, "id": "892a100d503ffff", "properties": {"percentile_speed_kmh": 35.44474393530997}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926099, 40.742349], [-73.926223, 40.739618], [-73.925337, 40.740686], [-73.923806, 40.740347], [-73.926099, 40.742349]]], "type": "Polygon"}, "id": "892a100d507ffff", "properties": {"percentile_speed_kmh": 27.807726864330636}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.933789, 40.743603], [-73.930843, 40.742275], [-73.931614, 40.7434], [-73.930548, 40.744353], [-73.933789, 40.743603]]], "type": "Polygon"}, "id": "892a100d50bffff", "properties": {"percentile_speed_kmh": 37.6010781671159}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931472, 40.741309], [-73.928913, 40.739531], [-73.929392, 40.740758], [-73.928113, 40.741519], [-73.931472, 40.741309]]], "type": "Polygon"}, "id": "892a100d50fffff", "properties": {"percentile_speed_kmh": 77.088948787062}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927488, 40.74623], [-73.924362, 40.745209], [-73.925299, 40.746247], [-73.924387, 40.7473], [-73.927488, 40.74623]]], "type": "Polygon"}, "id": "892a100d513ffff", "properties": {"percentile_speed_kmh": 86.52291105121293}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92525, 40.743659], [-73.922135, 40.742616], [-73.923062, 40.743661], [-73.922138, 40.744707], [-73.92525, 40.743659]]], "type": "Polygon"}, "id": "892a100d517ffff", "properties": {"percentile_speed_kmh": 25.78616352201258}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93172, 40.746452], [-73.92896, 40.744884], [-73.929583, 40.746067], [-73.928401, 40.746925], [-73.93172, 40.746452]]], "type": "Polygon"}, "id": "892a100d51bffff", "properties": {"percentile_speed_kmh": 74.21383647798741}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921916, 40.739407], [-73.925049, 40.738404], [-73.923488, 40.738173], [-73.923257, 40.7369], [-73.921916, 40.739407]]], "type": "Polygon"}, "id": "892a100d533ffff", "properties": {"percentile_speed_kmh": 21.248876909254268}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926794, 40.736903], [-73.926813, 40.739635], [-73.927643, 40.738538], [-73.92919, 40.738824], [-73.926794, 40.736903]]], "type": "Polygon"}, "id": "892a100d53bffff", "properties": {"percentile_speed_kmh": 94.0251572327044}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939748, 40.744832], [-73.936667, 40.745941], [-73.938239, 40.746118], [-73.938536, 40.747382], [-73.939748, 40.744832]]], "type": "Polygon"}, "id": "892a100d543ffff", "properties": {"percentile_speed_kmh": 78.12219227313567}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938053, 40.743552], [-73.935181, 40.742123], [-73.935892, 40.743273], [-73.934776, 40.744188], [-73.938053, 40.743552]]], "type": "Polygon"}, "id": "892a100d547ffff", "properties": {"percentile_speed_kmh": 71.5633423180593}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943746, 40.744543], [-73.940985, 40.74611], [-73.94257, 40.746039], [-73.943161, 40.747234], [-73.943746, 40.744543]]], "type": "Polygon"}, "id": "892a100d54bffff", "properties": {"percentile_speed_kmh": 38.679245283018865}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942078, 40.743984], [-73.940109, 40.741767], [-73.940217, 40.74305], [-73.938752, 40.743545], [-73.942078, 40.743984]]], "type": "Polygon"}, "id": "892a100d54fffff", "properties": {"percentile_speed_kmh": 81.71608265947889}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93826, 40.748394], [-73.934996, 40.747713], [-73.936092, 40.748643], [-73.935357, 40.749784], [-73.93826, 40.748394]]], "type": "Polygon"}, "id": "892a100d553ffff", "properties": {"percentile_speed_kmh": 74.7978436657682}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93596, 40.746448], [-73.933356, 40.744713], [-73.933866, 40.745931], [-73.932606, 40.746714], [-73.93596, 40.746448]]], "type": "Polygon"}, "id": "892a100d557ffff", "properties": {"percentile_speed_kmh": 81.04222821203953}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941867, 40.747332], [-73.938917, 40.748653], [-73.940502, 40.748719], [-73.940933, 40.749958], [-73.941867, 40.747332]]], "type": "Polygon"}, "id": "892a100d55bffff", "properties": {"percentile_speed_kmh": 23.360287511230908}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942145, 40.738028], [-73.939129, 40.736808], [-73.939962, 40.737904], [-73.938949, 40.738894], [-73.942145, 40.738028]]], "type": "Polygon"}, "id": "892a100d56bffff", "properties": {"percentile_speed_kmh": 82.03054806828392}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939898, 40.735519], [-73.936963, 40.734177], [-73.937725, 40.735305], [-73.936652, 40.736253], [-73.939898, 40.735519]]], "type": "Polygon"}, "id": "892a100d56fffff", "properties": {"percentile_speed_kmh": 83.55795148247978}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934888, 40.742034], [-73.934528, 40.739317], [-73.933839, 40.740476], [-73.932264, 40.740319], [-73.934888, 40.742034]]], "type": "Polygon"}, "id": "892a100d573ffff", "properties": {"percentile_speed_kmh": 92.72237196765498}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940112, 40.74057], [-73.936954, 40.739614], [-73.937924, 40.740633], [-73.937046, 40.741704], [-73.940112, 40.74057]]], "type": "Polygon"}, "id": "892a100d57bffff", "properties": {"percentile_speed_kmh": 71.69811320754717}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921113, 40.749436], [-73.918436, 40.747776], [-73.918998, 40.748979], [-73.917772, 40.749797], [-73.921113, 40.749436]]], "type": "Polygon"}, "id": "892a100d583ffff", "properties": {"percentile_speed_kmh": 60.78167115902965}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9189, 40.746178], [-73.915593, 40.745653], [-73.916755, 40.74653], [-73.916105, 40.747703], [-73.9189, 40.746178]]], "type": "Polygon"}, "id": "892a100d587ffff", "properties": {"percentile_speed_kmh": 60.871518418688225}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925444, 40.74882], [-73.922235, 40.747986], [-73.923263, 40.748967], [-73.922447, 40.750071], [-73.925444, 40.74882]]], "type": "Polygon"}, "id": "892a100d58bffff", "properties": {"percentile_speed_kmh": 89.30817610062893}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922952, 40.745597], [-73.919619, 40.745999], [-73.921076, 40.74651], [-73.920946, 40.747793], [-73.922952, 40.745597]]], "type": "Polygon"}, "id": "892a100d58fffff", "properties": {"percentile_speed_kmh": 29.87421383647799}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919132, 40.751851], [-73.916111, 40.75064], [-73.916948, 40.751733], [-73.91594, 40.752727], [-73.919132, 40.751851]]], "type": "Polygon"}, "id": "892a100d593ffff", "properties": {"percentile_speed_kmh": 69.45193171608265}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915601, 40.750585], [-73.915937, 40.747865], [-73.914969, 40.748885], [-73.913468, 40.748469], [-73.915601, 40.750585]]], "type": "Polygon"}, "id": "892a100d597ffff", "properties": {"percentile_speed_kmh": 50.85354896675651}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923231, 40.752283], [-73.920988, 40.750243], [-73.92126, 40.751511], [-73.919866, 40.752127], [-73.923231, 40.752283]]], "type": "Polygon"}, "id": "892a100d59bffff", "properties": {"percentile_speed_kmh": 72.95597484276729}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.918736, 40.741128], [-73.915572, 40.740188], [-73.916549, 40.741202], [-73.915679, 40.742277], [-73.918736, 40.741128]]], "type": "Polygon"}, "id": "892a100d5a3ffff", "properties": {"percentile_speed_kmh": 34.59119496855346}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921003, 40.742547], [-73.922603, 40.740143], [-73.921226, 40.740782], [-73.920037, 40.73993], [-73.921003, 40.742547]]], "type": "Polygon"}, "id": "892a100d5abffff", "properties": {"percentile_speed_kmh": 35.26504941599281}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91664, 40.743512], [-73.913301, 40.74314], [-73.914523, 40.743962], [-73.913955, 40.745163], [-73.91664, 40.743512]]], "type": "Polygon"}, "id": "892a100d5b3ffff", "properties": {"percentile_speed_kmh": 37.55615453728661}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.920972, 40.74385], [-73.91793, 40.742675], [-73.918787, 40.743758], [-73.917797, 40.744764], [-73.920972, 40.74385]]], "type": "Polygon"}, "id": "892a100d5bbffff", "properties": {"percentile_speed_kmh": 47.16981132075472}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931956, 40.751557], [-73.928982, 40.750271], [-73.929777, 40.751384], [-73.928731, 40.752353], [-73.931956, 40.751557]]], "type": "Polygon"}, "id": "892a100d5c3ffff", "properties": {"percentile_speed_kmh": 68.3737646001797}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929723, 40.748919], [-73.926693, 40.747721], [-73.927538, 40.748811], [-73.926536, 40.749809], [-73.929723, 40.748919]]], "type": "Polygon"}, "id": "892a100d5c7ffff", "properties": {"percentile_speed_kmh": 87.24168912848158}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935968, 40.750522], [-73.932641, 40.75096], [-73.934106, 40.751455], [-73.933998, 40.752739], [-73.935968, 40.750522]]], "type": "Polygon"}, "id": "892a100d5cbffff", "properties": {"percentile_speed_kmh": 65.54357592093442}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.933744, 40.747958], [-73.930409, 40.748353], [-73.931865, 40.748867], [-73.931731, 40.750149], [-73.933744, 40.747958]]], "type": "Polygon"}, "id": "892a100d5cfffff", "properties": {"percentile_speed_kmh": 82.97394429469901}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929749, 40.753474], [-73.926383, 40.753618], [-73.927773, 40.754238], [-73.927494, 40.755505], [-73.929749, 40.753474]]], "type": "Polygon"}, "id": "892a100d5d3ffff", "properties": {"percentile_speed_kmh": 71.92273135669362}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927672, 40.751722], [-73.924756, 40.750352], [-73.925503, 40.751488], [-73.924415, 40.752425], [-73.927672, 40.751722]]], "type": "Polygon"}, "id": "892a100d5d7ffff", "properties": {"percentile_speed_kmh": 70.75471698113208}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934155, 40.753659], [-73.930828, 40.753219], [-73.932024, 40.754065], [-73.931418, 40.755255], [-73.934155, 40.753659]]], "type": "Polygon"}, "id": "892a100d5dbffff", "properties": {"percentile_speed_kmh": 55.43575920934411}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975112, 40.761076], [-73.972249, 40.759632], [-73.972951, 40.760787], [-73.971827, 40.761696], [-73.975112, 40.761076]]], "type": "Polygon"}, "id": "892a100d603ffff", "properties": {"percentile_speed_kmh": 22.057502246181492}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972893, 40.758317], [-73.969839, 40.757159], [-73.970705, 40.758238], [-73.969723, 40.759249], [-73.972893, 40.758317]]], "type": "Polygon"}, "id": "892a100d607ffff", "properties": {"percentile_speed_kmh": 27.762803234501348}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975765, 40.760659], [-73.978825, 40.761807], [-73.977953, 40.760732], [-73.97893, 40.759717], [-73.975765, 40.760659]]], "type": "Polygon"}, "id": "892a100d60bffff", "properties": {"percentile_speed_kmh": 22.19227313566936}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977118, 40.758491], [-73.974404, 40.756869], [-73.974992, 40.758065], [-73.973784, 40.7589], [-73.977118, 40.758491]]], "type": "Polygon"}, "id": "892a100d60fffff", "properties": {"percentile_speed_kmh": 20.979335130278525}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972872, 40.764251], [-73.970773, 40.762112], [-73.970956, 40.76339], [-73.969521, 40.763941], [-73.972872, 40.764251]]], "type": "Polygon"}, "id": "892a100d613ffff", "properties": {"percentile_speed_kmh": 35.669362084456424}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970562, 40.760141], [-73.967248, 40.760646], [-73.968729, 40.761112], [-73.96866, 40.762398], [-73.970562, 40.760141]]], "type": "Polygon"}, "id": "892a100d617ffff", "properties": {"percentile_speed_kmh": 32.34501347708895}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974152, 40.76247], [-73.975715, 40.764892], [-73.975833, 40.763608], [-73.977371, 40.763287], [-73.974152, 40.76247]]], "type": "Polygon"}, "id": "892a100d61bffff", "properties": {"percentile_speed_kmh": 20.170709793351303}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972529, 40.753575], [-73.970216, 40.751586], [-73.970532, 40.752847], [-73.969159, 40.753494], [-73.972529, 40.753575]]], "type": "Polygon"}, "id": "892a100d623ffff", "properties": {"percentile_speed_kmh": 32.479784366576816}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968707, 40.751862], [-73.969854, 40.749293], [-73.968608, 40.750089], [-73.967277, 40.749388], [-73.968707, 40.751862]]], "type": "Polygon"}, "id": "892a100d627ffff", "properties": {"percentile_speed_kmh": 67.74483378256963}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976758, 40.753538], [-73.974595, 40.751442], [-73.974817, 40.752716], [-73.9734, 40.753296], [-73.976758, 40.753538]]], "type": "Polygon"}, "id": "892a100d62bffff", "properties": {"percentile_speed_kmh": 29.649595687331537}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972797, 40.751747], [-73.974261, 40.749285], [-73.972921, 40.749975], [-73.971684, 40.749167], [-73.972797, 40.751747]]], "type": "Polygon"}, "id": "892a100d62fffff", "properties": {"percentile_speed_kmh": 52.875112309074574}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970445, 40.75498], [-73.967087, 40.755227], [-73.968506, 40.755805], [-73.968286, 40.757079], [-73.970445, 40.75498]]], "type": "Polygon"}, "id": "892a100d633ffff", "properties": {"percentile_speed_kmh": 32.74932614555256}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966273, 40.75454], [-73.968082, 40.752234], [-73.966652, 40.752792], [-73.965541, 40.751873], [-73.966273, 40.75454]]], "type": "Polygon"}, "id": "892a100d637ffff", "properties": {"percentile_speed_kmh": 87.82569631626235}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974925, 40.755435], [-73.971717, 40.754592], [-73.972742, 40.755576], [-73.971921, 40.756678], [-73.974925, 40.755435]]], "type": "Polygon"}, "id": "892a100d63bffff", "properties": {"percentile_speed_kmh": 22.731356693620842}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982837, 40.762125], [-73.984078, 40.764667], [-73.984361, 40.7634], [-73.985932, 40.763212], [-73.982837, 40.762125]]], "type": "Polygon"}, "id": "892a100d643ffff", "properties": {"percentile_speed_kmh": 22.32704402515723}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980194, 40.760009], [-73.982527, 40.761983], [-73.982199, 40.760723], [-73.983566, 40.760068], [-73.980194, 40.760009]]], "type": "Polygon"}, "id": "892a100d647ffff", "properties": {"percentile_speed_kmh": 25.831087151841867}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987434, 40.761809], [-73.987954, 40.76451], [-73.988574, 40.763325], [-73.990158, 40.763421], [-73.987434, 40.761809]]], "type": "Polygon"}, "id": "892a100d64bffff", "properties": {"percentile_speed_kmh": 29.380053908355794}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984641, 40.759647], [-73.986469, 40.761944], [-73.986442, 40.760657], [-73.987938, 40.760224], [-73.984641, 40.759647]]], "type": "Polygon"}, "id": "892a100d64fffff", "properties": {"percentile_speed_kmh": 21.78796046720575}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981159, 40.764606], [-73.9816, 40.767316], [-73.982254, 40.766143], [-73.983835, 40.76627], [-73.981159, 40.764606]]], "type": "Polygon"}, "id": "892a100d653ffff", "properties": {"percentile_speed_kmh": 14.330637915543576}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981446, 40.76399], [-73.979286, 40.761891], [-73.979506, 40.763166], [-73.978087, 40.763744], [-73.981446, 40.76399]]], "type": "Polygon"}, "id": "892a100d657ffff", "properties": {"percentile_speed_kmh": 21.60826594788859}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986115, 40.764305], [-73.985234, 40.766943], [-73.986396, 40.766065], [-73.987795, 40.766675], [-73.986115, 40.764305]]], "type": "Polygon"}, "id": "892a100d65bffff", "properties": {"percentile_speed_kmh": 47.439353099730454}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980064, 40.756041], [-73.983414, 40.755727], [-73.981977, 40.755178], [-73.982159, 40.753899], [-73.980064, 40.756041]]], "type": "Polygon"}, "id": "892a100d663ffff", "properties": {"percentile_speed_kmh": 23.8544474393531}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978126, 40.753783], [-73.981242, 40.752739], [-73.979675, 40.752529], [-73.979418, 40.751259], [-73.978126, 40.753783]]], "type": "Polygon"}, "id": "892a100d667ffff", "properties": {"percentile_speed_kmh": 19.7214734950584}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984141, 40.754932], [-73.986964, 40.756428], [-73.986294, 40.755261], [-73.987442, 40.754372], [-73.984141, 40.754932]]], "type": "Polygon"}, "id": "892a100d66bffff", "properties": {"percentile_speed_kmh": 24.797843665768195}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98222, 40.753496], [-73.985497, 40.752849], [-73.983988, 40.752448], [-73.983973, 40.751161], [-73.98222, 40.753496]]], "type": "Polygon"}, "id": "892a100d66fffff", "properties": {"percentile_speed_kmh": 34.72596585804133}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977798, 40.758033], [-73.980925, 40.759058], [-73.979988, 40.758018], [-73.980903, 40.756966], [-73.977798, 40.758033]]], "type": "Polygon"}, "id": "892a100d673ffff", "properties": {"percentile_speed_kmh": 26.01078167115903}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976716, 40.756814], [-73.979054, 40.754845], [-73.977515, 40.755162], [-73.976651, 40.754082], [-73.976716, 40.756814]]], "type": "Polygon"}, "id": "892a100d677ffff", "properties": {"percentile_speed_kmh": 19.63162623539982}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982127, 40.757553], [-73.984847, 40.75917], [-73.984255, 40.757976], [-73.985461, 40.757138], [-73.982127, 40.757553]]], "type": "Polygon"}, "id": "892a100d67bffff", "properties": {"percentile_speed_kmh": 26.28032345013477}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966448, 40.765489], [-73.963162, 40.766104], [-73.964665, 40.76652], [-73.964661, 40.767807], [-73.966448, 40.765489]]], "type": "Polygon"}, "id": "892a100d683ffff", "properties": {"percentile_speed_kmh": 43.62084456424079}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963969, 40.762684], [-73.960897, 40.763811], [-73.962472, 40.763979], [-73.96278, 40.765242], [-73.963969, 40.762684]]], "type": "Polygon"}, "id": "892a100d687ffff", "properties": {"percentile_speed_kmh": 33.468104222821204}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970689, 40.765334], [-73.96743, 40.766038], [-73.96895, 40.766413], [-73.968999, 40.767699], [-73.970689, 40.765334]]], "type": "Polygon"}, "id": "892a100d68bffff", "properties": {"percentile_speed_kmh": 50.4492362982929}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968514, 40.762825], [-73.965208, 40.763363], [-73.966695, 40.763814], [-73.966645, 40.7651], [-73.968514, 40.762825]]], "type": "Polygon"}, "id": "892a100d68fffff", "properties": {"percentile_speed_kmh": 36.61275831087152}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964264, 40.768041], [-73.961102, 40.768991], [-73.962658, 40.769248], [-73.962857, 40.770525], [-73.964264, 40.768041]]], "type": "Polygon"}, "id": "892a100d693ffff", "properties": {"percentile_speed_kmh": 43.081761006289305}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961958, 40.765403], [-73.95886, 40.766482], [-73.96043, 40.766674], [-73.960709, 40.767942], [-73.961958, 40.765403]]], "type": "Polygon"}, "id": "892a100d697ffff", "properties": {"percentile_speed_kmh": 42.1832884097035}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968513, 40.767901], [-73.965378, 40.76891], [-73.966941, 40.769138], [-73.967176, 40.770411], [-73.968513, 40.767901]]], "type": "Polygon"}, "id": "892a100d69bffff", "properties": {"percentile_speed_kmh": 58.7151841868823}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964187, 40.757885], [-73.960816, 40.757945], [-73.962183, 40.7586], [-73.961855, 40.759859], [-73.964187, 40.757885]]], "type": "Polygon"}, "id": "892a100d6a3ffff", "properties": {"percentile_speed_kmh": 53.36927223719677}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961972, 40.756443], [-73.959554, 40.754539], [-73.959937, 40.755788], [-73.958601, 40.756482], [-73.961972, 40.756443]]], "type": "Polygon"}, "id": "892a100d6a7ffff", "properties": {"percentile_speed_kmh": 54.5822102425876}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968094, 40.757328], [-73.964969, 40.758354], [-73.966533, 40.758573], [-73.966779, 40.759845], [-73.968094, 40.757328]]], "type": "Polygon"}, "id": "892a100d6abffff", "properties": {"percentile_speed_kmh": 32.300089847259656}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966176, 40.756457], [-73.963994, 40.754374], [-73.964228, 40.755647], [-73.962816, 40.756235], [-73.966176, 40.756457]]], "type": "Polygon"}, "id": "892a100d6afffff", "properties": {"percentile_speed_kmh": 61.32075471698113}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962007, 40.760369], [-73.958694, 40.760878], [-73.960175, 40.761342], [-73.960109, 40.762628], [-73.962007, 40.760369]]], "type": "Polygon"}, "id": "892a100d6b3ffff", "properties": {"percentile_speed_kmh": 43.66576819407008}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960065, 40.758619], [-73.95697, 40.757533], [-73.957875, 40.758591], [-73.95693, 40.759625], [-73.960065, 40.758619]]], "type": "Polygon"}, "id": "892a100d6b7ffff", "properties": {"percentile_speed_kmh": 66.62174303683737}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96603, 40.760005], [-73.962933, 40.761085], [-73.964503, 40.761277], [-73.964782, 40.762544], [-73.96603, 40.760005]]], "type": "Polygon"}, "id": "892a100d6bbffff", "properties": {"percentile_speed_kmh": 43.261455525606465}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975505, 40.767237], [-73.97466, 40.769883], [-73.975809, 40.768995], [-73.977216, 40.769592], [-73.975505, 40.767237]]], "type": "Polygon"}, "id": "892a100d6c3ffff", "properties": {"percentile_speed_kmh": 46.76549865229111}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974568, 40.764909], [-73.971718, 40.76637], [-73.973307, 40.76636], [-73.973829, 40.767575], [-73.974568, 40.764909]]], "type": "Polygon"}, "id": "892a100d6c7ffff", "properties": {"percentile_speed_kmh": 24.887690925426774}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979926, 40.76711], [-73.978825, 40.769694], [-73.980058, 40.768882], [-73.981402, 40.769568], [-73.979926, 40.76711]]], "type": "Polygon"}, "id": "892a100d6cbffff", "properties": {"percentile_speed_kmh": 57.59209344115004}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976766, 40.764781], [-73.977455, 40.767456], [-73.978, 40.766247], [-73.979588, 40.766277], [-73.976766, 40.764781]]], "type": "Polygon"}, "id": "892a100d6cfffff", "properties": {"percentile_speed_kmh": 6.64869721473495}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973661, 40.769923], [-73.972477, 40.772482], [-73.973735, 40.771697], [-73.975057, 40.772411], [-73.973661, 40.769923]]], "type": "Polygon"}, "id": "892a100d6d3ffff", "properties": {"percentile_speed_kmh": 40.880503144654085}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972389, 40.767534], [-73.969719, 40.769204], [-73.971299, 40.769074], [-73.971958, 40.770245], [-73.972389, 40.767534]]], "type": "Polygon"}, "id": "892a100d6d7ffff", "properties": {"percentile_speed_kmh": 41.060197663971245}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978052, 40.769807], [-73.976674, 40.772302], [-73.97799, 40.771582], [-73.979255, 40.772361], [-73.978052, 40.769807]]], "type": "Polygon"}, "id": "892a100d6dbffff", "properties": {"percentile_speed_kmh": 51.841868823000894}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941012, 40.68914], [-73.94146, 40.686433], [-73.940452, 40.687426], [-73.93897, 40.686969], [-73.941012, 40.68914]]], "type": "Polygon"}, "id": "892a100d803ffff", "properties": {"percentile_speed_kmh": 70.03593890386342}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938477, 40.686601], [-73.939473, 40.683993], [-73.938276, 40.684835], [-73.936908, 40.684185], [-73.938477, 40.686601]]], "type": "Polygon"}, "id": "892a100d807ffff", "properties": {"percentile_speed_kmh": 70.39532794249776}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946572, 40.687988], [-73.943913, 40.686313], [-73.944464, 40.687519], [-73.943233, 40.688329], [-73.946572, 40.687988]]], "type": "Polygon"}, "id": "892a100d80bffff", "properties": {"percentile_speed_kmh": 68.59838274932615}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944258, 40.68559], [-73.941894, 40.683646], [-73.942244, 40.6849], [-73.940892, 40.685572], [-73.944258, 40.68559]]], "type": "Polygon"}, "id": "892a100d80fffff", "properties": {"percentile_speed_kmh": 58.445642407906554}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939796, 40.691454], [-73.938514, 40.688929], [-73.938254, 40.690198], [-73.936689, 40.690404], [-73.939796, 40.691454]]], "type": "Polygon"}, "id": "892a100d813ffff", "properties": {"percentile_speed_kmh": 72.59658580413297}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938012, 40.68738], [-73.934659, 40.687143], [-73.935927, 40.687914], [-73.935435, 40.689136], [-73.938012, 40.68738]]], "type": "Polygon"}, "id": "892a100d817ffff", "properties": {"percentile_speed_kmh": 54.71698113207547}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944449, 40.690889], [-73.942121, 40.688916], [-73.942448, 40.690174], [-73.941083, 40.690829], [-73.944449, 40.690889]]], "type": "Polygon"}, "id": "892a100d81bffff", "properties": {"percentile_speed_kmh": 81.85085354896675}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939821, 40.680354], [-73.937335, 40.678514], [-73.937765, 40.679751], [-73.936459, 40.680479], [-73.939821, 40.680354]]], "type": "Polygon"}, "id": "892a100d823ffff", "properties": {"percentile_speed_kmh": 57.14285714285714}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.937687, 40.677142], [-73.934478, 40.67632], [-73.93551, 40.677296], [-73.934701, 40.678401], [-73.937687, 40.677142]]], "type": "Polygon"}, "id": "892a100d827ffff", "properties": {"percentile_speed_kmh": 53.6388140161725}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942258, 40.681212], [-73.943747, 40.678764], [-73.942401, 40.679443], [-73.941177, 40.678627], [-73.942258, 40.681212]]], "type": "Polygon"}, "id": "892a100d82bffff", "properties": {"percentile_speed_kmh": 64.33063791554358}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941116, 40.678404], [-73.940541, 40.675714], [-73.939947, 40.676906], [-73.938365, 40.676833], [-73.941116, 40.678404]]], "type": "Polygon"}, "id": "892a100d82fffff", "properties": {"percentile_speed_kmh": 72.64150943396226}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936017, 40.68107], [-73.934826, 40.683624], [-73.936085, 40.682843], [-73.937401, 40.683559], [-73.936017, 40.68107]]], "type": "Polygon"}, "id": "892a100d833ffff", "properties": {"percentile_speed_kmh": 75.83108715184187}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932847, 40.678726], [-73.933459, 40.681411], [-73.934037, 40.680213], [-73.93562, 40.680274], [-73.932847, 40.678726]]], "type": "Polygon"}, "id": "892a100d837ffff", "properties": {"percentile_speed_kmh": 38.14016172506739}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941717, 40.683405], [-73.940219, 40.680959], [-73.940069, 40.682239], [-73.938526, 40.682535], [-73.941717, 40.683405]]], "type": "Polygon"}, "id": "892a100d83bffff", "properties": {"percentile_speed_kmh": 74.97753818508535}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953144, 40.690093], [-73.950059, 40.689], [-73.950958, 40.690059], [-73.950009, 40.69109], [-73.953144, 40.690093]]], "type": "Polygon"}, "id": "892a100d843ffff", "properties": {"percentile_speed_kmh": 73.76460017969451}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950854, 40.687127], [-73.947525, 40.68672], [-73.948732, 40.687554], [-73.948145, 40.688749], [-73.950854, 40.687127]]], "type": "Polygon"}, "id": "892a100d847ffff", "properties": {"percentile_speed_kmh": 77.17879604672058}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957345, 40.690354], [-73.954705, 40.68866], [-73.955242, 40.68987], [-73.954001, 40.69067], [-73.957345, 40.690354]]], "type": "Polygon"}, "id": "892a100d84bffff", "properties": {"percentile_speed_kmh": 83.69272237196765}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955148, 40.687635], [-73.952321, 40.686153], [-73.952997, 40.687316], [-73.951857, 40.688208], [-73.955148, 40.687635]]], "type": "Polygon"}, "id": "892a100d84fffff", "properties": {"percentile_speed_kmh": 72.14734950584007}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950995, 40.693278], [-73.948532, 40.691417], [-73.948947, 40.692658], [-73.94763, 40.693374], [-73.950995, 40.693278]]], "type": "Polygon"}, "id": "892a100d853ffff", "properties": {"percentile_speed_kmh": 77.22371967654986}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948809, 40.690571], [-73.94615, 40.688895], [-73.9467, 40.690101], [-73.945468, 40.69091], [-73.948809, 40.690571]]], "type": "Polygon"}, "id": "892a100d857ffff", "properties": {"percentile_speed_kmh": 81.31176999101527}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955308, 40.693062], [-73.952684, 40.691351], [-73.953209, 40.692564], [-73.951961, 40.693357], [-73.955308, 40.693062]]], "type": "Polygon"}, "id": "892a100d85bffff", "properties": {"percentile_speed_kmh": 73.8544474393531}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950634, 40.681799], [-73.94729, 40.681488], [-73.948533, 40.682287], [-73.947999, 40.683497], [-73.950634, 40.681799]]], "type": "Polygon"}, "id": "892a100d863ffff", "properties": {"percentile_speed_kmh": 39.083557951482476}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94787, 40.680719], [-73.946737, 40.678148], [-73.946402, 40.679405], [-73.944828, 40.679551], [-73.94787, 40.680719]]], "type": "Polygon"}, "id": "892a100d867ffff", "properties": {"percentile_speed_kmh": 34.681042228212036}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954857, 40.681569], [-73.951492, 40.681483], [-73.952812, 40.682196], [-73.952403, 40.683438], [-73.954857, 40.681569]]], "type": "Polygon"}, "id": "892a100d86bffff", "properties": {"percentile_speed_kmh": 36.118598382749326}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952507, 40.680229], [-73.950419, 40.678088], [-73.950598, 40.679366], [-73.949164, 40.679913], [-73.952507, 40.680229]]], "type": "Polygon"}, "id": "892a100d86fffff", "properties": {"percentile_speed_kmh": 40.79065588499551}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9484, 40.684125], [-73.945077, 40.684561], [-73.946539, 40.685057], [-73.94643, 40.686339], [-73.9484, 40.684125]]], "type": "Polygon"}, "id": "892a100d873ffff", "properties": {"percentile_speed_kmh": 57.81671159029649}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946237, 40.68165], [-73.942881, 40.681862], [-73.944288, 40.682453], [-73.944049, 40.683725], [-73.946237, 40.68165]]], "type": "Polygon"}, "id": "892a100d877ffff", "properties": {"percentile_speed_kmh": 55.61545372866127}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952743, 40.684116], [-73.949387, 40.68433], [-73.950795, 40.684921], [-73.950556, 40.686192], [-73.952743, 40.684116]]], "type": "Polygon"}, "id": "892a100d87bffff", "properties": {"percentile_speed_kmh": 57.322551662174305}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.933517, 40.694242], [-73.932171, 40.691739], [-73.931943, 40.693012], [-73.930384, 40.693245], [-73.933517, 40.694242]]], "type": "Polygon"}, "id": "892a100d883ffff", "properties": {"percentile_speed_kmh": 84.366576819407}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928531, 40.691542], [-73.931777, 40.690819], [-73.930257, 40.690453], [-73.930196, 40.689168], [-73.928531, 40.691542]]], "type": "Polygon"}, "id": "892a100d887ffff", "properties": {"percentile_speed_kmh": 77.89757412398922}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936991, 40.694521], [-73.937347, 40.691805], [-73.936373, 40.69282], [-73.934876, 40.692397], [-73.936991, 40.694521]]], "type": "Polygon"}, "id": "892a100d88bffff", "properties": {"percentile_speed_kmh": 84.59119496855345}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93393, 40.691977], [-73.935729, 40.689669], [-73.934302, 40.69023], [-73.93319, 40.689313], [-73.93393, 40.691977]]], "type": "Polygon"}, "id": "892a100d88fffff", "properties": {"percentile_speed_kmh": 80.50314465408805}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931697, 40.696719], [-73.929794, 40.694467], [-73.929865, 40.695752], [-73.928388, 40.696218], [-73.931697, 40.696719]]], "type": "Polygon"}, "id": "892a100d893ffff", "properties": {"percentile_speed_kmh": 65.1392632524708}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929425, 40.694181], [-73.927622, 40.691875], [-73.927637, 40.693161], [-73.92614, 40.693584], [-73.929425, 40.694181]]], "type": "Polygon"}, "id": "892a100d897ffff", "properties": {"percentile_speed_kmh": 74.93261455525607}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93463, 40.697269], [-73.935589, 40.694652], [-73.934403, 40.695505], [-73.933026, 40.694868], [-73.93463, 40.697269]]], "type": "Polygon"}, "id": "892a100d89bffff", "properties": {"percentile_speed_kmh": 58.04132973944294}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931214, 40.684457], [-73.927963, 40.685164], [-73.92948, 40.685537], [-73.929532, 40.686822], [-73.931214, 40.684457]]], "type": "Polygon"}, "id": "892a100d8a3ffff", "properties": {"percentile_speed_kmh": 49.640610961365674}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928476, 40.68151], [-73.925766, 40.683129], [-73.927346, 40.683028], [-73.927971, 40.684209], [-73.928476, 40.68151]]], "type": "Polygon"}, "id": "892a100d8a7ffff", "properties": {"percentile_speed_kmh": 38.544474393531}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934635, 40.683847], [-73.932401, 40.685889], [-73.93392, 40.685522], [-73.934835, 40.686572], [-73.934635, 40.683847]]], "type": "Polygon"}, "id": "892a100d8abffff", "properties": {"percentile_speed_kmh": 86.7026055705301}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931584, 40.681194], [-73.930681, 40.683825], [-73.931848, 40.682954], [-73.933238, 40.683572], [-73.931584, 40.681194]]], "type": "Polygon"}, "id": "892a100d8afffff", "properties": {"percentile_speed_kmh": 81.6262353998203}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926088, 40.688685], [-73.92945, 40.68855], [-73.928064, 40.687926], [-73.928348, 40.686661], [-73.926088, 40.688685]]], "type": "Polygon"}, "id": "892a100d8b3ffff", "properties": {"percentile_speed_kmh": 40.43126684636118}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92727, 40.685125], [-73.923946, 40.684698], [-73.925145, 40.685539], [-73.924548, 40.68673], [-73.92727, 40.685125]]], "type": "Polygon"}, "id": "892a100d8b7ffff", "properties": {"percentile_speed_kmh": 34.8607367475292}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932525, 40.686523], [-73.930402, 40.688642], [-73.931901, 40.688222], [-73.932871, 40.689239], [-73.932525, 40.686523]]], "type": "Polygon"}, "id": "892a100d8bbffff", "properties": {"percentile_speed_kmh": 67.61006289308176}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942942, 40.697049], [-73.944301, 40.694551], [-73.942991, 40.695276], [-73.941724, 40.694503], [-73.942942, 40.697049]]], "type": "Polygon"}, "id": "892a100d8c3ffff", "properties": {"percentile_speed_kmh": 84.18688230008985}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941817, 40.694186], [-73.941033, 40.69153], [-73.940533, 40.69275], [-73.938948, 40.692757], [-73.941817, 40.694186]]], "type": "Polygon"}, "id": "892a100d8c7ffff", "properties": {"percentile_speed_kmh": 76.77448337825696}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948731, 40.696323], [-73.946964, 40.693998], [-73.946959, 40.695284], [-73.945455, 40.695693], [-73.948731, 40.696323]]], "type": "Polygon"}, "id": "892a100d8cbffff", "properties": {"percentile_speed_kmh": 77.85265049415993}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946824, 40.69307], [-73.94391, 40.691702], [-73.944656, 40.692836], [-73.943571, 40.693774], [-73.946824, 40.69307]]], "type": "Polygon"}, "id": "892a100d8cfffff", "properties": {"percentile_speed_kmh": 83.24348607367475}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941469, 40.699684], [-73.941816, 40.696968], [-73.940844, 40.697985], [-73.939346, 40.697565], [-73.941469, 40.699684]]], "type": "Polygon"}, "id": "892a100d8d3ffff", "properties": {"percentile_speed_kmh": 89.71248876909254}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939012, 40.697143], [-73.939771, 40.694483], [-73.938652, 40.695394], [-73.937229, 40.694827], [-73.939012, 40.697143]]], "type": "Polygon"}, "id": "892a100d8d7ffff", "properties": {"percentile_speed_kmh": 78.8858939802336}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945968, 40.699501], [-73.945865, 40.696772], [-73.94507, 40.697884], [-73.943516, 40.69763], [-73.945968, 40.699501]]], "type": "Polygon"}, "id": "892a100d8dbffff", "properties": {"percentile_speed_kmh": 80.99730458221025}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92672, 40.6696], [-73.923579, 40.668621], [-73.924536, 40.669646], [-73.923646, 40.67071], [-73.92672, 40.6696]]], "type": "Polygon"}, "id": "892a100d903ffff", "properties": {"percentile_speed_kmh": 48.38274932614555}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936312, 40.67061], [-73.934013, 40.672604], [-73.935544, 40.67227], [-73.936424, 40.673338], [-73.936312, 40.67061]]], "type": "Polygon"}, "id": "892a100d943ffff", "properties": {"percentile_speed_kmh": 16.217430368373766}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935085, 40.668783], [-73.931724, 40.66891], [-73.933107, 40.669537], [-73.932819, 40.670801], [-73.935085, 40.668783]]], "type": "Polygon"}, "id": "892a100d947ffff", "properties": {"percentile_speed_kmh": 24.16891284815813}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940801, 40.670577], [-73.938197, 40.672306], [-73.939768, 40.67214], [-73.940467, 40.673294], [-73.940801, 40.670577]]], "type": "Polygon"}, "id": "892a100d94bffff", "properties": {"percentile_speed_kmh": 35.13027852650494}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939523, 40.669382], [-73.936493, 40.668195], [-73.937342, 40.669281], [-73.936347, 40.670281], [-73.939523, 40.669382]]], "type": "Polygon"}, "id": "892a100d94fffff", "properties": {"percentile_speed_kmh": 63.02785265049416}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934362, 40.676044], [-73.934307, 40.673314], [-73.933493, 40.674417], [-73.931944, 40.674145], [-73.934362, 40.676044]]], "type": "Polygon"}, "id": "892a100d953ffff", "properties": {"percentile_speed_kmh": 63.2973944294699}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939576, 40.675165], [-73.93724, 40.673199], [-73.937573, 40.674456], [-73.936212, 40.675115], [-73.939576, 40.675165]]], "type": "Polygon"}, "id": "892a100d95bffff", "properties": {"percentile_speed_kmh": 66.4869721473495}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939324, 40.664058], [-73.936249, 40.66295], [-73.93714, 40.664014], [-73.936185, 40.665039], [-73.939324, 40.664058]]], "type": "Polygon"}, "id": "892a100d96bffff", "properties": {"percentile_speed_kmh": 17.38544474393531}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936516, 40.667926], [-73.935785, 40.665261], [-73.935261, 40.666474], [-73.933677, 40.666461], [-73.936516, 40.667926]]], "type": "Polygon"}, "id": "892a100d97bffff", "properties": {"percentile_speed_kmh": 18.688230008984725}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92862, 40.678544], [-73.927337, 40.67602], [-73.927077, 40.677288], [-73.925513, 40.677495], [-73.92862, 40.678544]]], "type": "Polygon"}, "id": "892a100d9c3ffff", "properties": {"percentile_speed_kmh": 53.99820305480683}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931035, 40.678787], [-73.933229, 40.676717], [-73.931717, 40.677103], [-73.930782, 40.676065], [-73.931035, 40.678787]]], "type": "Polygon"}, "id": "892a100d9cbffff", "properties": {"percentile_speed_kmh": 17.56513926325247}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929154, 40.676269], [-73.930799, 40.673887], [-73.929411, 40.674508], [-73.928241, 40.673641], [-73.929154, 40.676269]]], "type": "Polygon"}, "id": "892a100d9cfffff", "properties": {"percentile_speed_kmh": 27.9874213836478}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927077, 40.679872], [-73.923763, 40.679399], [-73.924944, 40.680257], [-73.924321, 40.681439], [-73.927077, 40.679872]]], "type": "Polygon"}, "id": "892a100d9d3ffff", "properties": {"percentile_speed_kmh": 75.56154537286612}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921276, 40.677886], [-73.92457, 40.678442], [-73.923423, 40.677555], [-73.92409, 40.676389], [-73.921276, 40.677886]]], "type": "Polygon"}, "id": "892a100d9d7ffff", "properties": {"percentile_speed_kmh": 25.96585804132974}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931333, 40.679713], [-73.928002, 40.679325], [-73.929216, 40.680152], [-73.92864, 40.68135], [-73.931333, 40.679713]]], "type": "Polygon"}, "id": "892a100d9dbffff", "properties": {"percentile_speed_kmh": 9.838274932614555}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97184, 40.687852], [-73.970265, 40.685439], [-73.970156, 40.686721], [-73.968622, 40.687049], [-73.97184, 40.687852]]], "type": "Polygon"}, "id": "892a100da03ffff", "properties": {"percentile_speed_kmh": 57.23270440251572}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969899, 40.68486], [-73.96746, 40.682978], [-73.967859, 40.684222], [-73.966534, 40.684928], [-73.969899, 40.68486]]], "type": "Polygon"}, "id": "892a100da07ffff", "properties": {"percentile_speed_kmh": 51.75202156334232}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976245, 40.687587], [-73.974309, 40.685353], [-73.974399, 40.686636], [-73.972928, 40.687117], [-73.976245, 40.687587]]], "type": "Polygon"}, "id": "892a100da0bffff", "properties": {"percentile_speed_kmh": 45.55256064690027}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974142, 40.684798], [-73.971796, 40.68284], [-73.972134, 40.684097], [-73.970776, 40.68476], [-73.974142, 40.684798]]], "type": "Polygon"}, "id": "892a100da0fffff", "properties": {"percentile_speed_kmh": 55.79514824797844}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969986, 40.690339], [-73.967924, 40.688181], [-73.968087, 40.68946], [-73.966646, 40.689996], [-73.969986, 40.690339]]], "type": "Polygon"}, "id": "892a100da13ffff", "properties": {"percentile_speed_kmh": 65.67834681042228}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967819, 40.687648], [-73.965541, 40.685637], [-73.965836, 40.6869], [-73.964455, 40.687532], [-73.967819, 40.687648]]], "type": "Polygon"}, "id": "892a100da17ffff", "properties": {"percentile_speed_kmh": 64.42048517520216}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974496, 40.689465], [-73.971363, 40.688465], [-73.97231, 40.689497], [-73.971409, 40.690555], [-73.974496, 40.689465]]], "type": "Polygon"}, "id": "892a100da1bffff", "properties": {"percentile_speed_kmh": 64.6900269541779}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969725, 40.679512], [-73.967172, 40.677732], [-73.967648, 40.678959], [-73.966369, 40.679718], [-73.969725, 40.679512]]], "type": "Polygon"}, "id": "892a100da23ffff", "properties": {"percentile_speed_kmh": 59.883198562443845}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967534, 40.676795], [-73.964784, 40.675221], [-73.965402, 40.676405], [-73.964217, 40.677259], [-73.967534, 40.676795]]], "type": "Polygon"}, "id": "892a100da27ffff", "properties": {"percentile_speed_kmh": 58.76010781671159}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973917, 40.679557], [-73.971636, 40.677549], [-73.971933, 40.678812], [-73.970553, 40.679445], [-73.973917, 40.679557]]], "type": "Polygon"}, "id": "892a100da2bffff", "properties": {"percentile_speed_kmh": 32.70440251572327}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971774, 40.676772], [-73.969154, 40.675058], [-73.969677, 40.676271], [-73.968427, 40.677062], [-73.971774, 40.676772]]], "type": "Polygon"}, "id": "892a100da2fffff", "properties": {"percentile_speed_kmh": 24.39353099730458}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96766, 40.682282], [-73.965227, 40.680395], [-73.965622, 40.68164], [-73.964295, 40.682343], [-73.96766, 40.682282]]], "type": "Polygon"}, "id": "892a100da33ffff", "properties": {"percentile_speed_kmh": 57.00808625336927}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965446, 40.679649], [-73.962929, 40.677837], [-73.963381, 40.679069], [-73.962086, 40.679812], [-73.965446, 40.679649]]], "type": "Polygon"}, "id": "892a100da37ffff", "properties": {"percentile_speed_kmh": 68.86792452830188}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971973, 40.682067], [-73.969379, 40.680326], [-73.969883, 40.681545], [-73.968621, 40.682324], [-73.971973, 40.682067]]], "type": "Polygon"}, "id": "892a100da3bffff", "properties": {"percentile_speed_kmh": 53.099730458221025}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982493, 40.690314], [-73.98123, 40.687783], [-73.980959, 40.68905], [-73.979393, 40.689249], [-73.982493, 40.690314]]], "type": "Polygon"}, "id": "892a100da43ffff", "properties": {"percentile_speed_kmh": 23.944294699011678}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979855, 40.687974], [-73.979485, 40.68526], [-73.978801, 40.686421], [-73.977227, 40.686268], [-73.979855, 40.687974]]], "type": "Polygon"}, "id": "892a100da47ffff", "properties": {"percentile_speed_kmh": 25.741239892183287}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986657, 40.690278], [-73.985645, 40.687673], [-73.985251, 40.688919], [-73.98367, 40.689016], [-73.986657, 40.690278]]], "type": "Polygon"}, "id": "892a100da4bffff", "properties": {"percentile_speed_kmh": 20.080862533692724}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984091, 40.687874], [-73.983793, 40.685154], [-73.983078, 40.686302], [-73.981508, 40.686122], [-73.984091, 40.687874]]], "type": "Polygon"}, "id": "892a100da4fffff", "properties": {"percentile_speed_kmh": 23.80952380952381}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980931, 40.692375], [-73.978311, 40.69066], [-73.978833, 40.691874], [-73.977582, 40.692665], [-73.980931, 40.692375]]], "type": "Polygon"}, "id": "892a100da53ffff", "properties": {"percentile_speed_kmh": 33.19856244384546}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978573, 40.690039], [-73.976371, 40.687973], [-73.976619, 40.689244], [-73.975215, 40.689841], [-73.978573, 40.690039]]], "type": "Polygon"}, "id": "892a100da57ffff", "properties": {"percentile_speed_kmh": 49.5507637017071}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985079, 40.692511], [-73.982888, 40.690437], [-73.983128, 40.691708], [-73.981721, 40.692301], [-73.985079, 40.692511]]], "type": "Polygon"}, "id": "892a100da5bffff", "properties": {"percentile_speed_kmh": 18.059299191374663}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979456, 40.682771], [-73.979481, 40.680041], [-73.978634, 40.681128], [-73.977093, 40.680826], [-73.979456, 40.682771]]], "type": "Polygon"}, "id": "892a100da63ffff", "properties": {"percentile_speed_kmh": 28.16711590296496}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977178, 40.680203], [-73.977282, 40.677474], [-73.976404, 40.678544], [-73.974872, 40.678213], [-73.977178, 40.680203]]], "type": "Polygon"}, "id": "892a100da67ffff", "properties": {"percentile_speed_kmh": 34.23180592991913}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983958, 40.682563], [-73.983506, 40.679858], [-73.982857, 40.681031], [-73.981279, 40.680909], [-73.983958, 40.682563]]], "type": "Polygon"}, "id": "892a100da6bffff", "properties": {"percentile_speed_kmh": 38.76909254267745}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98087, 40.680182], [-73.982043, 40.677623], [-73.980789, 40.67841], [-73.979468, 40.6777], [-73.98087, 40.680182]]], "type": "Polygon"}, "id": "892a100da6fffff", "properties": {"percentile_speed_kmh": 36.52291105121294}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97812, 40.685062], [-73.976602, 40.682625], [-73.976463, 40.683906], [-73.974922, 40.684209], [-73.97812, 40.685062]]], "type": "Polygon"}, "id": "892a100da73ffff", "properties": {"percentile_speed_kmh": 38.319856244384546}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97599, 40.682369], [-73.974192, 40.680061], [-73.974204, 40.681347], [-73.972706, 40.681768], [-73.97599, 40.682369]]], "type": "Polygon"}, "id": "892a100da77ffff", "properties": {"percentile_speed_kmh": 40.92542677448338}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981944, 40.685251], [-73.981453, 40.68255], [-73.980822, 40.683729], [-73.979242, 40.683623], [-73.981944, 40.685251]]], "type": "Polygon"}, "id": "892a100da7bffff", "properties": {"percentile_speed_kmh": 38.36477987421384}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963756, 40.693034], [-73.961467, 40.691032], [-73.961769, 40.692294], [-73.960392, 40.692932], [-73.963756, 40.693034]]], "type": "Polygon"}, "id": "892a100da83ffff", "properties": {"percentile_speed_kmh": 79.46990116801437}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961637, 40.690172], [-73.958901, 40.688581], [-73.959508, 40.689769], [-73.958316, 40.690616], [-73.961637, 40.690172]]], "type": "Polygon"}, "id": "892a100da87ffff", "properties": {"percentile_speed_kmh": 82.61455525606469}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968046, 40.692885], [-73.965694, 40.690931], [-73.966036, 40.692187], [-73.964679, 40.692852], [-73.968046, 40.692885]]], "type": "Polygon"}, "id": "892a100da8bffff", "properties": {"percentile_speed_kmh": 64.15094339622641}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96594, 40.689911], [-73.963021, 40.688551], [-73.963772, 40.689683], [-73.96269, 40.690623], [-73.96594, 40.689911]]], "type": "Polygon"}, "id": "892a100da8fffff", "properties": {"percentile_speed_kmh": 75.06738544474393}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96185, 40.69542], [-73.959073, 40.693876], [-73.95971, 40.695053], [-73.95854, 40.695921], [-73.96185, 40.69542]]], "type": "Polygon"}, "id": "892a100da93ffff", "properties": {"percentile_speed_kmh": 72.32704402515724}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959585, 40.692928], [-73.956933, 40.691246], [-73.957478, 40.692453], [-73.956243, 40.69326], [-73.959585, 40.692928]]], "type": "Polygon"}, "id": "892a100da97ffff", "properties": {"percentile_speed_kmh": 83.73764600179695}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965976, 40.695647], [-73.963744, 40.693602], [-73.96401, 40.69487], [-73.962615, 40.695481], [-73.965976, 40.695647]]], "type": "Polygon"}, "id": "892a100da9bffff", "properties": {"percentile_speed_kmh": 60.15274034141959}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9614, 40.684993], [-73.958807, 40.683252], [-73.959311, 40.684471], [-73.958049, 40.685249], [-73.9614, 40.684993]]], "type": "Polygon"}, "id": "892a100daa3ffff", "properties": {"percentile_speed_kmh": 51.123090745732256}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959217, 40.681721], [-73.955931, 40.681128], [-73.957064, 40.682028], [-73.956377, 40.683187], [-73.959217, 40.681721]]], "type": "Polygon"}, "id": "892a100daa7ffff", "properties": {"percentile_speed_kmh": 49.95507637017071}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96553, 40.68515], [-73.963413, 40.683026], [-73.963609, 40.684302], [-73.962182, 40.684862], [-73.96553, 40.68515]]], "type": "Polygon"}, "id": "892a100daabffff", "properties": {"percentile_speed_kmh": 55.705300988319856}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963495, 40.682075], [-73.960603, 40.680678], [-73.961332, 40.681819], [-73.960232, 40.682746], [-73.963495, 40.682075]]], "type": "Polygon"}, "id": "892a100daafffff", "properties": {"percentile_speed_kmh": 62.93800539083558}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95938, 40.687653], [-73.956733, 40.685966], [-73.957275, 40.687174], [-73.956038, 40.687978], [-73.95938, 40.687653]]], "type": "Polygon"}, "id": "892a100dab3ffff", "properties": {"percentile_speed_kmh": 62.57861635220126}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957208, 40.684584], [-73.954026, 40.683692], [-73.955025, 40.68469], [-73.95418, 40.685778], [-73.957208, 40.684584]]], "type": "Polygon"}, "id": "892a100dab7ffff", "properties": {"percentile_speed_kmh": 64.55525606469003}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963488, 40.687859], [-73.961398, 40.685718], [-73.961578, 40.686996], [-73.960143, 40.687544], [-73.963488, 40.687859]]], "type": "Polygon"}, "id": "892a100dabbffff", "properties": {"percentile_speed_kmh": 56.8733153638814}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974036, 40.695912], [-73.973058, 40.693299], [-73.972648, 40.694541], [-73.971066, 40.694625], [-73.974036, 40.695912]]], "type": "Polygon"}, "id": "892a100dac3ffff", "properties": {"percentile_speed_kmh": 36.74752920035939}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972275, 40.692843], [-73.970057, 40.690788], [-73.970315, 40.692057], [-73.968915, 40.692662], [-73.972275, 40.692843]]], "type": "Polygon"}, "id": "892a100dac7ffff", "properties": {"percentile_speed_kmh": 45.058400718778074}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978645, 40.695501], [-73.976832, 40.693199], [-73.976852, 40.694485], [-73.975356, 40.694913], [-73.978645, 40.695501]]], "type": "Polygon"}, "id": "892a100dacbffff", "properties": {"percentile_speed_kmh": 29.694519317160825}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976662, 40.692487], [-73.974036, 40.690777], [-73.974562, 40.69199], [-73.973314, 40.692784], [-73.976662, 40.692487]]], "type": "Polygon"}, "id": "892a100dacfffff", "properties": {"percentile_speed_kmh": 44.474393530997304}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972189, 40.698467], [-73.97077, 40.69599], [-73.970578, 40.697266], [-73.969026, 40.697529], [-73.972189, 40.698467]]], "type": "Polygon"}, "id": "892a100dad3ffff", "properties": {"percentile_speed_kmh": 44.699011680143755}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969951, 40.695884], [-73.968531, 40.693408], [-73.96834, 40.694685], [-73.966788, 40.694948], [-73.969951, 40.695884]]], "type": "Polygon"}, "id": "892a100dad7ffff", "properties": {"percentile_speed_kmh": 42.76729559748428}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976386, 40.698413], [-73.975146, 40.695873], [-73.974864, 40.697139], [-73.973295, 40.697328], [-73.976386, 40.698413]]], "type": "Polygon"}, "id": "892a100dadbffff", "properties": {"percentile_speed_kmh": 62.35399820305481}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956128, 40.669834], [-73.954692, 40.667365], [-73.95451, 40.668642], [-73.95296, 40.668912], [-73.956128, 40.669834]]], "type": "Polygon"}, "id": "892a100db03ffff", "properties": {"percentile_speed_kmh": 65.81311769991015}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953598, 40.667465], [-73.952848, 40.664803], [-73.952333, 40.666019], [-73.950748, 40.666013], [-73.953598, 40.667465]]], "type": "Polygon"}, "id": "892a100db07ffff", "properties": {"percentile_speed_kmh": 47.663971248876905}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959695, 40.670108], [-73.959795, 40.667379], [-73.958919, 40.66845], [-73.957387, 40.668121], [-73.959695, 40.670108]]], "type": "Polygon"}, "id": "892a100db0bffff", "properties": {"percentile_speed_kmh": 24.663072776280323}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958214, 40.667088], [-73.956642, 40.664674], [-73.956532, 40.665957], [-73.954999, 40.666284], [-73.958214, 40.667088]]], "type": "Polygon"}, "id": "892a100db0fffff", "properties": {"percentile_speed_kmh": 29.469901168014374}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954498, 40.671132], [-73.951155, 40.670818], [-73.952396, 40.671618], [-73.951861, 40.672828], [-73.954498, 40.671132]]], "type": "Polygon"}, "id": "892a100db13ffff", "properties": {"percentile_speed_kmh": 50.67385444743935}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952316, 40.669154], [-73.949408, 40.66778], [-73.95015, 40.668916], [-73.949062, 40.66985], [-73.952316, 40.669154]]], "type": "Polygon"}, "id": "892a100db17ffff", "properties": {"percentile_speed_kmh": 48.42767295597484}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958325, 40.670395], [-73.955194, 40.671397], [-73.956754, 40.671628], [-73.956985, 40.672899], [-73.958325, 40.670395]]], "type": "Polygon"}, "id": "892a100db1bffff", "properties": {"percentile_speed_kmh": 30.99730458221024}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953561, 40.66208], [-73.952434, 40.659508], [-73.952097, 40.660764], [-73.950522, 40.660908], [-73.953561, 40.66208]]], "type": "Polygon"}, "id": "892a100db23ffff", "properties": {"percentile_speed_kmh": 54.22282120395328}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95064, 40.65699], [-73.948497, 40.659095], [-73.949999, 40.658685], [-73.950959, 40.659708], [-73.95064, 40.65699]]], "type": "Polygon"}, "id": "892a100db27ffff", "properties": {"percentile_speed_kmh": 12.039532794249775}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958331, 40.661348], [-73.955807, 40.659543], [-73.956264, 40.660773], [-73.954973, 40.661519], [-73.958331, 40.661348]]], "type": "Polygon"}, "id": "892a100db2bffff", "properties": {"percentile_speed_kmh": 47.484276729559745}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954417, 40.659765], [-73.955629, 40.657219], [-73.954364, 40.657993], [-73.953055, 40.657269], [-73.954417, 40.659765]]], "type": "Polygon"}, "id": "892a100db2fffff", "properties": {"percentile_speed_kmh": 32.43486073674753}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950673, 40.662231], [-73.948789, 40.664493], [-73.950235, 40.663968], [-73.951312, 40.664912], [-73.950673, 40.662231]]], "type": "Polygon"}, "id": "892a100db33ffff", "properties": {"percentile_speed_kmh": 30.50314465408805}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948985, 40.659819], [-73.946314, 40.661479], [-73.947891, 40.661354], [-73.948543, 40.662525], [-73.948985, 40.659819]]], "type": "Polygon"}, "id": "892a100db37ffff", "properties": {"percentile_speed_kmh": 46.855345911949684}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954161, 40.665003], [-73.956124, 40.662786], [-73.954659, 40.663277], [-73.953616, 40.662309], [-73.954161, 40.665003]]], "type": "Polygon"}, "id": "892a100db3bffff", "properties": {"percentile_speed_kmh": 44.74393530997305}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967234, 40.671762], [-73.964861, 40.669826], [-73.965217, 40.671079], [-73.963868, 40.671754], [-73.967234, 40.671762]]], "type": "Polygon"}, "id": "892a100db43ffff", "properties": {"percentile_speed_kmh": 71.51841868823001}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96486, 40.669396], [-73.962908, 40.667172], [-73.963008, 40.668455], [-73.961541, 40.668943], [-73.96486, 40.669396]]], "type": "Polygon"}, "id": "892a100db47ffff", "properties": {"percentile_speed_kmh": 56.19946091644205}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971353, 40.671878], [-73.969437, 40.669634], [-73.969515, 40.670918], [-73.968041, 40.67139], [-73.971353, 40.671878]]], "type": "Polygon"}, "id": "892a100db4bffff", "properties": {"percentile_speed_kmh": 69.7214734950584}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969076, 40.669345], [-73.96727, 40.667042], [-73.967287, 40.668327], [-73.965791, 40.668753], [-73.969076, 40.669345]]], "type": "Polygon"}, "id": "892a100db4fffff", "properties": {"percentile_speed_kmh": 79.20035938903864}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965067, 40.674669], [-73.963107, 40.67245], [-73.963211, 40.673733], [-73.961747, 40.674224], [-73.965067, 40.674669]]], "type": "Polygon"}, "id": "892a100db53ffff", "properties": {"percentile_speed_kmh": 62.17430368373765}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963097, 40.671452], [-73.960128, 40.670166], [-73.960922, 40.671279], [-73.959877, 40.672245], [-73.963097, 40.671452]]], "type": "Polygon"}, "id": "892a100db57ffff", "properties": {"percentile_speed_kmh": 47.61904761904762}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969594, 40.673976], [-73.96669, 40.672596], [-73.967429, 40.673733], [-73.966338, 40.674666], [-73.969594, 40.673976]]], "type": "Polygon"}, "id": "892a100db5bffff", "properties": {"percentile_speed_kmh": 28.751123090745732}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964934, 40.663331], [-73.961821, 40.662293], [-73.962748, 40.663336], [-73.961828, 40.664383], [-73.964934, 40.663331]]], "type": "Polygon"}, "id": "892a100db63ffff", "properties": {"percentile_speed_kmh": 13.881401617250674}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96251, 40.661408], [-73.960291, 40.659356], [-73.96055, 40.660624], [-73.959152, 40.66123], [-73.96251, 40.661408]]], "type": "Polygon"}, "id": "892a100db67ffff", "properties": {"percentile_speed_kmh": 12.848158131177}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968796, 40.66415], [-73.96719, 40.661751], [-73.967097, 40.663034], [-73.965569, 40.663375], [-73.968796, 40.66415]]], "type": "Polygon"}, "id": "892a100db6bffff", "properties": {"percentile_speed_kmh": 54.267744833782565}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965493, 40.66209], [-73.966161, 40.659414], [-73.965074, 40.66035], [-73.963634, 40.659815], [-73.965493, 40.66209]]], "type": "Polygon"}, "id": "892a100db6fffff", "properties": {"percentile_speed_kmh": 76.95417789757413}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96283, 40.666441], [-73.9602, 40.664737], [-73.96073, 40.665949], [-73.959486, 40.666745], [-73.96283, 40.666441]]], "type": "Polygon"}, "id": "892a100db73ffff", "properties": {"percentile_speed_kmh": 53.54896675651393}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96055, 40.663967], [-73.958089, 40.662106], [-73.958503, 40.663346], [-73.957187, 40.664063], [-73.96055, 40.663967]]], "type": "Polygon"}, "id": "892a100db77ffff", "properties": {"percentile_speed_kmh": 15.04941599281222}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966536, 40.667036], [-73.965485, 40.664443], [-73.965111, 40.665692], [-73.963532, 40.665805], [-73.966536, 40.667036]]], "type": "Polygon"}, "id": "892a100db7bffff", "properties": {"percentile_speed_kmh": 66.71159029649596}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948092, 40.673717], [-73.944731, 40.673846], [-73.946115, 40.674472], [-73.945828, 40.675737], [-73.948092, 40.673717]]], "type": "Polygon"}, "id": "892a100db83ffff", "properties": {"percentile_speed_kmh": 42.22821203953279}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945886, 40.671189], [-73.942521, 40.671211], [-73.943874, 40.67188], [-73.943526, 40.673135], [-73.945886, 40.671189]]], "type": "Polygon"}, "id": "892a100db87ffff", "properties": {"percentile_speed_kmh": 46.81042228212039}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952068, 40.67522], [-73.950617, 40.672757], [-73.950443, 40.674035], [-73.948895, 40.67431], [-73.952068, 40.67522]]], "type": "Polygon"}, "id": "892a100db8bffff", "properties": {"percentile_speed_kmh": 39.39802336028751}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949798, 40.670633], [-73.946657, 40.671613], [-73.948214, 40.671855], [-73.948432, 40.673128], [-73.949798, 40.670633]]], "type": "Polygon"}, "id": "892a100db8fffff", "properties": {"percentile_speed_kmh": 35.17520215633423}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945858, 40.67794], [-73.944171, 40.675577], [-73.944122, 40.676863], [-73.942606, 40.677237], [-73.945858, 40.67794]]], "type": "Polygon"}, "id": "892a100db93ffff", "properties": {"percentile_speed_kmh": 43.036837376460014}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942181, 40.675938], [-73.943459, 40.673412], [-73.942174, 40.674165], [-73.940884, 40.673419], [-73.942181, 40.675938]]], "type": "Polygon"}, "id": "892a100db97ffff", "properties": {"percentile_speed_kmh": 49.91015274034142}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949325, 40.67831], [-73.949429, 40.675581], [-73.948551, 40.676652], [-73.94702, 40.676321], [-73.949325, 40.67831]]], "type": "Polygon"}, "id": "892a100db9bffff", "properties": {"percentile_speed_kmh": 53.324348607367476}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944059, 40.667965], [-73.945257, 40.665414], [-73.943997, 40.666193], [-73.942683, 40.665474], [-73.944059, 40.667965]]], "type": "Polygon"}, "id": "892a100dba3ffff", "properties": {"percentile_speed_kmh": 29.604672057502246}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940089, 40.663343], [-73.942471, 40.665271], [-73.942109, 40.66402], [-73.943454, 40.66334], [-73.940089, 40.663343]]], "type": "Polygon"}, "id": "892a100dba7ffff", "properties": {"percentile_speed_kmh": 26.05570530098832}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946792, 40.667231], [-73.950071, 40.66662], [-73.948572, 40.666203], [-73.948578, 40.664917], [-73.946792, 40.667231]]], "type": "Polygon"}, "id": "892a100dbabffff", "properties": {"percentile_speed_kmh": 43.5759209344115}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94786, 40.663735], [-73.944703, 40.66279], [-73.945676, 40.663805], [-73.944804, 40.664878], [-73.94786, 40.663735]]], "type": "Polygon"}, "id": "892a100dbafffff", "properties": {"percentile_speed_kmh": 38.63432165318957}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943183, 40.668079], [-73.940156, 40.669271], [-73.941732, 40.669405], [-73.942082, 40.670659], [-73.943183, 40.668079]]], "type": "Polygon"}, "id": "892a100dbb3ffff", "properties": {"percentile_speed_kmh": 10.017969451931716}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941245, 40.667432], [-73.939397, 40.665151], [-73.939438, 40.666436], [-73.93795, 40.66688], [-73.941245, 40.667432]]], "type": "Polygon"}, "id": "892a100dbb7ffff", "properties": {"percentile_speed_kmh": 14.106019766397125}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947746, 40.669903], [-73.945906, 40.667618], [-73.945942, 40.668903], [-73.944453, 40.669343], [-73.947746, 40.669903]]], "type": "Polygon"}, "id": "892a100dbbbffff", "properties": {"percentile_speed_kmh": 71.65318957771788}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959039, 40.676757], [-73.955982, 40.675614], [-73.956855, 40.676688], [-73.955882, 40.677702], [-73.959039, 40.676757]]], "type": "Polygon"}, "id": "892a100dbc3ffff", "properties": {"percentile_speed_kmh": 59.523809523809526}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956305, 40.673102], [-73.953162, 40.674078], [-73.954718, 40.674321], [-73.954933, 40.675595], [-73.956305, 40.673102]]], "type": "Polygon"}, "id": "892a100dbc7ffff", "properties": {"percentile_speed_kmh": 59.65858041329739}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963248, 40.676965], [-73.960575, 40.675306], [-73.961136, 40.676509], [-73.959912, 40.677325], [-73.963248, 40.676965]]], "type": "Polygon"}, "id": "892a100dbcbffff", "properties": {"percentile_speed_kmh": 61.23090745732255}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960932, 40.673434], [-73.957567, 40.673442], [-73.958916, 40.674117], [-73.95856, 40.67537], [-73.960932, 40.673434]]], "type": "Polygon"}, "id": "892a100dbcfffff", "properties": {"percentile_speed_kmh": 39.30817610062893}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956988, 40.679612], [-73.954101, 40.678208], [-73.954826, 40.679352], [-73.953722, 40.680275], [-73.956988, 40.679612]]], "type": "Polygon"}, "id": "892a100dbd3ffff", "properties": {"percentile_speed_kmh": 50.26954177897574}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954563, 40.677499], [-73.952406, 40.675403], [-73.952627, 40.676677], [-73.951211, 40.677255], [-73.954563, 40.677499]]], "type": "Polygon"}, "id": "892a100dbd7ffff", "properties": {"percentile_speed_kmh": 48.02336028751123}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961118, 40.679884], [-73.958806, 40.6779], [-73.959123, 40.67916], [-73.957753, 40.679807], [-73.961118, 40.679884]]], "type": "Polygon"}, "id": "892a100dbdbffff", "properties": {"percentile_speed_kmh": 57.681940700808624}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92777, 40.707457], [-73.92602, 40.705123], [-73.926005, 40.70641], [-73.924499, 40.706811], [-73.92777, 40.707457]]], "type": "Polygon"}, "id": "892a100dc03ffff", "properties": {"percentile_speed_kmh": 54.40251572327044}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924719, 40.70538], [-73.924802, 40.70265], [-73.923932, 40.703725], [-73.922398, 40.703402], [-73.924719, 40.70538]]], "type": "Polygon"}, "id": "892a100dc07ffff", "properties": {"percentile_speed_kmh": 57.906558849955076}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931759, 40.707592], [-73.930709, 40.704997], [-73.930334, 40.706246], [-73.928754, 40.706359], [-73.931759, 40.707592]]], "type": "Polygon"}, "id": "892a100dc0bffff", "properties": {"percentile_speed_kmh": 69.2722371967655}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929201, 40.705188], [-73.928857, 40.702472], [-73.928162, 40.703628], [-73.926589, 40.703465], [-73.929201, 40.705188]]], "type": "Polygon"}, "id": "892a100dc0fffff", "properties": {"percentile_speed_kmh": 62.264150943396224}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925995, 40.709742], [-73.923442, 40.707961], [-73.923917, 40.709188], [-73.922637, 40.709947], [-73.925995, 40.709742]]], "type": "Polygon"}, "id": "892a100dc13ffff", "properties": {"percentile_speed_kmh": 75.11230907457322}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923604, 40.707438], [-73.921558, 40.705269], [-73.921712, 40.706549], [-73.920267, 40.707078], [-73.923604, 40.707438]]], "type": "Polygon"}, "id": "892a100dc17ffff", "properties": {"percentile_speed_kmh": 38.72416891284816}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93003, 40.710013], [-73.928216, 40.707712], [-73.928237, 40.708998], [-73.926742, 40.709426], [-73.93003, 40.710013]]], "type": "Polygon"}, "id": "892a100dc1bffff", "properties": {"percentile_speed_kmh": 83.33333333333333}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924494, 40.700109], [-73.924627, 40.69738], [-73.923738, 40.698445], [-73.92221, 40.698103], [-73.924494, 40.700109]]], "type": "Polygon"}, "id": "892a100dc23ffff", "properties": {"percentile_speed_kmh": 64.60017969451931}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923443, 40.696274], [-73.920462, 40.695004], [-73.921266, 40.696113], [-73.920229, 40.697086], [-73.923443, 40.696274]]], "type": "Polygon"}, "id": "892a100dc27ffff", "properties": {"percentile_speed_kmh": 54.53728661275831}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929509, 40.699579], [-73.928009, 40.697135], [-73.92786, 40.698415], [-73.926317, 40.698711], [-73.929509, 40.699579]]], "type": "Polygon"}, "id": "892a100dc2bffff", "properties": {"percentile_speed_kmh": 41.913746630727765}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927149, 40.697102], [-73.925953, 40.694549], [-73.925649, 40.695811], [-73.924078, 40.695983], [-73.927149, 40.697102]]], "type": "Polygon"}, "id": "892a100dc2fffff", "properties": {"percentile_speed_kmh": 67.02605570530099}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923124, 40.702457], [-73.921817, 40.69994], [-73.921569, 40.701211], [-73.920006, 40.701427], [-73.923124, 40.702457]]], "type": "Polygon"}, "id": "892a100dc33ffff", "properties": {"percentile_speed_kmh": 58.490566037735846}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919937, 40.700287], [-73.920614, 40.697612], [-73.919524, 40.698545], [-73.918084, 40.698007], [-73.919937, 40.700287]]], "type": "Polygon"}, "id": "892a100dc37ffff", "properties": {"percentile_speed_kmh": 61.63522012578616}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926839, 40.702656], [-73.926754, 40.699926], [-73.925951, 40.701035], [-73.924399, 40.700774], [-73.926839, 40.702656]]], "type": "Polygon"}, "id": "892a100dc3bffff", "properties": {"percentile_speed_kmh": 41.23989218328841}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938004, 40.710214], [-73.937537, 40.707509], [-73.936895, 40.708685], [-73.935316, 40.708569], [-73.938004, 40.710214]]], "type": "Polygon"}, "id": "892a100dc43ffff", "properties": {"percentile_speed_kmh": 80.90745732255166}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936063, 40.707455], [-73.934938, 40.704881], [-73.934599, 40.706137], [-73.933023, 40.70628], [-73.936063, 40.707455]]], "type": "Polygon"}, "id": "892a100dc47ffff", "properties": {"percentile_speed_kmh": 60.242587601078164}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942042, 40.710194], [-73.942057, 40.707463], [-73.941214, 40.708552], [-73.939671, 40.708254], [-73.942042, 40.710194]]], "type": "Polygon"}, "id": "892a100dc4bffff", "properties": {"percentile_speed_kmh": 57.277628032345014}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940588, 40.707114], [-73.938833, 40.704783], [-73.938821, 40.706069], [-73.937315, 40.706472], [-73.940588, 40.707114]]], "type": "Polygon"}, "id": "892a100dc4fffff", "properties": {"percentile_speed_kmh": 63.97124887690925}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936377, 40.712645], [-73.934981, 40.710159], [-73.934778, 40.711435], [-73.933223, 40.711687], [-73.936377, 40.712645]]], "type": "Polygon"}, "id": "892a100dc53ffff", "properties": {"percentile_speed_kmh": 74.52830188679245}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934271, 40.709935], [-73.932542, 40.707591], [-73.932515, 40.708877], [-73.931005, 40.709269], [-73.934271, 40.709935]]], "type": "Polygon"}, "id": "892a100dc57ffff", "properties": {"percentile_speed_kmh": 70.1707097933513}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940452, 40.712679], [-73.939523, 40.710054], [-73.93909, 40.711291], [-73.937506, 40.711356], [-73.940452, 40.712679]]], "type": "Polygon"}, "id": "892a100dc5bffff", "properties": {"percentile_speed_kmh": 53.05480682839173}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935224, 40.702479], [-73.935452, 40.699754], [-73.934526, 40.700798], [-73.93301, 40.700421], [-73.935224, 40.702479]]], "type": "Polygon"}, "id": "892a100dc63ffff", "properties": {"percentile_speed_kmh": 75.60646900269542}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9339, 40.699341], [-73.932087, 40.69704], [-73.932107, 40.698326], [-73.930612, 40.698754], [-73.9339, 40.699341]]], "type": "Polygon"}, "id": "892a100dc67ffff", "properties": {"percentile_speed_kmh": 61.09613656783468}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940176, 40.70203], [-73.93895, 40.699486], [-73.938661, 40.700751], [-73.937092, 40.700935], [-73.940176, 40.70203]]], "type": "Polygon"}, "id": "892a100dc6bffff", "properties": {"percentile_speed_kmh": 79.29020664869721}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93773, 40.699588], [-73.936984, 40.696925], [-73.936467, 40.698141], [-73.934881, 40.698133], [-73.93773, 40.699588]]], "type": "Polygon"}, "id": "892a100dc6fffff", "properties": {"percentile_speed_kmh": 71.96765498652292}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93354, 40.705044], [-73.933054, 40.702341], [-73.93242, 40.70352], [-73.93084, 40.703412], [-73.93354, 40.705044]]], "type": "Polygon"}, "id": "892a100dc73ffff", "properties": {"percentile_speed_kmh": 76.28032345013477}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.931274, 40.702475], [-73.930851, 40.699766], [-73.93019, 40.700935], [-73.928613, 40.700802], [-73.931274, 40.702475]]], "type": "Polygon"}, "id": "892a100dc77ffff", "properties": {"percentile_speed_kmh": 65.09433962264151}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.937898, 40.704886], [-73.937226, 40.70221], [-73.936675, 40.703416], [-73.93509, 40.703379], [-73.937898, 40.704886]]], "type": "Polygon"}, "id": "892a100dc7bffff", "properties": {"percentile_speed_kmh": 73.58490566037736}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917541, 40.709514], [-73.914437, 40.708456], [-73.915355, 40.709505], [-73.914424, 40.710547], [-73.917541, 40.709514]]], "type": "Polygon"}, "id": "892a100dc87ffff", "properties": {"percentile_speed_kmh": 69.40700808625337}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921802, 40.709563], [-73.918859, 40.708236], [-73.919629, 40.70936], [-73.918564, 40.710313], [-73.921802, 40.709563]]], "type": "Polygon"}, "id": "892a100dc8fffff", "properties": {"percentile_speed_kmh": 92.94699011680143}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917285, 40.70386], [-73.913952, 40.703475], [-73.915167, 40.704301], [-73.914593, 40.7055], [-73.917285, 40.70386]]], "type": "Polygon"}, "id": "892a100dca3ffff", "properties": {"percentile_speed_kmh": 54.17789757412399}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914896, 40.702335], [-73.912747, 40.700232], [-73.912963, 40.701507], [-73.911544, 40.702081], [-73.914896, 40.702335]]], "type": "Polygon"}, "id": "892a100dca7ffff", "properties": {"percentile_speed_kmh": 59.299191374663074}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921327, 40.704911], [-73.919401, 40.702671], [-73.919485, 40.703955], [-73.918012, 40.704432], [-73.921327, 40.704911]]], "type": "Polygon"}, "id": "892a100dcabffff", "properties": {"percentile_speed_kmh": 38.00539083557951}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.918936, 40.702497], [-73.917423, 40.700057], [-73.917281, 40.701338], [-73.915739, 40.70164], [-73.918936, 40.702497]]], "type": "Polygon"}, "id": "892a100dcafffff", "properties": {"percentile_speed_kmh": 40.02695417789757}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914953, 40.706049], [-73.911683, 40.706699], [-73.91319, 40.707099], [-73.913207, 40.708385], [-73.914953, 40.706049]]], "type": "Polygon"}, "id": "892a100dcb3ffff", "properties": {"percentile_speed_kmh": 88.31985624438454}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.913059, 40.704179], [-73.909827, 40.703416], [-73.910886, 40.704373], [-73.910109, 40.705494], [-73.913059, 40.704179]]], "type": "Polygon"}, "id": "892a100dcb7ffff", "properties": {"percentile_speed_kmh": 43.39622641509434}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919508, 40.706405], [-73.916163, 40.706093], [-73.917405, 40.706892], [-73.916871, 40.708103], [-73.919508, 40.706405]]], "type": "Polygon"}, "id": "892a100dcbbffff", "properties": {"percentile_speed_kmh": 71.1141060197664}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929953, 40.715547], [-73.928835, 40.71297], [-73.928493, 40.714227], [-73.926916, 40.714367], [-73.929953, 40.715547]]], "type": "Polygon"}, "id": "892a100dcc3ffff", "properties": {"percentile_speed_kmh": 96.04672057502246}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928156, 40.712479], [-73.925865, 40.710478], [-73.926168, 40.71174], [-73.924791, 40.712378], [-73.928156, 40.712479]]], "type": "Polygon"}, "id": "892a100dcc7ffff", "properties": {"percentile_speed_kmh": 95.23809523809524}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93447, 40.715217], [-73.932746, 40.71287], [-73.932716, 40.714156], [-73.931205, 40.714546], [-73.93447, 40.715217]]], "type": "Polygon"}, "id": "892a100dccbffff", "properties": {"percentile_speed_kmh": 91.19496855345912}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932345, 40.712497], [-73.930311, 40.71032], [-73.930458, 40.711601], [-73.929009, 40.712124], [-73.932345, 40.712497]]], "type": "Polygon"}, "id": "892a100dccfffff", "properties": {"percentile_speed_kmh": 90.74573225516622}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928409, 40.717656], [-73.925938, 40.7158], [-73.926358, 40.717041], [-73.925044, 40.717761], [-73.928409, 40.717656]]], "type": "Polygon"}, "id": "892a100dcd3ffff", "properties": {"percentile_speed_kmh": 96.8104222821204}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925935, 40.715433], [-73.924184, 40.713099], [-73.924169, 40.714385], [-73.922662, 40.714787], [-73.925935, 40.715433]]], "type": "Polygon"}, "id": "892a100dcd7ffff", "properties": {"percentile_speed_kmh": 98.51752021563343}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.932343, 40.718004], [-73.930853, 40.715555], [-73.930699, 40.716835], [-73.929154, 40.717127], [-73.932343, 40.718004]]], "type": "Polygon"}, "id": "892a100dcdbffff", "properties": {"percentile_speed_kmh": 98.29290206648697}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908837, 40.688399], [-73.911846, 40.689622], [-73.911017, 40.688526], [-73.91203, 40.687537], [-73.908837, 40.688399]]], "type": "Polygon"}, "id": "892a100dd03ffff", "properties": {"percentile_speed_kmh": 46.58580413297394}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915576, 40.687012], [-73.91326, 40.688994], [-73.914793, 40.688668], [-73.915665, 40.689742], [-73.915576, 40.687012]]], "type": "Polygon"}, "id": "892a100dd0bffff", "properties": {"percentile_speed_kmh": 56.64869721473495}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914508, 40.685738], [-73.91134, 40.684817], [-73.912325, 40.685824], [-73.911466, 40.686904], [-73.914508, 40.685738]]], "type": "Polygon"}, "id": "892a100dd0fffff", "properties": {"percentile_speed_kmh": 62.80323450134771}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.906848, 40.69155], [-73.910173, 40.691969], [-73.908971, 40.691131], [-73.909564, 40.689938], [-73.906848, 40.69155]]], "type": "Polygon"}, "id": "892a100dd13ffff", "properties": {"percentile_speed_kmh": 61.85983827493261}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904574, 40.688785], [-73.907808, 40.689538], [-73.906745, 40.688584], [-73.907517, 40.687461], [-73.904574, 40.688785]]], "type": "Polygon"}, "id": "892a100dd17ffff", "properties": {"percentile_speed_kmh": 23.405211141060196}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.913906, 40.689862], [-73.9111, 40.69137], [-73.912684, 40.691333], [-73.913236, 40.692538], [-73.913906, 40.689862]]], "type": "Polygon"}, "id": "892a100dd1bffff", "properties": {"percentile_speed_kmh": 82.47978436657682}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922918, 40.690011], [-73.919634, 40.690609], [-73.921131, 40.691032], [-73.921117, 40.692318], [-73.922918, 40.690011]]], "type": "Polygon"}, "id": "892a100dd43ffff", "properties": {"percentile_speed_kmh": 55.92991913746631}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919038, 40.689751], [-73.920588, 40.687327], [-73.919225, 40.687985], [-73.918021, 40.687148], [-73.919038, 40.689751]]], "type": "Polygon"}, "id": "892a100dd47ffff", "properties": {"percentile_speed_kmh": 55.34591194968554}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927155, 40.68986], [-73.923896, 40.690541], [-73.925408, 40.690926], [-73.925443, 40.692211], [-73.927155, 40.68986]]], "type": "Polygon"}, "id": "892a100dd4bffff", "properties": {"percentile_speed_kmh": 67.29559748427673}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924772, 40.687137], [-73.921643, 40.688143], [-73.923203, 40.688372], [-73.923436, 40.689643], [-73.924772, 40.687137]]], "type": "Polygon"}, "id": "892a100dd4fffff", "properties": {"percentile_speed_kmh": 44.519317160826596}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919891, 40.694979], [-73.92028, 40.692266], [-73.919294, 40.693273], [-73.917802, 40.692837], [-73.919891, 40.694979]]], "type": "Polygon"}, "id": "892a100dd53ffff", "properties": {"percentile_speed_kmh": 78.16711590296495}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.916881, 40.692435], [-73.918628, 40.690101], [-73.917214, 40.690682], [-73.916082, 40.689782], [-73.916881, 40.692435]]], "type": "Polygon"}, "id": "892a100dd57ffff", "properties": {"percentile_speed_kmh": 59.25426774483378}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92548, 40.69356], [-73.922481, 40.69232], [-73.923301, 40.693421], [-73.922279, 40.694404], [-73.92548, 40.69356]]], "type": "Polygon"}, "id": "892a100dd5bffff", "properties": {"percentile_speed_kmh": 56.60377358490566}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919959, 40.684255], [-73.919406, 40.681562], [-73.918802, 40.68275], [-73.91722, 40.682668], [-73.919959, 40.684255]]], "type": "Polygon"}, "id": "892a100dd63ffff", "properties": {"percentile_speed_kmh": 37.96046720575023}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924374, 40.681716], [-73.921459, 40.683081], [-73.923043, 40.683122], [-73.923502, 40.684353], [-73.924374, 40.681716]]], "type": "Polygon"}, "id": "892a100dd6bffff", "properties": {"percentile_speed_kmh": 82.56963162623539}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922305, 40.679251], [-73.919209, 40.68032], [-73.920775, 40.680517], [-73.921047, 40.681783], [-73.922305, 40.679251]]], "type": "Polygon"}, "id": "892a100dd6fffff", "properties": {"percentile_speed_kmh": 68.55345911949685}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91808, 40.684532], [-73.915152, 40.685878], [-73.916735, 40.68593], [-73.917182, 40.687163], [-73.91808, 40.684532]]], "type": "Polygon"}, "id": "892a100dd73ffff", "properties": {"percentile_speed_kmh": 55.21114106019766}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91457, 40.684587], [-73.916118, 40.682162], [-73.914756, 40.68282], [-73.913552, 40.681984], [-73.91457, 40.684587]]], "type": "Polygon"}, "id": "892a100dd77ffff", "properties": {"percentile_speed_kmh": 66.66666666666667}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922734, 40.686416], [-73.920891, 40.684131], [-73.920928, 40.685417], [-73.91944, 40.685858], [-73.922734, 40.686416]]], "type": "Polygon"}, "id": "892a100dd7bffff", "properties": {"percentile_speed_kmh": 55.300988319856245}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904919, 40.694501], [-73.908283, 40.694422], [-73.906913, 40.693775], [-73.907229, 40.692515], [-73.904919, 40.694501]]], "type": "Polygon"}, "id": "892a100dd8bffff", "properties": {"percentile_speed_kmh": 50.13477088948787}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901977, 40.696181], [-73.898613, 40.696096], [-73.899933, 40.696809], [-73.899524, 40.698051], [-73.901977, 40.696181]]], "type": "Polygon"}, "id": "892a100dd93ffff", "properties": {"percentile_speed_kmh": 41.59928122192273}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91243, 40.697745], [-73.914752, 40.695768], [-73.913218, 40.69609], [-73.912349, 40.695014], [-73.91243, 40.697745]]], "type": "Polygon"}, "id": "892a100ddc3ffff", "properties": {"percentile_speed_kmh": 59.38903863432165}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909159, 40.69433], [-73.912525, 40.694368], [-73.91119, 40.693674], [-73.911572, 40.692426], [-73.909159, 40.69433]]], "type": "Polygon"}, "id": "892a100ddc7ffff", "properties": {"percentile_speed_kmh": 64.46540880503144}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917392, 40.697731], [-73.918621, 40.695188], [-73.91735, 40.695957], [-73.916045, 40.695228], [-73.917392, 40.697731]]], "type": "Polygon"}, "id": "892a100ddcbffff", "properties": {"percentile_speed_kmh": 78.4366576819407}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.913763, 40.694654], [-73.916941, 40.693754], [-73.915394, 40.693473], [-73.915226, 40.692195], [-73.913763, 40.694654]]], "type": "Polygon"}, "id": "892a100ddcfffff", "properties": {"percentile_speed_kmh": 83.5130278526505}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910342, 40.700423], [-73.912738, 40.698505], [-73.911192, 40.698789], [-73.910364, 40.697692], [-73.910342, 40.700423]]], "type": "Polygon"}, "id": "892a100ddd3ffff", "properties": {"percentile_speed_kmh": 22.371967654986523}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909385, 40.697883], [-73.909636, 40.695159], [-73.908701, 40.696198], [-73.907189, 40.695813], [-73.909385, 40.697883]]], "type": "Polygon"}, "id": "892a100ddd7ffff", "properties": {"percentile_speed_kmh": 22.0125786163522}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914323, 40.700185], [-73.917105, 40.698647], [-73.915521, 40.698701], [-73.91495, 40.697502], [-73.914323, 40.700185]]], "type": "Polygon"}, "id": "892a100dddbffff", "properties": {"percentile_speed_kmh": 78.8409703504043}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957406, 40.706897], [-73.956321, 40.704311], [-73.955962, 40.705564], [-73.954384, 40.705691], [-73.957406, 40.706897]]], "type": "Polygon"}, "id": "892a100de03ffff", "properties": {"percentile_speed_kmh": 89.4429469901168}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955414, 40.704101], [-73.953723, 40.701739], [-73.953676, 40.703025], [-73.952159, 40.7034], [-73.955414, 40.704101]]], "type": "Polygon"}, "id": "892a100de07ffff", "properties": {"percentile_speed_kmh": 88.00539083557952}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962087, 40.706361], [-73.959935, 40.70426], [-73.960152, 40.705534], [-73.958734, 40.706109], [-73.962087, 40.706361]]], "type": "Polygon"}, "id": "892a100de0bffff", "properties": {"percentile_speed_kmh": 91.77897574123989}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959482, 40.704169], [-73.958298, 40.701612], [-73.957988, 40.702874], [-73.956415, 40.70304], [-73.959482, 40.704169]]], "type": "Polygon"}, "id": "892a100de0fffff", "properties": {"percentile_speed_kmh": 84.27672955974843}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955623, 40.709375], [-73.953918, 40.707019], [-73.953878, 40.708305], [-73.952363, 40.708687], [-73.955623, 40.709375]]], "type": "Polygon"}, "id": "892a100de13ffff", "properties": {"percentile_speed_kmh": 63.926325247079966}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952977, 40.707111], [-73.952247, 40.704445], [-73.951722, 40.705659], [-73.950136, 40.705645], [-73.952977, 40.707111]]], "type": "Polygon"}, "id": "892a100de17ffff", "properties": {"percentile_speed_kmh": 92.18328840970351}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960192, 40.70878], [-73.957561, 40.707074], [-73.95809, 40.708287], [-73.956844, 40.709082], [-73.960192, 40.70878]]], "type": "Polygon"}, "id": "892a100de1bffff", "properties": {"percentile_speed_kmh": 88.23000898472597}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955177, 40.698856], [-73.953573, 40.696455], [-73.953479, 40.697739], [-73.95195, 40.698079], [-73.955177, 40.698856]]], "type": "Polygon"}, "id": "892a100de23ffff", "properties": {"percentile_speed_kmh": 83.06379155435759}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953247, 40.695828], [-73.95073, 40.694013], [-73.951181, 40.695246], [-73.949885, 40.695988], [-73.953247, 40.695828]]], "type": "Polygon"}, "id": "892a100de27ffff", "properties": {"percentile_speed_kmh": 75.33692722371967}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959449, 40.698741], [-73.957843, 40.696341], [-73.95775, 40.697625], [-73.956221, 40.697965], [-73.959449, 40.698741]]], "type": "Polygon"}, "id": "892a100de2bffff", "properties": {"percentile_speed_kmh": 91.15004492362982}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957264, 40.696105], [-73.955521, 40.693768], [-73.955502, 40.695054], [-73.953994, 40.695452], [-73.957264, 40.696105]]], "type": "Polygon"}, "id": "892a100de2fffff", "properties": {"percentile_speed_kmh": 91.32973944294699}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952201, 40.702049], [-73.952638, 40.699341], [-73.951633, 40.700336], [-73.950149, 40.699884], [-73.952201, 40.702049]]], "type": "Polygon"}, "id": "892a100de33ffff", "properties": {"percentile_speed_kmh": 81.94070080862534}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950118, 40.699427], [-73.950257, 40.696699], [-73.949365, 40.697762], [-73.947838, 40.697418], [-73.950118, 40.699427]]], "type": "Polygon"}, "id": "892a100de37ffff", "properties": {"percentile_speed_kmh": 84.72596585804133}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95735, 40.7015], [-73.95591, 40.699031], [-73.955729, 40.700309], [-73.954179, 40.70058], [-73.95735, 40.7015]]], "type": "Polygon"}, "id": "892a100de3bffff", "properties": {"percentile_speed_kmh": 85.66936208445642}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96877, 40.707841], [-73.965462, 40.707326], [-73.966628, 40.708199], [-73.965982, 40.709374], [-73.96877, 40.707841]]], "type": "Polygon"}, "id": "892a100de43ffff", "properties": {"percentile_speed_kmh": 82.30008984725966}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966517, 40.70591], [-73.963803, 40.704292], [-73.964393, 40.705486], [-73.963187, 40.706322], [-73.966517, 40.70591]]], "type": "Polygon"}, "id": "892a100de47ffff", "properties": {"percentile_speed_kmh": 82.16531895777179}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973008, 40.708435], [-73.970377, 40.70673], [-73.970907, 40.707942], [-73.96966, 40.708738], [-73.973008, 40.708435]]], "type": "Polygon"}, "id": "892a100de4bffff", "properties": {"percentile_speed_kmh": 73.98921832884096}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970831, 40.705286], [-73.9676, 40.704513], [-73.968656, 40.705473], [-73.967873, 40.706592], [-73.970831, 40.705286]]], "type": "Polygon"}, "id": "892a100de4fffff", "properties": {"percentile_speed_kmh": 68.14914645103325}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966656, 40.711359], [-73.964201, 40.709489], [-73.96461, 40.710732], [-73.96329, 40.711445], [-73.966656, 40.711359]]], "type": "Polygon"}, "id": "892a100de53ffff", "properties": {"percentile_speed_kmh": 66.89128481581312}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964497, 40.707953], [-73.961188, 40.707444], [-73.962356, 40.708314], [-73.961714, 40.709491], [-73.964497, 40.707953]]], "type": "Polygon"}, "id": "892a100de57ffff", "properties": {"percentile_speed_kmh": 78.70619946091644}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971033, 40.710898], [-73.968097, 40.709559], [-73.968861, 40.710686], [-73.96779, 40.711635], [-73.971033, 40.710898]]], "type": "Polygon"}, "id": "892a100de5bffff", "properties": {"percentile_speed_kmh": 85.62443845462712}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965737, 40.701394], [-73.96467, 40.698804], [-73.964303, 40.700055], [-73.962724, 40.700174], [-73.965737, 40.701394]]], "type": "Polygon"}, "id": "892a100de63ffff", "properties": {"percentile_speed_kmh": 81.67115902964959}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963779, 40.698564], [-73.962018, 40.696237], [-73.962009, 40.697523], [-73.960505, 40.697928], [-73.963779, 40.698564]]], "type": "Polygon"}, "id": "892a100de67ffff", "properties": {"percentile_speed_kmh": 89.08355795148248}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969953, 40.701317], [-73.969014, 40.698694], [-73.968586, 40.699933], [-73.967002, 40.700001], [-73.969953, 40.701317]]], "type": "Polygon"}, "id": "892a100de6bffff", "properties": {"percentile_speed_kmh": 73.80952380952381}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968116, 40.698372], [-73.966176, 40.696139], [-73.966267, 40.697423], [-73.964797, 40.697906], [-73.968116, 40.698372]]], "type": "Polygon"}, "id": "892a100de6fffff", "properties": {"percentile_speed_kmh": 72.8661275831087}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963888, 40.703941], [-73.962375, 40.701501], [-73.962233, 40.702782], [-73.960691, 40.703083], [-73.963888, 40.703941]]], "type": "Polygon"}, "id": "892a100de73ffff", "properties": {"percentile_speed_kmh": 86.29829290206648}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961583, 40.701419], [-73.960237, 40.698915], [-73.960008, 40.700188], [-73.958449, 40.70042], [-73.961583, 40.701419]]], "type": "Polygon"}, "id": "892a100de77ffff", "properties": {"percentile_speed_kmh": 90.97035040431267}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968179, 40.703808], [-73.966617, 40.701388], [-73.9665, 40.702671], [-73.964965, 40.702993], [-73.968179, 40.703808]]], "type": "Polygon"}, "id": "892a100de7bffff", "properties": {"percentile_speed_kmh": 77.62803234501348}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948886, 40.712517], [-73.948203, 40.709842], [-73.947657, 40.71105], [-73.946071, 40.711017], [-73.948886, 40.712517]]], "type": "Polygon"}, "id": "892a100de83ffff", "properties": {"percentile_speed_kmh": 60.646900269541774}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946556, 40.709982], [-73.946073, 40.707279], [-73.945438, 40.708458], [-73.943858, 40.708348], [-73.946556, 40.709982]]], "type": "Polygon"}, "id": "892a100de87ffff", "properties": {"percentile_speed_kmh": 67.65498652291105}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953606, 40.712052], [-73.951853, 40.70972], [-73.95184, 40.711006], [-73.950333, 40.711408], [-73.953606, 40.712052]]], "type": "Polygon"}, "id": "892a100de8bffff", "properties": {"percentile_speed_kmh": 44.878706199460915}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951366, 40.709472], [-73.949619, 40.707137], [-73.949602, 40.708423], [-73.948095, 40.708822], [-73.951366, 40.709472]]], "type": "Polygon"}, "id": "892a100de8fffff", "properties": {"percentile_speed_kmh": 67.8796046720575}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947293, 40.71487], [-73.945556, 40.712529], [-73.945533, 40.713816], [-73.944024, 40.714211], [-73.947293, 40.71487]]], "type": "Polygon"}, "id": "892a100de93ffff", "properties": {"percentile_speed_kmh": 35.39982030548068}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945054, 40.712289], [-73.943321, 40.709946], [-73.943296, 40.711233], [-73.941786, 40.711626], [-73.945054, 40.712289]]], "type": "Polygon"}, "id": "892a100de97ffff", "properties": {"percentile_speed_kmh": 40.56603773584906}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951664, 40.714635], [-73.949654, 40.712444], [-73.949786, 40.713726], [-73.948332, 40.714238], [-73.951664, 40.714635]]], "type": "Polygon"}, "id": "892a100de9bffff", "properties": {"percentile_speed_kmh": 44.923629829290206}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946578, 40.704575], [-73.9456, 40.701962], [-73.945191, 40.703204], [-73.943608, 40.703288], [-73.946578, 40.704575]]], "type": "Polygon"}, "id": "892a100dea3ffff", "properties": {"percentile_speed_kmh": 89.21832884097034}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944058, 40.702148], [-73.943698, 40.699432], [-73.94301, 40.700591], [-73.941437, 40.700434], [-73.944058, 40.702148]]], "type": "Polygon"}, "id": "892a100dea7ffff", "properties": {"percentile_speed_kmh": 82.12039532794249}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950777, 40.704507], [-73.949963, 40.701857], [-73.949477, 40.703081], [-73.947891, 40.7031], [-73.950777, 40.704507]]], "type": "Polygon"}, "id": "892a100deabffff", "properties": {"percentile_speed_kmh": 78.25696316262353}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94847, 40.701965], [-73.947811, 40.699286], [-73.947254, 40.70049], [-73.945669, 40.700448], [-73.94847, 40.701965]]], "type": "Polygon"}, "id": "892a100deafffff", "properties": {"percentile_speed_kmh": 80.00898472596586}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944348, 40.707385], [-73.943803, 40.70469], [-73.943195, 40.705878], [-73.941613, 40.705792], [-73.944348, 40.707385]]], "type": "Polygon"}, "id": "892a100deb3ffff", "properties": {"percentile_speed_kmh": 73.09074573225516}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942411, 40.704614], [-73.941189, 40.702069], [-73.940898, 40.703333], [-73.939328, 40.703516], [-73.942411, 40.704614]]], "type": "Polygon"}, "id": "892a100deb7ffff", "properties": {"percentile_speed_kmh": 54.35759209344115}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948987, 40.707028], [-73.947603, 40.704538], [-73.947394, 40.705813], [-73.945837, 40.706061], [-73.948987, 40.707028]]], "type": "Polygon"}, "id": "892a100debbffff", "properties": {"percentile_speed_kmh": 77.31356693620845}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959886, 40.714731], [-73.95871, 40.712171], [-73.958396, 40.713432], [-73.956823, 40.713595], [-73.959886, 40.714731]]], "type": "Polygon"}, "id": "892a100dec3ffff", "properties": {"percentile_speed_kmh": 32.83917340521114}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95814, 40.711523], [-73.955579, 40.709749], [-73.95606, 40.710974], [-73.954782, 40.711737], [-73.95814, 40.711523]]], "type": "Polygon"}, "id": "892a100dec7ffff", "properties": {"percentile_speed_kmh": 68.41868823000898}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962242, 40.714907], [-73.964592, 40.712949], [-73.963052, 40.713259], [-73.962196, 40.712176], [-73.962242, 40.714907]]], "type": "Polygon"}, "id": "892a100decbffff", "properties": {"percentile_speed_kmh": 52.20125786163522}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962426, 40.711371], [-73.959809, 40.709652], [-73.960329, 40.710867], [-73.959076, 40.711656], [-73.962426, 40.711371]]], "type": "Polygon"}, "id": "892a100decfffff", "properties": {"percentile_speed_kmh": 23.629829290206647}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958077, 40.717223], [-73.956337, 40.714884], [-73.956316, 40.71617], [-73.954807, 40.716566], [-73.958077, 40.717223]]], "type": "Polygon"}, "id": "892a100ded3ffff", "properties": {"percentile_speed_kmh": 29.290206648697215}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955831, 40.714649], [-73.954112, 40.7123], [-73.95408, 40.713586], [-73.952567, 40.713973], [-73.955831, 40.714649]]], "type": "Polygon"}, "id": "892a100ded7ffff", "properties": {"percentile_speed_kmh": 49.101527403414195}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959919, 40.717486], [-73.962658, 40.715896], [-73.961075, 40.71598], [-73.960469, 40.714791], [-73.959919, 40.717486]]], "type": "Polygon"}, "id": "892a100dedbffff", "properties": {"percentile_speed_kmh": 37.915543575920935}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902398, 40.774284], [-73.900835, 40.771862], [-73.900718, 40.773146], [-73.899181, 40.773468], [-73.902398, 40.774284]]], "type": "Polygon"}, "id": "892a100f02bffff", "properties": {"percentile_speed_kmh": 87.37646001796945}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.900146, 40.771713], [-73.89862, 40.769275], [-73.898483, 40.770558], [-73.896941, 40.770864], [-73.900146, 40.771713]]], "type": "Polygon"}, "id": "892a100f02fffff", "properties": {"percentile_speed_kmh": 75.2021563342318}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910771, 40.77988], [-73.911895, 40.782457], [-73.912235, 40.7812], [-73.913813, 40.781058], [-73.910771, 40.77988]]], "type": "Polygon"}, "id": "892a100f04fffff", "properties": {"percentile_speed_kmh": 56.73854447439353}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909333, 40.775696], [-73.90613, 40.774845], [-73.90715, 40.775831], [-73.906325, 40.776931], [-73.909333, 40.775696]]], "type": "Polygon"}, "id": "892a100f063ffff", "properties": {"percentile_speed_kmh": 37.690925426774484}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90613, 40.77453], [-73.905812, 40.771809], [-73.905105, 40.772962], [-73.903532, 40.772788], [-73.90613, 40.77453]]], "type": "Polygon"}, "id": "892a100f067ffff", "properties": {"percentile_speed_kmh": 84.00718778077268}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910092, 40.775158], [-73.912525, 40.777051], [-73.912132, 40.775803], [-73.913463, 40.775102], [-73.910092, 40.775158]]], "type": "Polygon"}, "id": "892a100f06bffff", "properties": {"percentile_speed_kmh": 20.350404312668463}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911279, 40.773592], [-73.908754, 40.771781], [-73.909209, 40.773014], [-73.907914, 40.773759], [-73.911279, 40.773592]]], "type": "Polygon"}, "id": "892a100f06fffff", "properties": {"percentile_speed_kmh": 28.39173405211141}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904969, 40.779928], [-73.907071, 40.777791], [-73.905575, 40.778223], [-73.904592, 40.777212], [-73.904969, 40.779928]]], "type": "Polygon"}, "id": "892a100f073ffff", "properties": {"percentile_speed_kmh": 69.09254267744834}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.905052, 40.775782], [-73.90183, 40.774978], [-73.902873, 40.775949], [-73.902072, 40.777061], [-73.905052, 40.775782]]], "type": "Polygon"}, "id": "892a100f077ffff", "properties": {"percentile_speed_kmh": 19.40700808625337}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908852, 40.777107], [-73.909267, 40.77982], [-73.909933, 40.778651], [-73.911512, 40.778788], [-73.908852, 40.777107]]], "type": "Polygon"}, "id": "892a100f07bffff", "properties": {"percentile_speed_kmh": 28.34681042228212}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.882823, 40.754963], [-73.879482, 40.754613], [-73.880711, 40.755427], [-73.880156, 40.756632], [-73.882823, 40.754963]]], "type": "Polygon"}, "id": "892a100f123ffff", "properties": {"percentile_speed_kmh": 35.35489667565139}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88005, 40.751667], [-73.877007, 40.752839], [-73.878583, 40.752984], [-73.87892, 40.754241], [-73.88005, 40.751667]]], "type": "Polygon"}, "id": "892a100f127ffff", "properties": {"percentile_speed_kmh": 18.508535489667565}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.886433, 40.754054], [-73.883535, 40.755448], [-73.885121, 40.755474], [-73.885599, 40.756702], [-73.886433, 40.754054]]], "type": "Polygon"}, "id": "892a100f12bffff", "properties": {"percentile_speed_kmh": 24.07906558849955}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.884334, 40.751561], [-73.881282, 40.752718], [-73.882858, 40.752871], [-73.883185, 40.75413], [-73.884334, 40.751561]]], "type": "Polygon"}, "id": "892a100f12fffff", "properties": {"percentile_speed_kmh": 29.424977538185086}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.876488, 40.754002], [-73.875727, 40.756664], [-73.876847, 40.755753], [-73.87827, 40.756321], [-73.876488, 40.754002]]], "type": "Polygon"}, "id": "892a100f137ffff", "properties": {"percentile_speed_kmh": 16.307277628032345}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.883224, 40.759413], [-73.884641, 40.756933], [-73.883314, 40.757639], [-73.882064, 40.756847], [-73.883224, 40.759413]]], "type": "Polygon"}, "id": "892a100f13bffff", "properties": {"percentile_speed_kmh": 65.76819407008087}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.893373, 40.756895], [-73.890065, 40.757416], [-73.891548, 40.757874], [-73.891488, 40.75916], [-73.893373, 40.756895]]], "type": "Polygon"}, "id": "892a100f163ffff", "properties": {"percentile_speed_kmh": 39.03863432165319}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.889942, 40.753671], [-73.888117, 40.755967], [-73.889551, 40.755417], [-73.890654, 40.756342], [-73.889942, 40.753671]]], "type": "Polygon"}, "id": "892a100f167ffff", "properties": {"percentile_speed_kmh": 38.858939802336025}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.897717, 40.756872], [-73.894372, 40.757202], [-73.895811, 40.757744], [-73.89564, 40.759024], [-73.897717, 40.756872]]], "type": "Polygon"}, "id": "892a100f16bffff", "properties": {"percentile_speed_kmh": 78.48158131176999}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.893442, 40.75358], [-73.892961, 40.756285], [-73.893982, 40.7553], [-73.89546, 40.755769], [-73.893442, 40.75358]]], "type": "Polygon"}, "id": "892a100f16fffff", "properties": {"percentile_speed_kmh": 54.896675651392634}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92754, 40.776567], [-73.925191, 40.778528], [-73.926731, 40.778217], [-73.927589, 40.7793], [-73.92754, 40.776567]]], "type": "Polygon"}, "id": "892a100f207ffff", "properties": {"percentile_speed_kmh": 2.830188679245283}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925584, 40.771467], [-73.926391, 40.774121], [-73.926882, 40.772896], [-73.92847, 40.772881], [-73.925584, 40.771467]]], "type": "Polygon"}, "id": "892a100f223ffff", "properties": {"percentile_speed_kmh": 55.121293800539085}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923261, 40.768935], [-73.924258, 40.771546], [-73.92466, 40.770301], [-73.926243, 40.77021], [-73.923261, 40.768935]]], "type": "Polygon"}, "id": "892a100f227ffff", "properties": {"percentile_speed_kmh": 30.2785265049416}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.929677, 40.77148], [-73.93091, 40.774024], [-73.931197, 40.772758], [-73.932768, 40.772572], [-73.929677, 40.77148]]], "type": "Polygon"}, "id": "892a100f22bffff", "properties": {"percentile_speed_kmh": 17.92452830188679}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927545, 40.768817], [-73.928527, 40.771432], [-73.928936, 40.770188], [-73.93052, 40.770103], [-73.927545, 40.768817]]], "type": "Polygon"}, "id": "892a100f22fffff", "properties": {"percentile_speed_kmh": 53.683737646001795}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925399, 40.774016], [-73.922912, 40.775862], [-73.924473, 40.775625], [-73.925251, 40.776747], [-73.925399, 40.774016]]], "type": "Polygon"}, "id": "892a100f233ffff", "properties": {"percentile_speed_kmh": 31.221922731356692}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921174, 40.771667], [-73.922283, 40.774248], [-73.922631, 40.772992], [-73.924209, 40.772857], [-73.921174, 40.771667]]], "type": "Polygon"}, "id": "892a100f237ffff", "properties": {"percentile_speed_kmh": 31.401617250673855}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941709, 40.783101], [-73.938815, 40.781697], [-73.939542, 40.782842], [-73.938438, 40.783767], [-73.941709, 40.783101]]], "type": "Polygon"}, "id": "892a100f243ffff", "properties": {"percentile_speed_kmh": 11.949685534591195}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945038, 40.781464], [-73.942437, 40.783205], [-73.944011, 40.783032], [-73.944718, 40.784186], [-73.945038, 40.781464]]], "type": "Polygon"}, "id": "892a100f24bffff", "properties": {"percentile_speed_kmh": 84.50134770889488}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.939503, 40.786237], [-73.937276, 40.784184], [-73.937537, 40.785453], [-73.936137, 40.786061], [-73.939503, 40.786237]]], "type": "Polygon"}, "id": "892a100f253ffff", "properties": {"percentile_speed_kmh": 34.4115004492363}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94374, 40.784752], [-73.940389, 40.785063], [-73.941825, 40.785614], [-73.941642, 40.786893], [-73.94374, 40.784752]]], "type": "Polygon"}, "id": "892a100f25bffff", "properties": {"percentile_speed_kmh": 87.06199460916442}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941272, 40.772669], [-73.938553, 40.771052], [-73.939145, 40.772247], [-73.937939, 40.773084], [-73.941272, 40.772669]]], "type": "Polygon"}, "id": "892a100f26fffff", "properties": {"percentile_speed_kmh": 12.98292902066487}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.918962, 40.776787], [-73.916643, 40.778771], [-73.918179, 40.778445], [-73.919053, 40.77952], [-73.918962, 40.776787]]], "type": "Polygon"}, "id": "892a100f2a3ffff", "properties": {"percentile_speed_kmh": 21.47349505840072}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915289, 40.774246], [-73.915457, 40.776976], [-73.916227, 40.77585], [-73.917789, 40.776081], [-73.915289, 40.774246]]], "type": "Polygon"}, "id": "892a100f2a7ffff", "properties": {"percentile_speed_kmh": 42.722371967654986}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919856, 40.774045], [-73.919454, 40.776759], [-73.920447, 40.775755], [-73.921939, 40.776195], [-73.919856, 40.774045]]], "type": "Polygon"}, "id": "892a100f2afffff", "properties": {"percentile_speed_kmh": 33.872416891284814}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.916898, 40.779478], [-73.914614, 40.781489], [-73.916144, 40.781145], [-73.917037, 40.782209], [-73.916898, 40.779478]]], "type": "Polygon"}, "id": "892a100f2b3ffff", "properties": {"percentile_speed_kmh": 8.84995507637017}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.913191, 40.776968], [-73.91348, 40.779692], [-73.914199, 40.778544], [-73.91577, 40.778728], [-73.913191, 40.776968]]], "type": "Polygon"}, "id": "892a100f2b7ffff", "properties": {"percentile_speed_kmh": 50.04492362982929}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93637, 40.786871], [-73.934209, 40.78897], [-73.935717, 40.788566], [-73.936673, 40.789594], [-73.93637, 40.786871]]], "type": "Polygon"}, "id": "892a100f2cbffff", "properties": {"percentile_speed_kmh": 78.03234501347708}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915168, 40.761972], [-73.911807, 40.761762], [-73.913087, 40.762523], [-73.912609, 40.76375], [-73.915168, 40.761972]]], "type": "Polygon"}, "id": "892a100f303ffff", "properties": {"percentile_speed_kmh": 42.093441150044924}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911885, 40.758477], [-73.909515, 40.760419], [-73.911058, 40.76012], [-73.911903, 40.76121], [-73.911885, 40.758477]]], "type": "Polygon"}, "id": "892a100f307ffff", "properties": {"percentile_speed_kmh": 80.86253369272237}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919046, 40.76131], [-73.915888, 40.762265], [-73.917444, 40.76252], [-73.917645, 40.763796], [-73.919046, 40.76131]]], "type": "Polygon"}, "id": "892a100f30bffff", "properties": {"percentile_speed_kmh": 64.91464510332435}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917197, 40.760217], [-73.914675, 40.758403], [-73.915128, 40.759637], [-73.913832, 40.76038], [-73.917197, 40.760217]]], "type": "Polygon"}, "id": "892a100f30fffff", "properties": {"percentile_speed_kmh": 33.55795148247979}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911075, 40.766585], [-73.912891, 40.764283], [-73.911459, 40.764838], [-73.910351, 40.763916], [-73.911075, 40.766585]]], "type": "Polygon"}, "id": "892a100f313ffff", "properties": {"percentile_speed_kmh": 66.08265947888589}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910078, 40.763821], [-73.909619, 40.761113], [-73.908973, 40.762289], [-73.907392, 40.762169], [-73.910078, 40.763821]]], "type": "Polygon"}, "id": "892a100f317ffff", "properties": {"percentile_speed_kmh": 21.743036837376458}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917427, 40.765419], [-73.914782, 40.763725], [-73.915321, 40.764936], [-73.91408, 40.765738], [-73.917427, 40.765419]]], "type": "Polygon"}, "id": "892a100f31bffff", "properties": {"percentile_speed_kmh": 37.735849056603776}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.912587, 40.755289], [-73.910506, 40.753139], [-73.91068, 40.754419], [-73.909241, 40.754962], [-73.912587, 40.755289]]], "type": "Polygon"}, "id": "892a100f323ffff", "properties": {"percentile_speed_kmh": 80.7726864330638}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910443, 40.752549], [-73.908067, 40.750611], [-73.908424, 40.751865], [-73.907073, 40.752541], [-73.910443, 40.752549]]], "type": "Polygon"}, "id": "892a100f327ffff", "properties": {"percentile_speed_kmh": 76.01078167115902}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917097, 40.754423], [-73.91396, 40.753425], [-73.914909, 40.754456], [-73.914008, 40.755516], [-73.917097, 40.754423]]], "type": "Polygon"}, "id": "892a100f32bffff", "properties": {"percentile_speed_kmh": 47.124887690925426}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914851, 40.751723], [-73.911628, 40.750926], [-73.912673, 40.751895], [-73.911878, 40.753008], [-73.914851, 40.751723]]], "type": "Polygon"}, "id": "892a100f32fffff", "properties": {"percentile_speed_kmh": 91.82389937106917}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910442, 40.756401], [-73.907159, 40.757019], [-73.908662, 40.757433], [-73.90866, 40.75872], [-73.910442, 40.756401]]], "type": "Polygon"}, "id": "892a100f333ffff", "properties": {"percentile_speed_kmh": 65.72327044025157}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908472, 40.754261], [-73.905121, 40.753966], [-73.906371, 40.754759], [-73.905845, 40.755974], [-73.908472, 40.754261]]], "type": "Polygon"}, "id": "892a100f337ffff", "properties": {"percentile_speed_kmh": 77.5381850853549}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914613, 40.756179], [-73.911416, 40.757044], [-73.91296, 40.757342], [-73.913106, 40.758624], [-73.914613, 40.756179]]], "type": "Polygon"}, "id": "892a100f33bffff", "properties": {"percentile_speed_kmh": 74.39353099730458}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925721, 40.763941], [-73.92243, 40.764533], [-73.923928, 40.76496], [-73.92391, 40.766247], [-73.925721, 40.763941]]], "type": "Polygon"}, "id": "892a100f343ffff", "properties": {"percentile_speed_kmh": 20.440251572327043}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922465, 40.760777], [-73.920405, 40.762941], [-73.921892, 40.76249], [-73.922895, 40.763488], [-73.922465, 40.760777]]], "type": "Polygon"}, "id": "892a100f347ffff", "properties": {"percentile_speed_kmh": 32.52470799640611}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927825, 40.763303], [-73.927787, 40.766037], [-73.92864, 40.764951], [-73.930181, 40.765258], [-73.927825, 40.763303]]], "type": "Polygon"}, "id": "892a100f34bffff", "properties": {"percentile_speed_kmh": 53.144654088050316}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92634, 40.760614], [-73.924923, 40.763094], [-73.92625, 40.762387], [-73.927501, 40.76318], [-73.92634, 40.760614]]], "type": "Polygon"}, "id": "892a100f34fffff", "properties": {"percentile_speed_kmh": 34.097035040431265}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.920599, 40.766761], [-73.922678, 40.768913], [-73.922506, 40.767633], [-73.923945, 40.767091], [-73.920599, 40.766761]]], "type": "Polygon"}, "id": "892a100f353ffff", "properties": {"percentile_speed_kmh": 26.90925426774483}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921105, 40.763758], [-73.918134, 40.76505], [-73.919718, 40.765132], [-73.92013, 40.766375], [-73.921105, 40.763758]]], "type": "Polygon"}, "id": "892a100f357ffff", "properties": {"percentile_speed_kmh": 46.495956873315365}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925271, 40.766257], [-73.926335, 40.76885], [-73.926704, 40.767598], [-73.928285, 40.76748], [-73.925271, 40.766257]]], "type": "Polygon"}, "id": "892a100f35bffff", "properties": {"percentile_speed_kmh": 30.323450134770887}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923321, 40.75612], [-73.920005, 40.756611], [-73.921482, 40.757083], [-73.921404, 40.758368], [-73.923321, 40.75612]]], "type": "Polygon"}, "id": "892a100f363ffff", "properties": {"percentile_speed_kmh": 38.454627133872414}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921369, 40.75445], [-73.918362, 40.753215], [-73.919186, 40.754315], [-73.918166, 40.755301], [-73.921369, 40.75445]]], "type": "Polygon"}, "id": "892a100f367ffff", "properties": {"percentile_speed_kmh": 71.78796046720575}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927709, 40.756168], [-73.924343, 40.756319], [-73.925736, 40.756937], [-73.925461, 40.758205], [-73.927709, 40.756168]]], "type": "Polygon"}, "id": "892a100f36bffff", "properties": {"percentile_speed_kmh": 57.41239892183288}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925544, 40.753727], [-73.922178, 40.753591], [-73.923483, 40.754324], [-73.923045, 40.755561], [-73.925544, 40.753727]]], "type": "Polygon"}, "id": "892a100f36fffff", "properties": {"percentile_speed_kmh": 75.78616352201257}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92157, 40.75971], [-73.91854, 40.758513], [-73.919385, 40.759602], [-73.918384, 40.760601], [-73.92157, 40.75971]]], "type": "Polygon"}, "id": "892a100f373ffff", "properties": {"percentile_speed_kmh": 54.62713387241689}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919278, 40.757403], [-73.916582, 40.755763], [-73.917158, 40.756962], [-73.915942, 40.757789], [-73.919278, 40.757403]]], "type": "Polygon"}, "id": "892a100f377ffff", "properties": {"percentile_speed_kmh": 55.57053009883199}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.925748, 40.759018], [-73.922383, 40.758865], [-73.923682, 40.759605], [-73.923235, 40.76084], [-73.925748, 40.759018]]], "type": "Polygon"}, "id": "892a100f37bffff", "properties": {"percentile_speed_kmh": 39.17340521114106}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904085, 40.769181], [-73.906862, 40.767631], [-73.905276, 40.767691], [-73.904697, 40.766493], [-73.904085, 40.769181]]], "type": "Polygon"}, "id": "892a100f383ffff", "properties": {"percentile_speed_kmh": 67.52021563342318}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909168, 40.769298], [-73.910771, 40.766894], [-73.909393, 40.767533], [-73.908205, 40.766679], [-73.909168, 40.769298]]], "type": "Polygon"}, "id": "892a100f38bffff", "properties": {"percentile_speed_kmh": 59.74842767295598}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.905779, 40.764237], [-73.907187, 40.76672], [-73.907385, 40.765443], [-73.90894, 40.765185], [-73.905779, 40.764237]]], "type": "Polygon"}, "id": "892a100f38fffff", "properties": {"percentile_speed_kmh": 69.04761904761905}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904604, 40.771397], [-73.902593, 40.769203], [-73.902725, 40.770486], [-73.901269, 40.770998], [-73.904604, 40.771397]]], "type": "Polygon"}, "id": "892a100f393ffff", "properties": {"percentile_speed_kmh": 37.33153638814016}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908765, 40.771423], [-73.907074, 40.769059], [-73.907026, 40.770345], [-73.905507, 40.770721], [-73.908765, 40.771423]]], "type": "Polygon"}, "id": "892a100f39bffff", "properties": {"percentile_speed_kmh": 46.63072776280323}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9042, 40.759302], [-73.90087, 40.759722], [-73.902331, 40.760225], [-73.902212, 40.761509], [-73.9042, 40.759302]]], "type": "Polygon"}, "id": "892a100f3a3ffff", "properties": {"percentile_speed_kmh": 88.99371069182389}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902154, 40.757907], [-73.899536, 40.756186], [-73.900056, 40.757402], [-73.898802, 40.758192], [-73.902154, 40.757907]]], "type": "Polygon"}, "id": "892a100f3a7ffff", "properties": {"percentile_speed_kmh": 86.74752920035938}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.906482, 40.761395], [-73.908481, 40.759194], [-73.907007, 40.759672], [-73.905976, 40.758693], [-73.906482, 40.761395]]], "type": "Polygon"}, "id": "892a100f3abffff", "properties": {"percentile_speed_kmh": 54.94159928122192}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90435, 40.755919], [-73.903649, 40.758593], [-73.904748, 40.757665], [-73.906185, 40.758212], [-73.90435, 40.755919]]], "type": "Polygon"}, "id": "892a100f3afffff", "properties": {"percentile_speed_kmh": 57.77178796046721}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.899904, 40.761403], [-73.899906, 40.764136], [-73.900743, 40.763042], [-73.902289, 40.763334], [-73.899904, 40.761403]]], "type": "Polygon"}, "id": "892a100f3b3ffff", "properties": {"percentile_speed_kmh": 87.19676549865228}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90306, 40.762756], [-73.906254, 40.76363], [-73.905244, 40.762637], [-73.90608, 40.761542], [-73.90306, 40.762756]]], "type": "Polygon"}, "id": "892a100f3bbffff", "properties": {"percentile_speed_kmh": 23.719676549865227}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917402, 40.771105], [-73.915492, 40.768852], [-73.915565, 40.770138], [-73.914087, 40.770607], [-73.917402, 40.771105]]], "type": "Polygon"}, "id": "892a100f3c3ffff", "properties": {"percentile_speed_kmh": 28.661275831087153}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915259, 40.767044], [-73.911898, 40.767255], [-73.913308, 40.767848], [-73.913067, 40.769121], [-73.915259, 40.767044]]], "type": "Polygon"}, "id": "892a100f3c7ffff", "properties": {"percentile_speed_kmh": 48.24797843665768}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921384, 40.769098], [-73.918326, 40.770248], [-73.919902, 40.770404], [-73.920225, 40.771664], [-73.921384, 40.769098]]], "type": "Polygon"}, "id": "892a100f3cbffff", "properties": {"percentile_speed_kmh": 15.768194070080861}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919667, 40.768], [-73.917016, 40.766312], [-73.917559, 40.767521], [-73.91632, 40.768326], [-73.919667, 40.768]]], "type": "Polygon"}, "id": "892a100f3cfffff", "properties": {"percentile_speed_kmh": 18.328840970350402}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.912663, 40.774134], [-73.915649, 40.772864], [-73.914066, 40.77277], [-73.913667, 40.771524], [-73.912663, 40.774134]]], "type": "Polygon"}, "id": "892a100f3d3ffff", "properties": {"percentile_speed_kmh": 26.37017070979335}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909795, 40.770163], [-73.912648, 40.77162], [-73.911953, 40.770462], [-73.913083, 40.769557], [-73.909795, 40.770163]]], "type": "Polygon"}, "id": "892a100f3d7ffff", "properties": {"percentile_speed_kmh": 45.8670260557053}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91819, 40.771407], [-73.916764, 40.773884], [-73.918094, 40.77318], [-73.919342, 40.773976], [-73.91819, 40.771407]]], "type": "Polygon"}, "id": "892a100f3dbffff", "properties": {"percentile_speed_kmh": 31.850853548966757}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928243, 40.802271], [-73.931615, 40.802193], [-73.930243, 40.801545], [-73.93056, 40.800283], [-73.928243, 40.802271]]], "type": "Polygon"}, "id": "892a100f64bffff", "properties": {"percentile_speed_kmh": 71.29380053908356}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.928892, 40.803139], [-73.926077, 40.804647], [-73.927665, 40.804611], [-73.928216, 40.805819], [-73.928892, 40.803139]]], "type": "Polygon"}, "id": "892a100f65bffff", "properties": {"percentile_speed_kmh": 95.95687331536388}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92102, 40.808595], [-73.923158, 40.806479], [-73.921654, 40.806895], [-73.920685, 40.805874], [-73.92102, 40.808595]]], "type": "Polygon"}, "id": "892a100f6cbffff", "properties": {"percentile_speed_kmh": 63.79155435759209}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915175, 40.811471], [-73.916553, 40.808974], [-73.915236, 40.809695], [-73.913971, 40.808916], [-73.915175, 40.811471]]], "type": "Polygon"}, "id": "892a100f6d3ffff", "properties": {"percentile_speed_kmh": 21.653189577717878}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921332, 40.809934], [-73.918266, 40.808793], [-73.919142, 40.809867], [-73.918168, 40.810884], [-73.921332, 40.809934]]], "type": "Polygon"}, "id": "892a100f6dbffff", "properties": {"percentile_speed_kmh": 40.116801437556155}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.013354, 40.729279], [-74.011158, 40.731353], [-74.012672, 40.730965], [-74.013611, 40.732003], [-74.013354, 40.729279]]], "type": "Polygon"}, "id": "892a1072127ffff", "properties": {"percentile_speed_kmh": 99.46091644204851}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.011014, 40.731919], [-74.009292, 40.734268], [-74.010702, 40.733676], [-74.011846, 40.734567], [-74.011014, 40.731919]]], "type": "Polygon"}, "id": "892a1072137ffff", "properties": {"percentile_speed_kmh": 98.02336028751122}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00695, 40.74554], [-74.008151, 40.742987], [-74.006888, 40.743766], [-74.005571, 40.743047], [-74.00695, 40.74554]]], "type": "Polygon"}, "id": "892a1072187ffff", "properties": {"percentile_speed_kmh": 24.12398921832884}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.007367, 40.74788], [-74.005647, 40.750231], [-74.007056, 40.749637], [-74.008202, 40.750528], [-74.007367, 40.74788]]], "type": "Polygon"}, "id": "892a1072193ffff", "properties": {"percentile_speed_kmh": 9.613656783468103}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003519, 40.745762], [-74.004945, 40.748239], [-74.005134, 40.746961], [-74.006688, 40.746696], [-74.003519, 40.745762]]], "type": "Polygon"}, "id": "892a1072197ffff", "properties": {"percentile_speed_kmh": 15.723270440251572}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.008192, 40.737943], [-74.004894, 40.738512], [-74.006388, 40.738948], [-74.006357, 40.740235], [-74.008192, 40.737943]]], "type": "Polygon"}, "id": "892a10721a3ffff", "properties": {"percentile_speed_kmh": 65.40880503144653}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003307, 40.737353], [-74.00626, 40.736035], [-74.004675, 40.735967], [-74.004245, 40.734728], [-74.003307, 40.737353]]], "type": "Polygon"}, "id": "892a10721a7ffff", "properties": {"percentile_speed_kmh": 56.109613656783466}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.008509, 40.73755], [-74.010153, 40.735165], [-74.008764, 40.735788], [-74.00759, 40.734922], [-74.008509, 40.73755]]], "type": "Polygon"}, "id": "892a10721afffff", "properties": {"percentile_speed_kmh": 87.6010781671159}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.005169, 40.74006], [-74.003054, 40.742189], [-74.004553, 40.741763], [-74.005531, 40.742777], [-74.005169, 40.74006]]], "type": "Polygon"}, "id": "892a10721b3ffff", "properties": {"percentile_speed_kmh": 52.42587601078167}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001752, 40.737519], [-74.001679, 40.74025], [-74.002546, 40.739172], [-74.004084, 40.739492], [-74.001752, 40.737519]]], "type": "Polygon"}, "id": "892a10721b7ffff", "properties": {"percentile_speed_kmh": 50.98831985624438}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.007109, 40.741273], [-74.01014, 40.742471], [-74.009295, 40.741381], [-74.010298, 40.740383], [-74.007109, 40.741273]]], "type": "Polygon"}, "id": "892a10721bbffff", "properties": {"percentile_speed_kmh": 10.332434860736747}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.002809, 40.75859], [-74.002309, 40.761293], [-74.003338, 40.760312], [-74.004814, 40.760787], [-74.002809, 40.75859]]], "type": "Polygon"}, "id": "892a1072503ffff", "properties": {"percentile_speed_kmh": 0.6289308176100629}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001487, 40.756015], [-73.999422, 40.758176], [-74.000911, 40.757727], [-74.001913, 40.758726], [-74.001487, 40.756015]]], "type": "Polygon"}, "id": "892a1072507ffff", "properties": {"percentile_speed_kmh": 31.716082659478886}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.999886, 40.75886], [-73.997209, 40.760524], [-73.99879, 40.760397], [-73.999445, 40.76157], [-73.999886, 40.75886]]], "type": "Polygon"}, "id": "892a1072517ffff", "properties": {"percentile_speed_kmh": 34.95058400718778}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00151, 40.750798], [-73.999106, 40.752714], [-74.000655, 40.752432], [-74.001482, 40.753531], [-74.00151, 40.750798]]], "type": "Polygon"}, "id": "892a1072523ffff", "properties": {"percentile_speed_kmh": 22.641509433962263}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998728, 40.748104], [-73.997149, 40.750519], [-73.998521, 40.749871], [-73.999719, 40.750716], [-73.998728, 40.748104]]], "type": "Polygon"}, "id": "892a1072527ffff", "properties": {"percentile_speed_kmh": 40.521114106019766}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.005312, 40.750577], [-74.003626, 40.752943], [-74.005026, 40.752336], [-74.006185, 40.753217], [-74.005312, 40.750577]]], "type": "Polygon"}, "id": "892a107252bffff", "properties": {"percentile_speed_kmh": 22.955974842767294}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.004657, 40.749473], [-74.001552, 40.748405], [-74.002466, 40.749458], [-74.00153, 40.750497], [-74.004657, 40.749473]]], "type": "Polygon"}, "id": "892a107252fffff", "properties": {"percentile_speed_kmh": 25.87601078167116}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.000353, 40.754131], [-73.997006, 40.754462], [-73.998446, 40.755004], [-73.998275, 40.756284], [-74.000353, 40.754131]]], "type": "Polygon"}, "id": "892a1072533ffff", "properties": {"percentile_speed_kmh": 21.114106019766396}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995754, 40.750934], [-73.995894, 40.753664], [-73.996675, 40.752544], [-73.998236, 40.752784], [-73.995754, 40.750934]]], "type": "Polygon"}, "id": "892a1072537ffff", "properties": {"percentile_speed_kmh": 29.739442946990117}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00477, 40.75427], [-74.001405, 40.754085], [-74.002694, 40.754837], [-74.00223, 40.756068], [-74.00477, 40.75427]]], "type": "Polygon"}, "id": "892a107253bffff", "properties": {"percentile_speed_kmh": 10.422282120395328}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.007829, 40.753207], [-74.005716, 40.755336], [-74.007214, 40.75491], [-74.008193, 40.755924], [-74.007829, 40.753207]]], "type": "Polygon"}, "id": "892a1072577ffff", "properties": {"percentile_speed_kmh": 90.11680143755615}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995806, 40.764254], [-73.993144, 40.765932], [-73.994723, 40.765797], [-73.995388, 40.766966], [-73.995806, 40.764254]]], "type": "Polygon"}, "id": "892a1072583ffff", "properties": {"percentile_speed_kmh": 76.86433063791554}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992886, 40.761489], [-73.991221, 40.763866], [-73.992616, 40.76325], [-73.993783, 40.764123], [-73.992886, 40.761489]]], "type": "Polygon"}, "id": "892a1072587ffff", "properties": {"percentile_speed_kmh": 34.99550763701707}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00034, 40.764281], [-73.997364, 40.765568], [-73.998949, 40.765653], [-73.999359, 40.766896], [-74.00034, 40.764281]]], "type": "Polygon"}, "id": "892a107258bffff", "properties": {"percentile_speed_kmh": 15.49865229110512}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.997746, 40.761514], [-73.99521, 40.763316], [-73.996777, 40.763106], [-73.997525, 40.764241], [-73.997746, 40.761514]]], "type": "Polygon"}, "id": "892a107258fffff", "properties": {"percentile_speed_kmh": 66.0377358490566}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.993598, 40.766883], [-73.99117, 40.768781], [-73.992723, 40.768511], [-73.993537, 40.769616], [-73.993598, 40.766883]]], "type": "Polygon"}, "id": "892a1072593ffff", "properties": {"percentile_speed_kmh": 59.79335130278526}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990447, 40.764184], [-73.989469, 40.7668], [-73.990662, 40.76595], [-73.992038, 40.766594], [-73.990447, 40.764184]]], "type": "Polygon"}, "id": "892a1072597ffff", "properties": {"percentile_speed_kmh": 39.937106918238996}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998164, 40.766896], [-73.995355, 40.768409], [-73.996943, 40.768369], [-73.997499, 40.769575], [-73.998164, 40.766896]]], "type": "Polygon"}, "id": "892a107259bffff", "properties": {"percentile_speed_kmh": 92.63252470799641}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992079, 40.756226], [-73.991455, 40.758912], [-73.992528, 40.757963], [-73.993981, 40.758483], [-73.992079, 40.756226]]], "type": "Polygon"}, "id": "892a10725a3ffff", "properties": {"percentile_speed_kmh": 30.36837376460018}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988543, 40.754491], [-73.990869, 40.75647], [-73.990545, 40.75521], [-73.991914, 40.754558], [-73.988543, 40.754491]]], "type": "Polygon"}, "id": "892a10725a7ffff", "properties": {"percentile_speed_kmh": 27.313566936208446}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.997141, 40.756117], [-73.995182, 40.758341], [-73.996648, 40.757846], [-73.997697, 40.758813], [-73.997141, 40.756117]]], "type": "Polygon"}, "id": "892a10725abffff", "properties": {"percentile_speed_kmh": 21.024258760107816}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994821, 40.75352], [-73.992983, 40.755812], [-73.994421, 40.755265], [-73.995521, 40.756194], [-73.994821, 40.75352]]], "type": "Polygon"}, "id": "892a10725afffff", "properties": {"percentile_speed_kmh": 32.255166217430364}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989611, 40.759047], [-73.989833, 40.761774], [-73.99058, 40.760638], [-73.992148, 40.760848], [-73.989611, 40.759047]]], "type": "Polygon"}, "id": "892a10725b3ffff", "properties": {"percentile_speed_kmh": 31.671159029649594}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986492, 40.757221], [-73.988872, 40.759157], [-73.988514, 40.757903], [-73.989864, 40.757226], [-73.986492, 40.757221]]], "type": "Polygon"}, "id": "892a10725b7ffff", "properties": {"percentile_speed_kmh": 36.298292902066486}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994815, 40.758781], [-73.993323, 40.761233], [-73.994672, 40.760552], [-73.995899, 40.761369], [-73.994815, 40.758781]]], "type": "Polygon"}, "id": "892a10725bbffff", "properties": {"percentile_speed_kmh": 28.122192273135667}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.014781, 40.703075], [-74.015923, 40.705644], [-74.016254, 40.704386], [-74.01783, 40.704237], [-74.014781, 40.703075]]], "type": "Polygon"}, "id": "892a1072803ffff", "properties": {"percentile_speed_kmh": 6.4240790655885}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.013407, 40.705462], [-74.013156, 40.708186], [-74.014092, 40.707147], [-74.015606, 40.707531], [-74.013407, 40.705462]]], "type": "Polygon"}, "id": "892a1072813ffff", "properties": {"percentile_speed_kmh": 5.480682839173405}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.012663, 40.703011], [-74.009971, 40.704654], [-74.011551, 40.704539], [-74.012192, 40.705716], [-74.012663, 40.703011]]], "type": "Polygon"}, "id": "892a1072817ffff", "properties": {"percentile_speed_kmh": 4.8517520215633425}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01792, 40.705295], [-74.017214, 40.707966], [-74.018316, 40.70704], [-74.019751, 40.707588], [-74.01792, 40.705295]]], "type": "Polygon"}, "id": "892a107281bffff", "properties": {"percentile_speed_kmh": 5.570530098831986}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.009291, 40.710364], [-74.007128, 40.70827], [-74.007351, 40.709543], [-74.005934, 40.710123], [-74.009291, 40.710364]]], "type": "Polygon"}, "id": "892a1072883ffff", "properties": {"percentile_speed_kmh": 9.793351302785265}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.006944, 40.70627], [-74.003643, 40.706819], [-74.005131, 40.707264], [-74.005088, 40.70855], [-74.006944, 40.70627]]], "type": "Polygon"}, "id": "892a1072887ffff", "properties": {"percentile_speed_kmh": 7.277628032345013}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.012793, 40.708254], [-74.010206, 40.710004], [-74.011777, 40.709826], [-74.01249, 40.710975], [-74.012793, 40.708254]]], "type": "Polygon"}, "id": "892a107288bffff", "properties": {"percentile_speed_kmh": 9.164420485175201}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.010566, 40.705679], [-74.00796, 40.70741], [-74.009533, 40.707243], [-74.010234, 40.708397], [-74.010566, 40.705679]]], "type": "Polygon"}, "id": "892a107288fffff", "properties": {"percentile_speed_kmh": 8.400718778077268}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.006265, 40.713768], [-74.006414, 40.711039], [-74.005518, 40.7121], [-74.00399, 40.711753], [-74.006265, 40.713768]]], "type": "Polygon"}, "id": "892a1072893ffff", "properties": {"percentile_speed_kmh": 7.053009883198563}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.005225, 40.709791], [-74.002108, 40.708755], [-74.003037, 40.709798], [-74.002117, 40.710846], [-74.005225, 40.709791]]], "type": "Polygon"}, "id": "892a1072897ffff", "properties": {"percentile_speed_kmh": 14.555256064690026}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.009976, 40.713739], [-74.011161, 40.711182], [-74.009903, 40.711966], [-74.008583, 40.711252], [-74.009976, 40.713739]]], "type": "Polygon"}, "id": "892a107289bffff", "properties": {"percentile_speed_kmh": 14.779874213836477}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.006151, 40.703093], [-74.00568, 40.700388], [-74.005039, 40.701565], [-74.003459, 40.70145], [-74.006151, 40.703093]]], "type": "Polygon"}, "id": "892a10728a3ffff", "properties": {"percentile_speed_kmh": 73.36028751123091}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003711, 40.700594], [-74.003653, 40.697863], [-74.002839, 40.698967], [-74.001288, 40.698697], [-74.003711, 40.700594]]], "type": "Polygon"}, "id": "892a10728a7ffff", "properties": {"percentile_speed_kmh": 37.64600179694519}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.010766, 40.702764], [-74.009523, 40.700225], [-74.009242, 40.701491], [-74.007673, 40.701682], [-74.010766, 40.702764]]], "type": "Polygon"}, "id": "892a10728abffff", "properties": {"percentile_speed_kmh": 17.52021563342318}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00448, 40.705564], [-74.003196, 40.703039], [-74.002936, 40.704308], [-74.00137, 40.704515], [-74.00448, 40.705564]]], "type": "Polygon"}, "id": "892a10728b3ffff", "properties": {"percentile_speed_kmh": 47.57412398921833}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001878, 40.70321], [-74.00141, 40.700505], [-74.000768, 40.701681], [-73.999188, 40.701566], [-74.001878, 40.70321]]], "type": "Polygon"}, "id": "892a10728b7ffff", "properties": {"percentile_speed_kmh": 55.25606469002695}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.005646, 40.7043], [-74.008663, 40.705515], [-74.007829, 40.704421], [-74.008839, 40.703429], [-74.005646, 40.7043]]], "type": "Polygon"}, "id": "892a10728bbffff", "properties": {"percentile_speed_kmh": 4.672057502246181}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.018334, 40.713503], [-74.019836, 40.711058], [-74.018485, 40.711734], [-74.017263, 40.710914], [-74.018334, 40.713503]]], "type": "Polygon"}, "id": "892a10728c3ffff", "properties": {"percentile_speed_kmh": 14.465408805031446}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.014794, 40.71037], [-74.018031, 40.709611], [-74.016504, 40.709263], [-74.016421, 40.707978], [-74.014794, 40.71037]]], "type": "Polygon"}, "id": "892a10728c7ffff", "properties": {"percentile_speed_kmh": 11.814914645103324}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.016933, 40.716147], [-74.017312, 40.713433], [-74.016328, 40.714443], [-74.014833, 40.714011], [-74.016933, 40.716147]]], "type": "Polygon"}, "id": "892a10728d3ffff", "properties": {"percentile_speed_kmh": 7.142857142857142}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.012832, 40.713134], [-74.016009, 40.712222], [-74.014459, 40.711947], [-74.014283, 40.710669], [-74.012832, 40.713134]]], "type": "Polygon"}, "id": "892a10728d7ffff", "properties": {"percentile_speed_kmh": 11.455525606469003}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.000051, 40.687562], [-74.001797, 40.685226], [-74.000383, 40.685809], [-73.999249, 40.68491], [-74.000051, 40.687562]]], "type": "Polygon"}, "id": "892a1072903ffff", "properties": {"percentile_speed_kmh": 19.317160826594787}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996581, 40.684351], [-73.999879, 40.683797], [-73.99839, 40.683354], [-73.99843, 40.682068], [-73.996581, 40.684351]]], "type": "Polygon"}, "id": "892a1072907ffff", "properties": {"percentile_speed_kmh": 19.81132075471698}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003821, 40.687322], [-74.006313, 40.685484], [-74.004753, 40.685717], [-74.003981, 40.684594], [-74.003821, 40.687322]]], "type": "Polygon"}, "id": "892a107290bffff", "properties": {"percentile_speed_kmh": 65.90296495956873}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.000647, 40.683913], [-74.004012, 40.684025], [-74.002701, 40.683302], [-74.003124, 40.682063], [-74.000647, 40.683913]]], "type": "Polygon"}, "id": "892a107290fffff", "properties": {"percentile_speed_kmh": 24.573225516621743}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.997674, 40.690187], [-73.999948, 40.688172], [-73.998421, 40.68852], [-73.997525, 40.687459], [-73.997674, 40.690187]]], "type": "Polygon"}, "id": "892a1072913ffff", "properties": {"percentile_speed_kmh": 23.180592991913745}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995113, 40.687481], [-73.997827, 40.685864], [-73.996246, 40.685964], [-73.995623, 40.684782], [-73.995113, 40.687481]]], "type": "Polygon"}, "id": "892a1072917ffff", "properties": {"percentile_speed_kmh": 41.95867026055705}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001803, 40.690024], [-74.004277, 40.688171], [-74.00272, 40.688413], [-74.001937, 40.687295], [-74.001803, 40.690024]]], "type": "Polygon"}, "id": "892a107291bffff", "properties": {"percentile_speed_kmh": 41.19496855345912}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996649, 40.679332], [-73.999701, 40.678178], [-73.998127, 40.678025], [-73.997801, 40.676766], [-73.996649, 40.679332]]], "type": "Polygon"}, "id": "892a1072923ffff", "properties": {"percentile_speed_kmh": 10.826594788858939}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.997217, 40.674919], [-73.99388, 40.675284], [-73.995327, 40.67581], [-73.995176, 40.67709], [-73.997217, 40.674919]]], "type": "Polygon"}, "id": "892a1072927ffff", "properties": {"percentile_speed_kmh": 17.834681042228212}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.000395, 40.678526], [-74.003739, 40.67885], [-74.002501, 40.678046], [-74.003042, 40.676838], [-74.000395, 40.678526]]], "type": "Polygon"}, "id": "892a107292bffff", "properties": {"percentile_speed_kmh": 15.22911051212938}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998716, 40.67443], [-73.999783, 40.67702], [-74.00015, 40.675769], [-74.001729, 40.67565], [-73.998716, 40.67443]]], "type": "Polygon"}, "id": "892a107292fffff", "properties": {"percentile_speed_kmh": 13.16262353998203}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994111, 40.680496], [-73.996692, 40.68225], [-73.996197, 40.681028], [-73.997466, 40.680256], [-73.994111, 40.680496]]], "type": "Polygon"}, "id": "892a1072933ffff", "properties": {"percentile_speed_kmh": 30.90745732255166}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994939, 40.67937], [-73.993554, 40.676882], [-73.993345, 40.678156], [-73.99179, 40.678405], [-73.994939, 40.67937]]], "type": "Polygon"}, "id": "892a1072937ffff", "properties": {"percentile_speed_kmh": 24.70799640610961}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998325, 40.680566], [-74.001164, 40.682034], [-74.000478, 40.680875], [-74.001613, 40.679976], [-73.998325, 40.680566]]], "type": "Polygon"}, "id": "892a107293bffff", "properties": {"percentile_speed_kmh": 9.523809523809524}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.016049, 40.686958], [-74.013705, 40.688919], [-74.015244, 40.688607], [-74.016102, 40.689689], [-74.016049, 40.686958]]], "type": "Polygon"}, "id": "892a107294bffff", "properties": {"percentile_speed_kmh": 1.302785265049416}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.010071, 40.679657], [-74.006845, 40.680441], [-74.008376, 40.680777], [-74.008474, 40.682061], [-74.010071, 40.679657]]], "type": "Polygon"}, "id": "892a1072963ffff", "properties": {"percentile_speed_kmh": 28.79604672057502}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.008175, 40.678405], [-74.005521, 40.676724], [-74.006068, 40.677931], [-74.004833, 40.678738], [-74.008175, 40.678405]]], "type": "Polygon"}, "id": "892a1072967ffff", "properties": {"percentile_speed_kmh": 12.084456424079065}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.007869, 40.682205], [-74.004807, 40.683342], [-74.00638, 40.683504], [-74.006695, 40.684764], [-74.007869, 40.682205]]], "type": "Polygon"}, "id": "892a1072973ffff", "properties": {"percentile_speed_kmh": 32.1203953279425}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.002725, 40.68131], [-74.006091, 40.681234], [-74.004722, 40.680586], [-74.005039, 40.679327], [-74.002725, 40.68131]]], "type": "Polygon"}, "id": "892a1072977ffff", "properties": {"percentile_speed_kmh": 27.133872416891283}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991313, 40.692981], [-73.993672, 40.691033], [-73.992131, 40.691337], [-73.991282, 40.690251], [-73.991313, 40.692981]]], "type": "Polygon"}, "id": "892a1072983ffff", "properties": {"percentile_speed_kmh": 16.711590296495956}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989137, 40.69042], [-73.991405, 40.688401], [-73.98988, 40.688752], [-73.988981, 40.687692], [-73.989137, 40.69042]]], "type": "Polygon"}, "id": "892a1072987ffff", "properties": {"percentile_speed_kmh": 14.016172506738544}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995403, 40.692797], [-73.998011, 40.691068], [-73.996438, 40.691234], [-73.995739, 40.69008], [-73.995403, 40.692797]]], "type": "Polygon"}, "id": "892a107298bffff", "properties": {"percentile_speed_kmh": 18.912848158131176}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.993338, 40.690282], [-73.995706, 40.68834], [-73.994164, 40.68864], [-73.993319, 40.687552], [-73.993338, 40.690282]]], "type": "Polygon"}, "id": "892a107298fffff", "properties": {"percentile_speed_kmh": 38.18508535489668}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990159, 40.695777], [-73.991106, 40.693156], [-73.989924, 40.694014], [-73.988543, 40.693381], [-73.990159, 40.695777]]], "type": "Polygon"}, "id": "892a1072993ffff", "properties": {"percentile_speed_kmh": 25.516621743036836}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988848, 40.69289], [-73.987944, 40.69026], [-73.987499, 40.691494], [-73.985915, 40.691548], [-73.988848, 40.69289]]], "type": "Polygon"}, "id": "892a1072997ffff", "properties": {"percentile_speed_kmh": 11.230907457322552}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.993693, 40.695603], [-73.995848, 40.693505], [-73.994342, 40.69391], [-73.993386, 40.692884], [-73.993693, 40.695603]]], "type": "Polygon"}, "id": "892a107299bffff", "properties": {"percentile_speed_kmh": 12.578616352201257}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988741, 40.685076], [-73.991275, 40.683278], [-73.98971, 40.683487], [-73.988965, 40.682352], [-73.988741, 40.685076]]], "type": "Polygon"}, "id": "892a10729a3ffff", "properties": {"percentile_speed_kmh": 26.41509433962264}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987917, 40.682564], [-73.988097, 40.679838], [-73.987189, 40.680892], [-73.985666, 40.680533], [-73.987917, 40.682564]]], "type": "Polygon"}, "id": "892a10729a7ffff", "properties": {"percentile_speed_kmh": 31.31176999101527}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992988, 40.684951], [-73.995553, 40.683182], [-73.993985, 40.683373], [-73.993259, 40.68223], [-73.992988, 40.684951]]], "type": "Polygon"}, "id": "892a10729abffff", "properties": {"percentile_speed_kmh": 46.00179694519317}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991618, 40.682532], [-73.992841, 40.679989], [-73.991572, 40.68076], [-73.990265, 40.680032], [-73.991618, 40.682532]]], "type": "Polygon"}, "id": "892a10729afffff", "properties": {"percentile_speed_kmh": 35.98382749326146}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987292, 40.687915], [-73.988955, 40.68554], [-73.987562, 40.686155], [-73.986397, 40.685283], [-73.987292, 40.687915]]], "type": "Polygon"}, "id": "892a10729b3ffff", "properties": {"percentile_speed_kmh": 18.463611859838274}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985905, 40.685255], [-73.986046, 40.682527], [-73.985154, 40.68359], [-73.983626, 40.683245], [-73.985905, 40.685255]]], "type": "Polygon"}, "id": "892a10729b7ffff", "properties": {"percentile_speed_kmh": 27.67295597484277}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990523, 40.687397], [-73.993609, 40.686305], [-73.99204, 40.68612], [-73.991753, 40.684855], [-73.990523, 40.687397]]], "type": "Polygon"}, "id": "892a10729bbffff", "properties": {"percentile_speed_kmh": 20.754716981132074}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.000456, 40.692855], [-74.00188, 40.690381], [-74.000552, 40.691084], [-73.999305, 40.690289], [-74.000456, 40.692855]]], "type": "Polygon"}, "id": "892a10729c7ffff", "properties": {"percentile_speed_kmh": 6.828391734052111}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001367, 40.698047], [-74.001516, 40.695318], [-74.00062, 40.696379], [-73.999093, 40.696031], [-74.001367, 40.698047]]], "type": "Polygon"}, "id": "892a10729d3ffff", "properties": {"percentile_speed_kmh": 61.99460916442048}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998299, 40.695545], [-73.999931, 40.693156], [-73.998546, 40.693782], [-73.99737, 40.69292], [-73.998299, 40.695545]]], "type": "Polygon"}, "id": "892a10729d7ffff", "properties": {"percentile_speed_kmh": 21.83288409703504}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0056, 40.697941], [-74.005824, 40.695216], [-74.004899, 40.696261], [-74.003381, 40.695886], [-74.0056, 40.697941]]], "type": "Polygon"}, "id": "892a10729dbffff", "properties": {"percentile_speed_kmh": 43.17160826594789}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.017495, 40.684159], [-74.016059, 40.686629], [-74.017391, 40.68593], [-74.018634, 40.686729], [-74.017495, 40.684159]]], "type": "Polygon"}, "id": "892a1072bb3ffff", "properties": {"percentile_speed_kmh": 0.044923629829290206}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003606, 40.722935], [-74.000398, 40.722097], [-74.001424, 40.723078], [-74.000606, 40.724181], [-74.003606, 40.722935]]], "type": "Polygon"}, "id": "892a1072c03ffff", "properties": {"percentile_speed_kmh": 22.776280323450134}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001366, 40.720569], [-73.998344, 40.719361], [-73.999182, 40.720453], [-73.998175, 40.721447], [-74.001366, 40.720569]]], "type": "Polygon"}, "id": "892a1072c07ffff", "properties": {"percentile_speed_kmh": 26.19047619047619}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.007138, 40.721745], [-74.004258, 40.723165], [-74.005846, 40.723177], [-74.006341, 40.724399], [-74.007138, 40.721745]]], "type": "Polygon"}, "id": "892a1072c0bffff", "properties": {"percentile_speed_kmh": 32.38993710691824}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.005636, 40.720222], [-74.002418, 40.71941], [-74.003456, 40.720383], [-74.002652, 40.721492], [-74.005636, 40.720222]]], "type": "Polygon"}, "id": "892a1072c0fffff", "properties": {"percentile_speed_kmh": 15.31895777178796}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001481, 40.725275], [-73.998117, 40.725101], [-73.99941, 40.725848], [-73.998951, 40.72708], [-74.001481, 40.725275]]], "type": "Polygon"}, "id": "892a1072c13ffff", "properties": {"percentile_speed_kmh": 25.247079964061097}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.999333, 40.723283], [-73.996326, 40.722048], [-73.99715, 40.723148], [-73.996129, 40.724133], [-73.999333, 40.723283]]], "type": "Polygon"}, "id": "892a1072c17ffff", "properties": {"percentile_speed_kmh": 22.686433063791554}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003797, 40.72417], [-74.002913, 40.726806], [-74.004075, 40.72593], [-74.005472, 40.726541], [-74.003797, 40.72417]]], "type": "Polygon"}, "id": "892a1072c1bffff", "properties": {"percentile_speed_kmh": 34.32165318957772}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00116, 40.715263], [-73.998111, 40.714098], [-73.998974, 40.715178], [-73.997989, 40.716187], [-74.00116, 40.715263]]], "type": "Polygon"}, "id": "892a1072c23ffff", "properties": {"percentile_speed_kmh": 30.7277628032345}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99886, 40.712232], [-73.995521, 40.711868], [-73.996745, 40.712686], [-73.996181, 40.713889], [-73.99886, 40.712232]]], "type": "Polygon"}, "id": "892a1072c27ffff", "properties": {"percentile_speed_kmh": 31.761006289308174}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00543, 40.715182], [-74.002416, 40.713959], [-74.003247, 40.715055], [-74.002232, 40.716044], [-74.00543, 40.715182]]], "type": "Polygon"}, "id": "892a1072c2bffff", "properties": {"percentile_speed_kmh": 18.10422282120395}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003181, 40.712322], [-73.999939, 40.711579], [-74.001008, 40.712529], [-74.00024, 40.713655], [-74.003181, 40.712322]]], "type": "Polygon"}, "id": "892a1072c2fffff", "properties": {"percentile_speed_kmh": 19.451931716082658}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.999122, 40.718025], [-73.996139, 40.716754], [-73.996942, 40.717863], [-73.995904, 40.718836], [-73.999122, 40.718025]]], "type": "Polygon"}, "id": "892a1072c33ffff", "properties": {"percentile_speed_kmh": 21.5633423180593}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996845, 40.715631], [-73.994088, 40.71406], [-73.994709, 40.715244], [-73.993525, 40.7161], [-73.996845, 40.715631]]], "type": "Polygon"}, "id": "892a1072c37ffff", "properties": {"percentile_speed_kmh": 26.50494159928122}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003402, 40.717798], [-74.00031, 40.716712], [-74.001214, 40.717769], [-74.000268, 40.718802], [-74.003402, 40.717798]]], "type": "Polygon"}, "id": "892a1072c3bffff", "properties": {"percentile_speed_kmh": 30.862533692722373}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.013082, 40.723983], [-74.010979, 40.726118], [-74.012475, 40.725688], [-74.013458, 40.726698], [-74.013082, 40.723983]]], "type": "Polygon"}, "id": "892a1072c43ffff", "properties": {"percentile_speed_kmh": 85.35489667565139}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.010714, 40.721376], [-74.008804, 40.723627], [-74.010258, 40.723111], [-74.011327, 40.724062], [-74.010714, 40.721376]]], "type": "Polygon"}, "id": "892a1072c47ffff", "properties": {"percentile_speed_kmh": 51.707097933513026}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.014288, 40.724161], [-74.016104, 40.721859], [-74.014672, 40.722414], [-74.013564, 40.721493], [-74.014288, 40.724161]]], "type": "Polygon"}, "id": "892a1072c4fffff", "properties": {"percentile_speed_kmh": 75.2470799640611}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.011206, 40.726724], [-74.008874, 40.728697], [-74.010412, 40.728378], [-74.011278, 40.729456], [-74.011206, 40.726724]]], "type": "Polygon"}, "id": "892a1072c53ffff", "properties": {"percentile_speed_kmh": 93.39622641509433}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.008663, 40.724071], [-74.006783, 40.726338], [-74.00823, 40.72581], [-74.009312, 40.726752], [-74.008663, 40.724071]]], "type": "Polygon"}, "id": "892a1072c57ffff", "properties": {"percentile_speed_kmh": 69.63162623539982}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.009995, 40.719016], [-74.011503, 40.716573], [-74.010151, 40.717247], [-74.00893, 40.716425], [-74.009995, 40.719016]]], "type": "Polygon"}, "id": "892a1072c63ffff", "properties": {"percentile_speed_kmh": 31.491464510332435}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.007582, 40.716418], [-74.009369, 40.714102], [-74.007944, 40.714668], [-74.006825, 40.713756], [-74.007582, 40.716418]]], "type": "Polygon"}, "id": "892a1072c67ffff", "properties": {"percentile_speed_kmh": 22.10242587601078}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.012952, 40.718326], [-74.016206, 40.717617], [-74.014687, 40.717245], [-74.014634, 40.715959], [-74.012952, 40.718326]]], "type": "Polygon"}, "id": "892a1072c6bffff", "properties": {"percentile_speed_kmh": 10.242587601078167}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.010887, 40.715905], [-74.01398, 40.71482], [-74.01241, 40.714631], [-74.012128, 40.713365], [-74.010887, 40.715905]]], "type": "Polygon"}, "id": "892a1072c6fffff", "properties": {"percentile_speed_kmh": 24.348607367475292}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.009486, 40.719285], [-74.006275, 40.720117], [-74.007814, 40.720431], [-74.007941, 40.721713], [-74.009486, 40.719285]]], "type": "Polygon"}, "id": "892a1072c73ffff", "properties": {"percentile_speed_kmh": 18.149146451033243}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.006128, 40.719119], [-74.006931, 40.716467], [-74.005797, 40.717366], [-74.004382, 40.716783], [-74.006128, 40.719119]]], "type": "Polygon"}, "id": "892a1072c77ffff", "properties": {"percentile_speed_kmh": 17.026055705300987}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01121, 40.721267], [-74.014181, 40.719977], [-74.012597, 40.719895], [-74.012186, 40.718652], [-74.01121, 40.721267]]], "type": "Polygon"}, "id": "892a1072c7bffff", "properties": {"percentile_speed_kmh": 48.921832884097036}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995028, 40.729306], [-73.992976, 40.727139], [-73.993132, 40.728419], [-73.991686, 40.72895], [-73.995028, 40.729306]]], "type": "Polygon"}, "id": "892a1072c83ffff", "properties": {"percentile_speed_kmh": 38.23000898472596}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992936, 40.726456], [-73.990396, 40.72466], [-73.990862, 40.72589], [-73.989574, 40.726642], [-73.992936, 40.726456]]], "type": "Polygon"}, "id": "892a1072c87ffff", "properties": {"percentile_speed_kmh": 30.09883198562444}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998569, 40.727141], [-73.995981, 40.728892], [-73.997553, 40.728713], [-73.998266, 40.729862], [-73.998569, 40.727141]]], "type": "Polygon"}, "id": "892a1072c8bffff", "properties": {"percentile_speed_kmh": 26.23539982030548}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.997283, 40.726097], [-73.994405, 40.724675], [-73.995121, 40.725823], [-73.994008, 40.726741], [-73.997283, 40.726097]]], "type": "Polygon"}, "id": "892a1072c8fffff", "properties": {"percentile_speed_kmh": 27.403414195867025}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992374, 40.732523], [-73.991834, 40.729826], [-73.991223, 40.731014], [-73.98964, 40.730925], [-73.992374, 40.732523]]], "type": "Polygon"}, "id": "892a1072c93ffff", "properties": {"percentile_speed_kmh": 34.456424079065584}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990725, 40.729462], [-73.988757, 40.727243], [-73.988864, 40.728527], [-73.987398, 40.729021], [-73.990725, 40.729462]]], "type": "Polygon"}, "id": "892a1072c97ffff", "properties": {"percentile_speed_kmh": 23.58490566037736}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996965, 40.732206], [-73.995709, 40.729671], [-73.995434, 40.730938], [-73.993865, 40.731134], [-73.996965, 40.732206]]], "type": "Polygon"}, "id": "892a1072c9bffff", "properties": {"percentile_speed_kmh": 36.56783468104223}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992663, 40.72131], [-73.990352, 40.719322], [-73.990667, 40.720583], [-73.989295, 40.721229], [-73.992663, 40.72131]]], "type": "Polygon"}, "id": "892a1072ca3ffff", "properties": {"percentile_speed_kmh": 14.420485175202156}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990409, 40.718752], [-73.988143, 40.716731], [-73.98843, 40.717996], [-73.987044, 40.718622], [-73.990409, 40.718752]]], "type": "Polygon"}, "id": "892a1072ca7ffff", "properties": {"percentile_speed_kmh": 13.566936208445641}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.997046, 40.720936], [-73.994323, 40.719327], [-73.994919, 40.720519], [-73.993716, 40.721359], [-73.997046, 40.720936]]], "type": "Polygon"}, "id": "892a1072cabffff", "properties": {"percentile_speed_kmh": 19.227313566936207}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994628, 40.718723], [-73.99253, 40.716585], [-73.992714, 40.717863], [-73.99128, 40.718414], [-73.994628, 40.718723]]], "type": "Polygon"}, "id": "892a1072cafffff", "properties": {"percentile_speed_kmh": 13.432165318957772}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990635, 40.724], [-73.988309, 40.722023], [-73.988633, 40.723283], [-73.987266, 40.723935], [-73.990635, 40.724]]], "type": "Polygon"}, "id": "892a1072cb3ffff", "properties": {"percentile_speed_kmh": 21.518418688230007}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988476, 40.721237], [-73.985853, 40.719522], [-73.986377, 40.720737], [-73.985126, 40.721528], [-73.988476, 40.721237]]], "type": "Polygon"}, "id": "892a1072cb7ffff", "properties": {"percentile_speed_kmh": 18.238993710691823}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995006, 40.723656], [-73.992314, 40.722013], [-73.992887, 40.723213], [-73.991669, 40.724037], [-73.995006, 40.723656]]], "type": "Polygon"}, "id": "892a1072cbbffff", "properties": {"percentile_speed_kmh": 20.12578616352201}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00527, 40.729698], [-74.002444, 40.731188], [-74.004031, 40.731161], [-74.004572, 40.732371], [-74.00527, 40.729698]]], "type": "Polygon"}, "id": "892a1072cc3ffff", "properties": {"percentile_speed_kmh": 50.943396226415096}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001649, 40.726883], [-74.000975, 40.72956], [-74.002066, 40.728625], [-74.003508, 40.729162], [-74.001649, 40.726883]]], "type": "Polygon"}, "id": "892a1072cc7ffff", "properties": {"percentile_speed_kmh": 30.952380952380953}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.008851, 40.729348], [-74.007004, 40.731634], [-74.008444, 40.731091], [-74.009539, 40.732022], [-74.008851, 40.729348]]], "type": "Polygon"}, "id": "892a1072ccbffff", "properties": {"percentile_speed_kmh": 83.0188679245283}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.006799, 40.726804], [-74.004661, 40.728916], [-74.006164, 40.728502], [-74.007131, 40.729522], [-74.006799, 40.726804]]], "type": "Polygon"}, "id": "892a1072ccfffff", "properties": {"percentile_speed_kmh": 56.4240790655885}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001912, 40.732156], [-74.001138, 40.734815], [-74.002263, 40.733908], [-74.003685, 40.73448], [-74.001912, 40.732156]]], "type": "Polygon"}, "id": "892a1072cd3ffff", "properties": {"percentile_speed_kmh": 46.13656783468104}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.000389, 40.729595], [-73.998408, 40.731806], [-73.999878, 40.731321], [-74.000917, 40.732294], [-74.000389, 40.729595]]], "type": "Polygon"}, "id": "892a1072cd7ffff", "properties": {"percentile_speed_kmh": 39.12848158131177}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.006862, 40.732054], [-74.004947, 40.734302], [-74.006403, 40.733789], [-74.00747, 40.734741], [-74.006862, 40.732054]]], "type": "Polygon"}, "id": "892a1072cdbffff", "properties": {"percentile_speed_kmh": 66.98113207547169}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987046, 40.706247], [-73.986545, 40.703547], [-73.985918, 40.704728], [-73.984336, 40.704625], [-73.987046, 40.706247]]], "type": "Polygon"}, "id": "892a1072d03ffff", "properties": {"percentile_speed_kmh": 81.80592991913747}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985197, 40.70341], [-73.983808, 40.700922], [-73.983601, 40.702197], [-73.982045, 40.702447], [-73.985197, 40.70341]]], "type": "Polygon"}, "id": "892a1072d07ffff", "properties": {"percentile_speed_kmh": 67.20575022461814}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991222, 40.706175], [-73.990923, 40.703455], [-73.990209, 40.704603], [-73.988638, 40.704423], [-73.991222, 40.706175]]], "type": "Polygon"}, "id": "892a1072d0bffff", "properties": {"percentile_speed_kmh": 60.107816711590296}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989401, 40.70335], [-73.988175, 40.700806], [-73.987886, 40.702071], [-73.986315, 40.702254], [-73.989401, 40.70335]]], "type": "Polygon"}, "id": "892a1072d0fffff", "properties": {"percentile_speed_kmh": 19.002695417789756}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985654, 40.708415], [-73.983598, 40.706251], [-73.983757, 40.707531], [-73.982313, 40.708064], [-73.985654, 40.708415]]], "type": "Polygon"}, "id": "892a1072d13ffff", "properties": {"percentile_speed_kmh": 84.77088948787062}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982874, 40.706311], [-73.982158, 40.703642], [-73.981626, 40.704854], [-73.98004, 40.704834], [-73.982874, 40.706311]]], "type": "Polygon"}, "id": "892a1072d17ffff", "properties": {"percentile_speed_kmh": 79.8292902066487}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989295, 40.708824], [-73.988774, 40.706126], [-73.988155, 40.70731], [-73.986573, 40.707215], [-73.989295, 40.708824]]], "type": "Polygon"}, "id": "892a1072d1bffff", "properties": {"percentile_speed_kmh": 80.54806828391735}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984248, 40.69852], [-73.984465, 40.695794], [-73.983542, 40.696841], [-73.982024, 40.696468], [-73.984248, 40.69852]]], "type": "Polygon"}, "id": "892a1072d23ffff", "properties": {"percentile_speed_kmh": 26.460017969451933}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982179, 40.695883], [-73.982058, 40.693154], [-73.98127, 40.69427], [-73.979713, 40.694023], [-73.982179, 40.695883]]], "type": "Polygon"}, "id": "892a1072d27ffff", "properties": {"percentile_speed_kmh": 38.274932614555254}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988461, 40.698419], [-73.98879, 40.695701], [-73.987825, 40.696722], [-73.986323, 40.696309], [-73.988461, 40.698419]]], "type": "Polygon"}, "id": "892a1072d2bffff", "properties": {"percentile_speed_kmh": 25.471698113207548}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986748, 40.695628], [-73.985996, 40.692966], [-73.985481, 40.694183], [-73.983895, 40.694177], [-73.986748, 40.695628]]], "type": "Polygon"}, "id": "892a1072d2fffff", "properties": {"percentile_speed_kmh": 16.89128481581312}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981627, 40.701296], [-73.982917, 40.698773], [-73.981628, 40.699522], [-73.980339, 40.698772], [-73.981627, 40.701296]]], "type": "Polygon"}, "id": "892a1072d33ffff", "properties": {"percentile_speed_kmh": 44.60916442048517}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980494, 40.698411], [-73.979632, 40.695771], [-73.979168, 40.697001], [-73.977582, 40.697039], [-73.980494, 40.698411]]], "type": "Polygon"}, "id": "892a1072d37ffff", "properties": {"percentile_speed_kmh": 53.59389038634322}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987168, 40.700763], [-73.985926, 40.698224], [-73.985645, 40.69949], [-73.984076, 40.69968], [-73.987168, 40.700763]]], "type": "Polygon"}, "id": "892a1072d3bffff", "properties": {"percentile_speed_kmh": 14.375561545372866}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998204, 40.708356], [-73.996854, 40.705853], [-73.996627, 40.707126], [-73.995066, 40.70736], [-73.998204, 40.708356]]], "type": "Polygon"}, "id": "892a1072d43ffff", "properties": {"percentile_speed_kmh": 56.91823899371069}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995247, 40.706146], [-73.995445, 40.703419], [-73.99453, 40.70447], [-73.993009, 40.704105], [-73.995247, 40.706146]]], "type": "Polygon"}, "id": "892a1072d47ffff", "properties": {"percentile_speed_kmh": 78.21203953279425}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.002932, 40.70757], [-74.000219, 40.705949], [-74.000807, 40.707144], [-73.9996, 40.707979], [-74.002932, 40.70757]]], "type": "Polygon"}, "id": "892a1072d4bffff", "properties": {"percentile_speed_kmh": 63.7466307277628}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.999791, 40.705933], [-73.99944, 40.703216], [-73.998747, 40.704374], [-73.997173, 40.704213], [-73.999791, 40.705933]]], "type": "Polygon"}, "id": "892a1072d4fffff", "properties": {"percentile_speed_kmh": 61.05121293800539}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996603, 40.710456], [-73.993995, 40.708726], [-73.994508, 40.709943], [-73.99325, 40.710727], [-73.996603, 40.710456]]], "type": "Polygon"}, "id": "892a1072d53ffff", "properties": {"percentile_speed_kmh": 52.47079964061096}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.993808, 40.708567], [-73.992752, 40.705973], [-73.992379, 40.707223], [-73.990799, 40.707338], [-73.993808, 40.708567]]], "type": "Polygon"}, "id": "892a1072d57ffff", "properties": {"percentile_speed_kmh": 61.27583108715184}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00093, 40.709679], [-73.997652, 40.709046], [-73.998769, 40.70996], [-73.99806, 40.71111], [-74.00093, 40.709679]]], "type": "Polygon"}, "id": "892a1072d5bffff", "properties": {"percentile_speed_kmh": 52.7403414195867}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.995735, 40.700512], [-73.994436, 40.697993], [-73.994183, 40.699262], [-73.992619, 40.699475], [-73.995735, 40.700512]]], "type": "Polygon"}, "id": "892a1072d63ffff", "properties": {"percentile_speed_kmh": 20.709793351302785}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992058, 40.698363], [-73.993589, 40.69593], [-73.992231, 40.696595], [-73.991019, 40.695765], [-73.992058, 40.698363]]], "type": "Polygon"}, "id": "892a1072d67ffff", "properties": {"percentile_speed_kmh": 18.643306379155437}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.999754, 40.700568], [-73.999035, 40.6979], [-73.998505, 40.699112], [-73.996919, 40.699093], [-73.999754, 40.700568]]], "type": "Polygon"}, "id": "892a1072d6bffff", "properties": {"percentile_speed_kmh": 43.306379155435756}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996591, 40.698248], [-73.997677, 40.695663], [-73.99645, 40.696478], [-73.995104, 40.695798], [-73.996591, 40.698248]]], "type": "Polygon"}, "id": "892a1072d6fffff", "properties": {"percentile_speed_kmh": 18.194070080862534}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.993586, 40.703297], [-73.992563, 40.700695], [-73.992175, 40.701942], [-73.990593, 40.702044], [-73.993586, 40.703297]]], "type": "Polygon"}, "id": "892a1072d73ffff", "properties": {"percentile_speed_kmh": 27.89757412398922}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991809, 40.700233], [-73.989576, 40.698189], [-73.989843, 40.699457], [-73.988447, 40.700069], [-73.991809, 40.700233]]], "type": "Polygon"}, "id": "892a1072d77ffff", "properties": {"percentile_speed_kmh": 11.185983827493262}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.997797, 40.703221], [-73.996912, 40.700586], [-73.996458, 40.701818], [-73.994873, 40.701865], [-73.997797, 40.703221]]], "type": "Polygon"}, "id": "892a1072d7bffff", "properties": {"percentile_speed_kmh": 80.41329739442946}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97932, 40.711267], [-73.977347, 40.709053], [-73.977458, 40.710336], [-73.975994, 40.710833], [-73.97932, 40.711267]]], "type": "Polygon"}, "id": "892a1072d83ffff", "properties": {"percentile_speed_kmh": 77.4932614555256}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977157, 40.708575], [-73.974959, 40.706505], [-73.975204, 40.707776], [-73.973797, 40.708371], [-73.977157, 40.708575]]], "type": "Polygon"}, "id": "892a1072d87ffff", "properties": {"percentile_speed_kmh": 60.5570530098832}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983672, 40.711035], [-73.981461, 40.708974], [-73.981714, 40.710244], [-73.980312, 40.710846], [-73.983672, 40.711035]]], "type": "Polygon"}, "id": "892a1072d8bffff", "properties": {"percentile_speed_kmh": 89.98203054806828}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981044, 40.708876], [-73.979866, 40.706317], [-73.979553, 40.707578], [-73.977979, 40.707741], [-73.981044, 40.708876]]], "type": "Polygon"}, "id": "892a1072d8fffff", "properties": {"percentile_speed_kmh": 73.8993710691824}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976572, 40.714502], [-73.976288, 40.71178], [-73.975567, 40.712926], [-73.973997, 40.71274], [-73.976572, 40.714502]]], "type": "Polygon"}, "id": "892a1072d93ffff", "properties": {"percentile_speed_kmh": 91.41958670260557}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975221, 40.711083], [-73.972691, 40.70928], [-73.973151, 40.710511], [-73.97186, 40.711259], [-73.975221, 40.711083]]], "type": "Polygon"}, "id": "892a1072d97ffff", "properties": {"percentile_speed_kmh": 69.94609164420486}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981574, 40.71383], [-73.979559, 40.71164], [-73.979694, 40.712922], [-73.97824, 40.713437], [-73.981574, 40.71383]]], "type": "Polygon"}, "id": "892a1072d9bffff", "properties": {"percentile_speed_kmh": 60.19766397124888}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976703, 40.703596], [-73.97519, 40.701156], [-73.975047, 40.702437], [-73.973505, 40.702738], [-73.976703, 40.703596]]], "type": "Polygon"}, "id": "892a1072da3ffff", "properties": {"percentile_speed_kmh": 64.06109613656783}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974091, 40.701281], [-73.973448, 40.6986], [-73.972884, 40.699802], [-73.971299, 40.699754], [-73.974091, 40.701281]]], "type": "Polygon"}, "id": "892a1072da7ffff", "properties": {"percentile_speed_kmh": 57.54716981132076}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980178, 40.703915], [-73.980404, 40.70119], [-73.979478, 40.702235], [-73.977961, 40.701859], [-73.980178, 40.703915]]], "type": "Polygon"}, "id": "892a1072dabffff", "properties": {"percentile_speed_kmh": 68.3288409703504}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978609, 40.701007], [-73.977407, 40.698456], [-73.977106, 40.699718], [-73.975534, 40.699892], [-73.978609, 40.701007]]], "type": "Polygon"}, "id": "892a1072dafffff", "properties": {"percentile_speed_kmh": 86.83737646001796}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974298, 40.706559], [-73.973652, 40.703878], [-73.973089, 40.705081], [-73.971504, 40.705034], [-73.974298, 40.706559]]], "type": "Polygon"}, "id": "892a1072db3ffff", "properties": {"percentile_speed_kmh": 61.59029649595687}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972832, 40.703062], [-73.970069, 40.7015], [-73.970696, 40.702682], [-73.969517, 40.703542], [-73.972832, 40.703062]]], "type": "Polygon"}, "id": "892a1072db7ffff", "properties": {"percentile_speed_kmh": 65.27403414195867}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979008, 40.706112], [-73.977325, 40.703746], [-73.977273, 40.705032], [-73.975755, 40.705405], [-73.979008, 40.706112]]], "type": "Polygon"}, "id": "892a1072dbbffff", "properties": {"percentile_speed_kmh": 53.863432165318955}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990027, 40.713711], [-73.988268, 40.711382], [-73.988257, 40.712668], [-73.986751, 40.713073], [-73.990027, 40.713711]]], "type": "Polygon"}, "id": "892a1072dc3ffff", "properties": {"percentile_speed_kmh": 19.58670260557053}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987529, 40.711362], [-73.986413, 40.708784], [-73.986069, 40.71004], [-73.984492, 40.710179], [-73.987529, 40.711362]]], "type": "Polygon"}, "id": "892a1072dc7ffff", "properties": {"percentile_speed_kmh": 77.9874213836478}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994585, 40.713112], [-73.991917, 40.711445], [-73.992473, 40.712649], [-73.991244, 40.713463], [-73.994585, 40.713112]]], "type": "Polygon"}, "id": "892a1072dcbffff", "properties": {"percentile_speed_kmh": 21.92273135669362}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991622, 40.71136], [-73.990912, 40.70869], [-73.990378, 40.709901], [-73.988791, 40.70988], [-73.991622, 40.71136]]], "type": "Polygon"}, "id": "892a1072dcfffff", "properties": {"percentile_speed_kmh": 47.84366576819407}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988258, 40.715987], [-73.98568, 40.714227], [-73.986172, 40.715451], [-73.984901, 40.71622], [-73.988258, 40.715987]]], "type": "Polygon"}, "id": "892a1072dd3ffff", "properties": {"percentile_speed_kmh": 28.48158131176999}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98583, 40.713737], [-73.983864, 40.711519], [-73.98397, 40.712802], [-73.982505, 40.713295], [-73.98583, 40.713737]]], "type": "Polygon"}, "id": "892a1072dd7ffff", "properties": {"percentile_speed_kmh": 35.309973045822105}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992517, 40.715905], [-73.989992, 40.714096], [-73.990447, 40.715328], [-73.989154, 40.716073], [-73.992517, 40.715905]]], "type": "Polygon"}, "id": "892a1072ddbffff", "properties": {"percentile_speed_kmh": 15.543575920934412}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951064, 40.651989], [-73.94809, 40.653265], [-73.949671, 40.653354], [-73.950073, 40.654598], [-73.951064, 40.651989]]], "type": "Polygon"}, "id": "892a1076643ffff", "properties": {"percentile_speed_kmh": 4.44743935309973}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953677, 40.654435], [-73.955758, 40.65229], [-73.954269, 40.652728], [-73.953279, 40.651724], [-73.953677, 40.654435]]], "type": "Polygon"}, "id": "892a107664bffff", "properties": {"percentile_speed_kmh": 12.623539982030549}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950331, 40.655885], [-73.953571, 40.656619], [-73.952499, 40.655672], [-73.953261, 40.654545], [-73.950331, 40.655885]]], "type": "Polygon"}, "id": "892a107665bffff", "properties": {"percentile_speed_kmh": 17.78975741239892}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940037, 40.657835], [-73.941962, 40.660074], [-73.941877, 40.65879], [-73.943349, 40.658314], [-73.940037, 40.657835]]], "type": "Polygon"}, "id": "892a10766c3ffff", "properties": {"percentile_speed_kmh": 11.680143755615454}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945233, 40.65991], [-73.94748, 40.657879], [-73.945959, 40.658238], [-73.945052, 40.657185], [-73.945233, 40.65991]]], "type": "Polygon"}, "id": "892a10766cbffff", "properties": {"percentile_speed_kmh": 25.157232704402514}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940943, 40.662265], [-73.939362, 40.659856], [-73.939256, 40.661138], [-73.937725, 40.661468], [-73.940943, 40.662265]]], "type": "Polygon"}, "id": "892a10766d3ffff", "properties": {"percentile_speed_kmh": 34.00718778077268}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945581, 40.66154], [-73.942836, 40.659962], [-73.94345, 40.661146], [-73.942264, 40.661999], [-73.945581, 40.66154]]], "type": "Polygon"}, "id": "892a10766dbffff", "properties": {"percentile_speed_kmh": 45.59748427672956}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003079, 40.650525], [-74.004465, 40.648038], [-74.003149, 40.648753], [-74.001891, 40.647971], [-74.003079, 40.650525]]], "type": "Polygon"}, "id": "892a107700bffff", "properties": {"percentile_speed_kmh": 66.30727762803234}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001951, 40.653053], [-74.001653, 40.650335], [-74.000939, 40.651482], [-73.99937, 40.651302], [-74.001951, 40.653053]]], "type": "Polygon"}, "id": "892a107701bffff", "properties": {"percentile_speed_kmh": 55.076370170709794}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.006513, 40.65022], [-74.009157, 40.648532], [-74.007582, 40.648674], [-74.006911, 40.64751], [-74.006513, 40.65022]]], "type": "Polygon"}, "id": "892a1077047ffff", "properties": {"percentile_speed_kmh": 87.87061994609164}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.009408, 40.653958], [-74.006126, 40.653354], [-74.007254, 40.654257], [-74.006561, 40.655413], [-74.009408, 40.653958]]], "type": "Polygon"}, "id": "892a1077053ffff", "properties": {"percentile_speed_kmh": 12.93800539083558}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.004724, 40.653008], [-74.007038, 40.651025], [-74.005505, 40.651352], [-74.004632, 40.650279], [-74.004724, 40.653008]]], "type": "Polygon"}, "id": "892a1077057ffff", "properties": {"percentile_speed_kmh": 56.69362084456424}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.010725, 40.644891], [-74.013159, 40.643007], [-74.011608, 40.64327], [-74.010803, 40.642163], [-74.010725, 40.644891]]], "type": "Polygon"}, "id": "892a107706bffff", "properties": {"percentile_speed_kmh": 29.964061096136568}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.006455, 40.647396], [-74.005164, 40.644875], [-74.004908, 40.646144], [-74.003345, 40.646354], [-74.006455, 40.647396]]], "type": "Polygon"}, "id": "892a1077073ffff", "properties": {"percentile_speed_kmh": 13.20754716981132}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.010369, 40.647503], [-74.009875, 40.644803], [-74.009245, 40.645983], [-74.007666, 40.645877], [-74.010369, 40.647503]]], "type": "Polygon"}, "id": "892a107707bffff", "properties": {"percentile_speed_kmh": 13.971248876909254}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994589, 40.657433], [-73.991661, 40.656087], [-73.992419, 40.657216], [-73.991345, 40.65816], [-73.994589, 40.657433]]], "type": "Polygon"}, "id": "892a107709bffff", "properties": {"percentile_speed_kmh": 63.65678346810422}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.002778, 40.656138], [-73.999514, 40.656805], [-74.001024, 40.657196], [-74.001051, 40.658481], [-74.002778, 40.656138]]], "type": "Polygon"}, "id": "892a10770c3ffff", "properties": {"percentile_speed_kmh": 81.89577717879604}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.004552, 40.653217], [-74.001527, 40.654414], [-74.003104, 40.654545], [-74.003457, 40.655798], [-74.004552, 40.653217]]], "type": "Polygon"}, "id": "892a10770cfffff", "properties": {"percentile_speed_kmh": 44.15992812219227}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001108, 40.659702], [-73.997986, 40.658682], [-73.998922, 40.659719], [-73.998011, 40.660771], [-74.001108, 40.659702]]], "type": "Polygon"}, "id": "892a10770d3ffff", "properties": {"percentile_speed_kmh": 73.00089847259659}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998869, 40.657173], [-73.995793, 40.656065], [-73.996684, 40.657128], [-73.995728, 40.658154], [-73.998869, 40.657173]]], "type": "Polygon"}, "id": "892a10770d7ffff", "properties": {"percentile_speed_kmh": 72.05750224618149}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.017546, 40.643349], [-74.014376, 40.642433], [-74.015363, 40.643439], [-74.014506, 40.644519], [-74.017546, 40.643349]]], "type": "Polygon"}, "id": "892a10772a7ffff", "properties": {"percentile_speed_kmh": 35.714285714285715}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.014978, 40.647171], [-74.013712, 40.644642], [-74.013443, 40.645909], [-74.011878, 40.646109], [-74.014978, 40.647171]]], "type": "Polygon"}, "id": "892a10772b7ffff", "properties": {"percentile_speed_kmh": 53.459119496855344}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.012838, 40.642224], [-74.015152, 40.640242], [-74.013619, 40.640569], [-74.012747, 40.639496], [-74.012838, 40.642224]]], "type": "Polygon"}, "id": "892a10773d3ffff", "properties": {"percentile_speed_kmh": 22.50673854447439}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982958, 40.668565], [-73.986323, 40.668637], [-73.984999, 40.66793], [-73.9854, 40.666686], [-73.982958, 40.668565]]], "type": "Polygon"}, "id": "892a1077403ffff", "properties": {"percentile_speed_kmh": 16.756513926325248}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982138, 40.666915], [-73.983894, 40.664586], [-73.982478, 40.665164], [-73.981349, 40.664261], [-73.982138, 40.666915]]], "type": "Polygon"}, "id": "892a1077407ffff", "properties": {"percentile_speed_kmh": 45.82210242587601}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988448, 40.669346], [-73.990509, 40.667187], [-73.989023, 40.667635], [-73.988023, 40.666638], [-73.988448, 40.669346]]], "type": "Polygon"}, "id": "892a107740bffff", "properties": {"percentile_speed_kmh": 38.903863432165316}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986056, 40.666725], [-73.988346, 40.664724], [-73.986817, 40.665063], [-73.98593, 40.663997], [-73.986056, 40.666725]]], "type": "Polygon"}, "id": "892a107740fffff", "properties": {"percentile_speed_kmh": 51.078167115902964}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982567, 40.672209], [-73.983958, 40.669723], [-73.98264, 40.670437], [-73.981384, 40.669653], [-73.982567, 40.672209]]], "type": "Polygon"}, "id": "892a1077413ffff", "properties": {"percentile_speed_kmh": 46.99011680143756}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980524, 40.669625], [-73.981581, 40.667033], [-73.980364, 40.667857], [-73.979012, 40.667186], [-73.980524, 40.669625]]], "type": "Polygon"}, "id": "892a1077417ffff", "properties": {"percentile_speed_kmh": 39.53279424977538}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986648, 40.67208], [-73.988349, 40.669724], [-73.986946, 40.670324], [-73.985797, 40.669439], [-73.986648, 40.67208]]], "type": "Polygon"}, "id": "892a107741bffff", "properties": {"percentile_speed_kmh": 38.94878706199461}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980743, 40.661049], [-73.984015, 40.660408], [-73.98251, 40.660005], [-73.982498, 40.65872], [-73.980743, 40.661049]]], "type": "Polygon"}, "id": "892a1077423ffff", "properties": {"percentile_speed_kmh": 29.514824797843666}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980892, 40.658877], [-73.980447, 40.656171], [-73.979796, 40.657343], [-73.978218, 40.657219], [-73.980892, 40.658877]]], "type": "Polygon"}, "id": "892a1077427ffff", "properties": {"percentile_speed_kmh": 67.07097933513027}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985465, 40.661289], [-73.988271, 40.659781], [-73.986687, 40.659819], [-73.986135, 40.658613], [-73.985465, 40.661289]]], "type": "Polygon"}, "id": "892a107742bffff", "properties": {"percentile_speed_kmh": 34.052111410601974}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985757, 40.658308], [-73.983897, 40.656033], [-73.983944, 40.657318], [-73.982458, 40.657766], [-73.985757, 40.658308]]], "type": "Polygon"}, "id": "892a107742fffff", "properties": {"percentile_speed_kmh": 48.33782569631626}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981282, 40.664054], [-73.980436, 40.661412], [-73.979965, 40.662639], [-73.978381, 40.662671], [-73.981282, 40.664054]]], "type": "Polygon"}, "id": "892a1077433ffff", "properties": {"percentile_speed_kmh": 41.32973944294699}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9797, 40.660698], [-73.97706, 40.659004], [-73.977597, 40.660214], [-73.976357, 40.661014], [-73.9797, 40.660698]]], "type": "Polygon"}, "id": "892a1077437ffff", "properties": {"percentile_speed_kmh": 11.141060197663972}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983696, 40.664103], [-73.986159, 40.662243], [-73.984604, 40.662491], [-73.983816, 40.661375], [-73.983696, 40.664103]]], "type": "Polygon"}, "id": "892a107743bffff", "properties": {"percentile_speed_kmh": 68.01437556154536}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.996948, 40.671207], [-73.99508, 40.668935], [-73.995131, 40.67022], [-73.993647, 40.670672], [-73.996948, 40.671207]]], "type": "Polygon"}, "id": "892a1077443ffff", "properties": {"percentile_speed_kmh": 54.043126684636114}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.993474, 40.669265], [-73.994272, 40.666613], [-73.99314, 40.667512], [-73.991726, 40.666931], [-73.993474, 40.669265]]], "type": "Polygon"}, "id": "892a1077447ffff", "properties": {"percentile_speed_kmh": 66.39712488769092}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.001078, 40.671238], [-73.999575, 40.668795], [-73.999428, 40.670075], [-73.997885, 40.670372], [-74.001078, 40.671238]]], "type": "Polygon"}, "id": "892a107744bffff", "properties": {"percentile_speed_kmh": 74.07906558849955}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.998984, 40.666874], [-73.995679, 40.667393], [-73.99716, 40.667851], [-73.9971, 40.669136], [-73.998984, 40.666874]]], "type": "Polygon"}, "id": "892a107744fffff", "properties": {"percentile_speed_kmh": 81.49146451033243}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.993985, 40.674482], [-73.994213, 40.671758], [-73.993287, 40.672801], [-73.991771, 40.672424], [-73.993985, 40.674482]]], "type": "Polygon"}, "id": "892a1077453ffff", "properties": {"percentile_speed_kmh": 28.52650494159928}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992179, 40.671729], [-73.991519, 40.669051], [-73.990963, 40.670255], [-73.989378, 40.670214], [-73.992179, 40.671729]]], "type": "Polygon"}, "id": "892a1077457ffff", "properties": {"percentile_speed_kmh": 52.65049415992812}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.999479, 40.673157], [-73.996562, 40.671794], [-73.997311, 40.672927], [-73.996228, 40.673866], [-73.999479, 40.673157]]], "type": "Polygon"}, "id": "892a107745bffff", "properties": {"percentile_speed_kmh": 35.84905660377358}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994624, 40.663179], [-73.992399, 40.66113], [-73.992661, 40.662398], [-73.991265, 40.663006], [-73.994624, 40.663179]]], "type": "Polygon"}, "id": "892a1077463ffff", "properties": {"percentile_speed_kmh": 61.680143755615454}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992345, 40.659233], [-73.989, 40.659539], [-73.990432, 40.660091], [-73.990247, 40.661367], [-73.992345, 40.659233]]], "type": "Polygon"}, "id": "892a1077467ffff", "properties": {"percentile_speed_kmh": 35.93890386343217}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99879, 40.661615], [-73.995477, 40.662096], [-73.99695, 40.662571], [-73.996866, 40.663855], [-73.99879, 40.661615]]], "type": "Polygon"}, "id": "892a107746bffff", "properties": {"percentile_speed_kmh": 42.40790655884995}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99684, 40.659827], [-73.993726, 40.658791], [-73.994654, 40.659833], [-73.993735, 40.66088], [-73.99684, 40.659827]]], "type": "Polygon"}, "id": "892a107746fffff", "properties": {"percentile_speed_kmh": 76.46001796945193}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989828, 40.666383], [-73.992767, 40.665053], [-73.991184, 40.664992], [-73.990747, 40.663757], [-73.989828, 40.666383]]], "type": "Polygon"}, "id": "892a1077473ffff", "properties": {"percentile_speed_kmh": 41.64420485175202}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98872, 40.664121], [-73.990009, 40.661599], [-73.98872, 40.662348], [-73.987432, 40.661599], [-73.98872, 40.664121]]], "type": "Polygon"}, "id": "892a1077477ffff", "properties": {"percentile_speed_kmh": 50.53908355795148}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.994196, 40.666326], [-73.997017, 40.664838], [-73.995432, 40.664865], [-73.994893, 40.663656], [-73.994196, 40.666326]]], "type": "Polygon"}, "id": "892a107747bffff", "properties": {"percentile_speed_kmh": 79.06558849955076}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975646, 40.674914], [-73.978004, 40.672965], [-73.976464, 40.673269], [-73.975615, 40.672184], [-73.975646, 40.674914]]], "type": "Polygon"}, "id": "892a1077483ffff", "properties": {"percentile_speed_kmh": 63.072776280323446}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974235, 40.672436], [-73.975272, 40.669838], [-73.974061, 40.670668], [-73.972704, 40.670004], [-73.974235, 40.672436]]], "type": "Polygon"}, "id": "892a1077487ffff", "properties": {"percentile_speed_kmh": 65.5884995507637}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980959, 40.674876], [-73.981603, 40.672196], [-73.980524, 40.673139], [-73.979078, 40.672612], [-73.980959, 40.674876]]], "type": "Polygon"}, "id": "892a107748bffff", "properties": {"percentile_speed_kmh": 30.233602875112307}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97899, 40.672233], [-73.979121, 40.669505], [-73.978233, 40.67057], [-73.976704, 40.67023], [-73.97899, 40.672233]]], "type": "Polygon"}, "id": "892a107748fffff", "properties": {"percentile_speed_kmh": 47.03504043126684}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973744, 40.677648], [-73.975914, 40.67556], [-73.974406, 40.675958], [-73.973458, 40.674928], [-73.973744, 40.677648]]], "type": "Polygon"}, "id": "892a1077493ffff", "properties": {"percentile_speed_kmh": 33.917340521114106}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972659, 40.675054], [-73.972851, 40.672328], [-73.971939, 40.67338], [-73.970418, 40.673016], [-73.972659, 40.675054]]], "type": "Polygon"}, "id": "892a1077497ffff", "properties": {"percentile_speed_kmh": 26.684636118598384}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978627, 40.677601], [-73.979809, 40.675045], [-73.978553, 40.675829], [-73.977234, 40.675116], [-73.978627, 40.677601]]], "type": "Polygon"}, "id": "892a107749bffff", "properties": {"percentile_speed_kmh": 49.056603773584904}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974306, 40.667124], [-73.974841, 40.664428], [-73.973801, 40.665399], [-73.972334, 40.664911], [-73.974306, 40.667124]]], "type": "Polygon"}, "id": "892a10774a3ffff", "properties": {"percentile_speed_kmh": 65.22911051212938}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972329, 40.664476], [-73.972362, 40.661746], [-73.971512, 40.662831], [-73.969973, 40.662527], [-73.972329, 40.664476]]], "type": "Polygon"}, "id": "892a10774a7ffff", "properties": {"percentile_speed_kmh": 68.19407008086253}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978532, 40.667016], [-73.979145, 40.664332], [-73.978078, 40.665282], [-73.976626, 40.664766], [-73.978532, 40.667016]]], "type": "Polygon"}, "id": "892a10774abffff", "properties": {"percentile_speed_kmh": 42.902066486972146}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976191, 40.664451], [-73.976996, 40.6618], [-73.975862, 40.662698], [-73.974449, 40.662115], [-73.976191, 40.664451]]], "type": "Polygon"}, "id": "892a10774afffff", "properties": {"percentile_speed_kmh": 58.84995507637017}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973615, 40.668758], [-73.970936, 40.667106], [-73.971501, 40.668307], [-73.97028, 40.669126], [-73.973615, 40.668758]]], "type": "Polygon"}, "id": "892a10774b3ffff", "properties": {"percentile_speed_kmh": 44.339622641509436}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970839, 40.666897], [-73.969708, 40.664326], [-73.969372, 40.665582], [-73.967798, 40.665728], [-73.970839, 40.666897]]], "type": "Polygon"}, "id": "892a10774b7ffff", "properties": {"percentile_speed_kmh": 53.41419586702605}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976061, 40.669743], [-73.977452, 40.667258], [-73.976134, 40.667971], [-73.974878, 40.667188], [-73.976061, 40.669743]]], "type": "Polygon"}, "id": "892a10774bbffff", "properties": {"percentile_speed_kmh": 82.65947888589398}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987045, 40.67737], [-73.988432, 40.674883], [-73.987115, 40.675598], [-73.985857, 40.674816], [-73.987045, 40.67737]]], "type": "Polygon"}, "id": "892a10774c3ffff", "properties": {"percentile_speed_kmh": 53.00988319856244}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983623, 40.674393], [-73.986686, 40.673262], [-73.985114, 40.673097], [-73.984802, 40.671836], [-73.983623, 40.674393]]], "type": "Polygon"}, "id": "892a10774c7ffff", "properties": {"percentile_speed_kmh": 30.81761006289308}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.992525, 40.676922], [-73.991556, 40.674308], [-73.991142, 40.675549], [-73.98956, 40.675629], [-73.992525, 40.676922]]], "type": "Polygon"}, "id": "892a10774cbffff", "properties": {"percentile_speed_kmh": 41.7340521114106}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989502, 40.674644], [-73.990136, 40.671963], [-73.989061, 40.672908], [-73.987613, 40.672385], [-73.989502, 40.674644]]], "type": "Polygon"}, "id": "892a10774cfffff", "properties": {"percentile_speed_kmh": 43.84546271338724}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985601, 40.680004], [-73.985931, 40.677287], [-73.984966, 40.678307], [-73.983465, 40.677893], [-73.985601, 40.680004]]], "type": "Polygon"}, "id": "892a10774d3ffff", "properties": {"percentile_speed_kmh": 39.892183288409704}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983176, 40.67746], [-73.983858, 40.674787], [-73.982766, 40.675719], [-73.981327, 40.675179], [-73.983176, 40.67746]]], "type": "Polygon"}, "id": "892a10774d7ffff", "properties": {"percentile_speed_kmh": 27.044025157232703}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.990652, 40.679501], [-73.98931, 40.676997], [-73.989079, 40.678269], [-73.98752, 40.6785], [-73.990652, 40.679501]]], "type": "Polygon"}, "id": "892a10774dbffff", "properties": {"percentile_speed_kmh": 33.06379155435759}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97071, 40.650486], [-73.968242, 40.648631], [-73.968661, 40.649871], [-73.967348, 40.65059], [-73.97071, 40.650486]]], "type": "Polygon"}, "id": "892a1077503ffff", "properties": {"percentile_speed_kmh": 12.803234501347708}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965188, 40.648128], [-73.968524, 40.647779], [-73.967083, 40.647246], [-73.967243, 40.645967], [-73.965188, 40.648128]]], "type": "Polygon"}, "id": "892a1077507ffff", "properties": {"percentile_speed_kmh": 13.25247079964061}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973163, 40.651333], [-73.97463, 40.648877], [-73.973291, 40.649563], [-73.972059, 40.648754], [-73.973163, 40.651333]]], "type": "Polygon"}, "id": "892a107750bffff", "properties": {"percentile_speed_kmh": 14.734950584007187}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971747, 40.648637], [-73.971713, 40.645908], [-73.970891, 40.647006], [-73.969345, 40.646726], [-73.971747, 40.648637]]], "type": "Polygon"}, "id": "892a107750fffff", "properties": {"percentile_speed_kmh": 16.442048517520217}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968676, 40.652148], [-73.965313, 40.652059], [-73.966631, 40.652772], [-73.96622, 40.654014], [-73.968676, 40.652148]]], "type": "Polygon"}, "id": "892a1077513ffff", "properties": {"percentile_speed_kmh": 7.681940700808625}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966316, 40.649355], [-73.962979, 40.6497], [-73.96442, 40.650235], [-73.964257, 40.651513], [-73.966316, 40.649355]]], "type": "Polygon"}, "id": "892a1077517ffff", "properties": {"percentile_speed_kmh": 20.035938903863432}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972982, 40.652978], [-73.970375, 40.651253], [-73.97089, 40.652469], [-73.969635, 40.653254], [-73.972982, 40.652978]]], "type": "Polygon"}, "id": "892a107751bffff", "properties": {"percentile_speed_kmh": 10.512129380053908}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965912, 40.64385], [-73.962716, 40.644702], [-73.964255, 40.645005], [-73.964395, 40.646286], [-73.965912, 40.64385]]], "type": "Polygon"}, "id": "892a1077533ffff", "properties": {"percentile_speed_kmh": 8.984725965858042}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970138, 40.645698], [-73.968722, 40.643222], [-73.96853, 40.644498], [-73.966979, 40.64476], [-73.970138, 40.645698]]], "type": "Polygon"}, "id": "892a107753bffff", "properties": {"percentile_speed_kmh": 41.689128481581314}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980288, 40.65374], [-73.980643, 40.651026], [-73.979669, 40.65204], [-73.978173, 40.651617], [-73.980288, 40.65374]]], "type": "Polygon"}, "id": "892a1077543ffff", "properties": {"percentile_speed_kmh": 47.93351302785265}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.975768, 40.650096], [-73.979094, 40.650508], [-73.97789, 40.649672], [-73.978479, 40.648479], [-73.975768, 40.650096]]], "type": "Polygon"}, "id": "892a1077547ffff", "properties": {"percentile_speed_kmh": 12.174303683737646}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978116, 40.656464], [-73.978738, 40.653782], [-73.977667, 40.654729], [-73.976217, 40.654211], [-73.978116, 40.656464]]], "type": "Polygon"}, "id": "892a1077553ffff", "properties": {"percentile_speed_kmh": 67.9245283018868}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976053, 40.653847], [-73.976347, 40.651128], [-73.975396, 40.652157], [-73.97389, 40.651756], [-73.976053, 40.653847]]], "type": "Polygon"}, "id": "892a1077557ffff", "properties": {"percentile_speed_kmh": 37.10691823899371}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983287, 40.655955], [-73.982022, 40.653426], [-73.981753, 40.654693], [-73.980188, 40.654892], [-73.983287, 40.655955]]], "type": "Polygon"}, "id": "892a107755bffff", "properties": {"percentile_speed_kmh": 72.73135669362084}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976722, 40.648086], [-73.975099, 40.645695], [-73.975016, 40.646978], [-73.97349, 40.647326], [-73.976722, 40.648086]]], "type": "Polygon"}, "id": "892a1077573ffff", "properties": {"percentile_speed_kmh": 5.929919137466307}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.977881, 40.647606], [-73.981245, 40.64762], [-73.979904, 40.646936], [-73.980272, 40.645686], [-73.977881, 40.647606]]], "type": "Polygon"}, "id": "892a107757bffff", "properties": {"percentile_speed_kmh": 7.951482479784366}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961877, 40.654371], [-73.958855, 40.655571], [-73.960432, 40.6557], [-73.960787, 40.656953], [-73.961877, 40.654371]]], "type": "Polygon"}, "id": "892a1077583ffff", "properties": {"percentile_speed_kmh": 6.154537286612758}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960237, 40.652674], [-73.95697, 40.652024], [-73.958077, 40.652943], [-73.95736, 40.654089], [-73.960237, 40.652674]]], "type": "Polygon"}, "id": "892a1077587ffff", "properties": {"percentile_speed_kmh": 15.588499550763702}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965043, 40.656839], [-73.966153, 40.654262], [-73.964919, 40.655069], [-73.963582, 40.65438], [-73.965043, 40.656839]]], "type": "Polygon"}, "id": "892a107758bffff", "properties": {"percentile_speed_kmh": 39.35309973045822}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964133, 40.653699], [-73.962492, 40.651316], [-73.962419, 40.6526], [-73.960896, 40.652955], [-73.964133, 40.653699]]], "type": "Polygon"}, "id": "892a107758fffff", "properties": {"percentile_speed_kmh": 13.02785265049416}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959948, 40.659202], [-73.958613, 40.656697], [-73.958379, 40.657968], [-73.95682, 40.658197], [-73.959948, 40.659202]]], "type": "Polygon"}, "id": "892a1077593ffff", "properties": {"percentile_speed_kmh": 16.801437556154536}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958208, 40.655385], [-73.954949, 40.654706], [-73.956045, 40.655635], [-73.955312, 40.656775], [-73.958208, 40.655385]]], "type": "Polygon"}, "id": "892a1077597ffff", "properties": {"percentile_speed_kmh": 14.869721473495058}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963165, 40.659522], [-73.964001, 40.656878], [-73.962857, 40.657767], [-73.961452, 40.657172], [-73.963165, 40.659522]]], "type": "Polygon"}, "id": "892a107759bffff", "properties": {"percentile_speed_kmh": 31.176999101527404}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960044, 40.647777], [-73.957088, 40.646474], [-73.957872, 40.647592], [-73.956819, 40.648552], [-73.960044, 40.647777]]], "type": "Polygon"}, "id": "892a10775a3ffff", "properties": {"percentile_speed_kmh": 16.262353998203054}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964304, 40.647705], [-73.961397, 40.646333], [-73.962139, 40.647468], [-73.961052, 40.648403], [-73.964304, 40.647705]]], "type": "Polygon"}, "id": "892a10775abffff", "properties": {"percentile_speed_kmh": 10.96136567834681}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961939, 40.644346], [-73.958575, 40.644379], [-73.95993, 40.645044], [-73.959588, 40.646299], [-73.961939, 40.644346]]], "type": "Polygon"}, "id": "892a10775afffff", "properties": {"percentile_speed_kmh": 7.502246181491464}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957343, 40.651468], [-73.956398, 40.648849], [-73.955974, 40.650087], [-73.954392, 40.650159], [-73.957343, 40.651468]]], "type": "Polygon"}, "id": "892a10775b3ffff", "properties": {"percentile_speed_kmh": 13.342318059299192}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962217, 40.650615], [-73.959592, 40.648908], [-73.960119, 40.65012], [-73.958873, 40.650914], [-73.962217, 40.650615]]], "type": "Polygon"}, "id": "892a10775bbffff", "properties": {"percentile_speed_kmh": 8.7151841868823}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972144, 40.659193], [-73.972137, 40.656463], [-73.971303, 40.657557], [-73.96976, 40.657267], [-73.972144, 40.659193]]], "type": "Polygon"}, "id": "892a10775c3ffff", "properties": {"percentile_speed_kmh": 72.55166217430369}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970784, 40.655988], [-73.968737, 40.653822], [-73.968892, 40.655101], [-73.967448, 40.65563], [-73.970784, 40.655988]]], "type": "Polygon"}, "id": "892a10775c7ffff", "properties": {"percentile_speed_kmh": 32.21024258760108}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976738, 40.658934], [-73.976048, 40.656262], [-73.975505, 40.65747], [-73.973921, 40.657441], [-73.976738, 40.658934]]], "type": "Polygon"}, "id": "892a10775cbffff", "properties": {"percentile_speed_kmh": 71.24887690925426}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974178, 40.656496], [-73.974164, 40.653767], [-73.973334, 40.654861], [-73.971789, 40.654574], [-73.974178, 40.656496]]], "type": "Polygon"}, "id": "892a10775cfffff", "properties": {"percentile_speed_kmh": 38.58939802336029}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969051, 40.661973], [-73.970929, 40.659708], [-73.969484, 40.660235], [-73.968405, 40.659294], [-73.969051, 40.661973]]], "type": "Polygon"}, "id": "892a10775d3ffff", "properties": {"percentile_speed_kmh": 44.65408805031446}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967291, 40.659419], [-73.968379, 40.656835], [-73.967153, 40.657649], [-73.965809, 40.656968], [-73.967291, 40.659419]]], "type": "Polygon"}, "id": "892a10775d7ffff", "properties": {"percentile_speed_kmh": 49.01168014375561}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974146, 40.661838], [-73.974595, 40.659132], [-73.973586, 40.660124], [-73.972105, 40.659668], [-73.974146, 40.661838]]], "type": "Polygon"}, "id": "892a10775dbffff", "properties": {"percentile_speed_kmh": 87.33153638814017}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.005998, 40.675327], [-74.002805, 40.67446], [-74.003817, 40.67545], [-74.002984, 40.676544], [-74.005998, 40.675327]]], "type": "Polygon"}, "id": "892a1077693ffff", "properties": {"percentile_speed_kmh": 19.76639712488769}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.003749, 40.673036], [-74.000826, 40.67168], [-74.00158, 40.672812], [-74.0005, 40.673753], [-74.003749, 40.673036]]], "type": "Polygon"}, "id": "892a1077697ffff", "properties": {"percentile_speed_kmh": 22.821203953279426}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.010245, 40.675064], [-74.006961, 40.67446], [-74.00809, 40.675363], [-74.007397, 40.67652], [-74.010245, 40.675064]]], "type": "Polygon"}, "id": "892a107769bffff", "properties": {"percentile_speed_kmh": 21.87780772686433}, "type": "Feature"}], "type": "FeatureCollection"});\n", | |
| "\n", | |
| " \n", | |
| " \n", | |
| " geo_json_d4752c310b42146f48613a2543e51fcf.addTo(map_6fd17d9296b8fc2b80639fab159558d2);\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 0x7fe7cea66e90>" | |
| ] | |
| }, | |
| "execution_count": 30, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "hexmap = choropleth_map_vector(df_aggreg = positions_df_byhex, color_map_name = \"coolwarm\", column_name_bearing = \"avg_direction\", column_name_magnitude = \"percentile_speed_kmh\", same_size_arrows = True)\n", | |
| "hexmap" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "885e3e65-03e7-4f30-96b8-76af1dec6883", | |
| "metadata": {}, | |
| "source": [ | |
| "<img src=\"https://cdn-images-1.medium.com/max/1600/1*fCAberrv8hytR1HTZNYc5w.png\" width=600 />" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 31, | |
| "id": "40581704-f13a-4710-8218-4bdbff4ca934", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| "Colour column min value 0.044923629829290206, max value 99.46091644204851, mean value 52.00171410729419\n", | |
| "Hexagon cell count: 1410\n" | |
| ] | |
| }, | |
| { | |
| "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-3.7.1.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-glyphicons.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_0b73fc12dd3b857f3432dddc9efc393d {\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_0b73fc12dd3b857f3432dddc9efc393d" ></div>\n", | |
| " \n", | |
| "</body>\n", | |
| "<script>\n", | |
| " \n", | |
| " \n", | |
| " var map_0b73fc12dd3b857f3432dddc9efc393d = L.map(\n", | |
| " "map_0b73fc12dd3b857f3432dddc9efc393d",\n", | |
| " {\n", | |
| " center: [40.74212561592109, -73.95301911725144],\n", | |
| " crs: L.CRS.EPSG3857,\n", | |
| " zoom: 12,\n", | |
| " zoomControl: true,\n", | |
| " preferCanvas: false,\n", | |
| " }\n", | |
| " );\n", | |
| "\n", | |
| " \n", | |
| "\n", | |
| " \n", | |
| " \n", | |
| " var tile_layer_6e0f3cc3c937e774afae8ce38fc79d15 = L.tileLayer(\n", | |
| " "https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",\n", | |
| " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\"https://carto.com/attributions\\"\\u003eCARTO\\u003c/a\\u003e", "detectRetina": false, "maxNativeZoom": 20, "maxZoom": 20, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}\n", | |
| " );\n", | |
| " \n", | |
| " \n", | |
| " tile_layer_6e0f3cc3c937e774afae8ce38fc79d15.addTo(map_0b73fc12dd3b857f3432dddc9efc393d);\n", | |
| " \n", | |
| " \n", | |
| " function geo_json_bb04183b3842fb74145dde652b6884f6_styler(feature) {\n", | |
| " switch(feature.id) {\n", | |
| " case "892a1001203ffff": case "892a1008d2bffff": case "892a100ab83ffff": case "892a100d28bffff": case "892a100f2a7ffff": case "892a107746bffff": \n", | |
| " return {"color": "black", "fillColor": "#c9d7f0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100120fffff": case "892a100d24bffff": case "892a100d2dbffff": case "892a100d38bffff": case "892a100d483ffff": case "892a100d6d3ffff": case "892a100d6d7ffff": case "892a100da77ffff": case "892a107291bffff": \n", | |
| " return {"color": "black", "fillColor": "#c4d5f3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100121bffff": case "892a100d667ffff": case "892a100d677ffff": case "892a1072907ffff": case "892a1072dc3ffff": case "892a1077693ffff": \n", | |
| " return {"color": "black", "fillColor": "#7a9df8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1001267ffff": case "892a1008c07ffff": case "892a100ab93ffff": case "892a100d1c3ffff": case "892a100de17ffff": \n", | |
| " return {"color": "black", "fillColor": "#cd423b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100126fffff": case "892a1008877ffff": case "892a1072967ffff": case "892a1077547ffff": \n", | |
| " return {"color": "black", "fillColor": "#6180e9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100127bffff": case "892a100d01bffff": case "892a100d3d7ffff": case "892a100d45bffff": case "892a100d6bbffff": case "892a100dcb7ffff": case "892a10729dbffff": case "892a1072d6bffff": \n", | |
| " return {"color": "black", "fillColor": "#cbd8ee", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10012c7ffff": case "892a100d66bffff": case "892a100d6c7ffff": case "892a100db0bffff": case "892a107290fffff": case "892a1072937ffff": \n", | |
| " return {"color": "black", "fillColor": "#8caffe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008803ffff": \n", | |
| " return {"color": "black", "fillColor": "#be242e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008807ffff": case "892a1008babffff": case "892a100ab07ffff": case "892a100ab7bffff": case "892a100d4b7ffff": case "892a100d94fffff": case "892a100d953ffff": case "892a1077483ffff": \n", | |
| " return {"color": "black", "fillColor": "#f5c1a9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100880fffff": case "892a1072127ffff": \n", | |
| " return {"color": "black", "fillColor": "#b40426", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008813ffff": case "892a100ab37ffff": case "892a100ac83ffff": case "892a100d82bffff": case "892a100da17ffff": case "892a100da8bffff": case "892a100ddc7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6bea4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008817ffff": case "892a100aa3bffff": case "892a100ac33ffff": case "892a100d417ffff": case "892a100d423ffff": case "892a100d473ffff": case "892a1072c43ffff": \n", | |
| " return {"color": "black", "fillColor": "#e26952", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008823ffff": case "892a10089cbffff": case "892a100a86bffff": case "892a100c60bffff": case "892a100d2a3ffff": case "892a100d89bffff": \n", | |
| " return {"color": "black", "fillColor": "#efcebd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008827ffff": case "892a1008d37ffff": case "892a100a8a7ffff": case "892a100abafffff": case "892a100d30fffff": case "892a100dca7ffff": case "892a100dd57ffff": case "892a100ddc3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f1ccb8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100882bffff": case "892a1008957ffff": case "892a100897bffff": case "892a100d17bffff": case "892a100d307ffff": case "892a100dc47ffff": case "892a1072d87ffff": \n", | |
| " return {"color": "black", "fillColor": "#f2c9b4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100882fffff": case "892a1008b27ffff": case "892a1008c27ffff": case "892a100a863ffff": case "892a100c617ffff": case "892a100d827ffff": case "892a100d9c3ffff": case "892a100f22fffff": case "892a1072dbbffff": \n", | |
| " return {"color": "black", "fillColor": "#e7d7ce", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008833ffff": case "892a100d33bffff": case "892a100d843ffff": case "892a100dc7bffff": case "892a100de6bffff": \n", | |
| " return {"color": "black", "fillColor": "#f59d7e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008837ffff": case "892a100a893ffff": case "892a100abbbffff": case "892a10721afffff": \n", | |
| " return {"color": "black", "fillColor": "#dc5d4a", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100883bffff": case "892a1008cafffff": case "892a100d443ffff": case "892a100daa3ffff": case "892a10721b7ffff": case "892a1072cc3ffff": case "892a107740fffff": \n", | |
| " return {"color": "black", "fillColor": "#e0dbd8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008867ffff": case "892a100a973ffff": case "892a100a9cbffff": case "892a100d383ffff": case "892a100d5cfffff": case "892a100de23ffff": case "892a1072ccbffff": \n", | |
| " return {"color": "black", "fillColor": "#e7745b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008883ffff": case "892a100c603ffff": case "892a100d377ffff": case "892a100d543ffff": case "892a100dd53ffff": case "892a100ddcbffff": case "892a100deabffff": case "892a100f16bffff": case "892a1072d47ffff": \n", | |
| " return {"color": "black", "fillColor": "#f08a6c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008887ffff": case "892a1008d4fffff": case "892a100a8d3ffff": case "892a100abc3ffff": case "892a100ac37ffff": case "892a100d487ffff": case "892a100d593ffff": case "892a100dc0bffff": case "892a100dc87ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7ad90", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100888bffff": case "892a100dcdbffff": case "892a1072137ffff": \n", | |
| " return {"color": "black", "fillColor": "#b8122a", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100888fffff": case "892a1008943ffff": case "892a100ac13ffff": case "892a100c647ffff": case "892a1072d7bffff": \n", | |
| " return {"color": "black", "fillColor": "#ec8165", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008893ffff": case "892a100a903ffff": case "892a100d463ffff": case "892a100de0bffff": case "892a100f32fffff": \n", | |
| " return {"color": "black", "fillColor": "#cf453c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008897ffff": case "892a100d40bffff": case "892a100d893ffff": case "892a100dc77ffff": case "892a100f30bffff": case "892a1072db7ffff": case "892a10774a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7bca1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100889bffff": case "892a100a827ffff": case "892a100dcd3ffff": \n", | |
| " return {"color": "black", "fillColor": "#bd1f2d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088a3ffff": case "892a10088bbffff": case "892a100ab9bffff": case "892a100c677ffff": case "892a100da33ffff": case "892a100dabbffff": case "892a1072d43ffff": \n", | |
| " return {"color": "black", "fillColor": "#edd1c2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088a7ffff": case "892a1008db3ffff": case "892a100ab1bffff": case "892a100d1dbffff": case "892a100d883ffff": case "892a100d88bffff": case "892a100f24bffff": \n", | |
| " return {"color": "black", "fillColor": "#e36c55", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088abffff": case "892a1008977ffff": case "892a100d14fffff": case "892a100f16fffff": case "892a100f223ffff": case "892a100f3abffff": case "892a107701bffff": \n", | |
| " return {"color": "black", "fillColor": "#ead5c9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088afffff": case "892a100da13ffff": case "892a100db03ffff": case "892a100f13bffff": case "892a100f333ffff": case "892a107258fffff": case "892a107290bffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b99e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088b3ffff": case "892a100d143ffff": case "892a100d54bffff": case "892a100d8a7ffff": case "892a100da6bffff": case "892a100dbafffff": case "892a100dc17ffff": case "892a100f167ffff": case "892a10775cfffff": \n", | |
| " return {"color": "black", "fillColor": "#bcd2f7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10088b7ffff": case "892a1008bafffff": case "892a100d4a3ffff": case "892a100d59bffff": case "892a100de6fffff": case "892a10770d3ffff": case "892a107755bffff": \n", | |
| " return {"color": "black", "fillColor": "#f5a081", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008903ffff": case "892a100a823ffff": case "892a100a963ffff": case "892a100ac03ffff": case "892a100c44fffff": case "892a100c4cbffff": case "892a100d80fffff": case "892a100dc33ffff": \n", | |
| " return {"color": "black", "fillColor": "#f0cdbb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008907ffff": case "892a100ab73ffff": case "892a1072983ffff": case "892a107750fffff": \n", | |
| " return {"color": "black", "fillColor": "#6f92f3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100890bffff": case "892a1008cb7ffff": case "892a1008d07ffff": case "892a100a943ffff": case "892a100d05bffff": case "892a100d317ffff": case "892a107709bffff": \n", | |
| " return {"color": "black", "fillColor": "#f5c0a7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100890fffff": case "892a100893bffff": case "892a1008b3bffff": case "892a100d20fffff": case "892a100d217ffff": case "892a100dc3bffff": case "892a1077433ffff": \n", | |
| " return {"color": "black", "fillColor": "#c5d6f2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008913ffff": case "892a1008dabffff": case "892a100d12bffff": case "892a100d243ffff": case "892a100d693ffff": case "892a100dad7ffff": case "892a100db93ffff": case "892a10774abffff": \n", | |
| " return {"color": "black", "fillColor": "#cad8ef", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008917ffff": case "892a100898fffff": case "892a100d3dbffff": case "892a100dcafffff": case "892a1072597ffff": case "892a10774d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#c0d4f5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100891bffff": case "892a1008b13ffff": case "892a100d0c3ffff": case "892a100dd03ffff": case "892a100f357ffff": case "892a100f39bffff": \n", | |
| " return {"color": "black", "fillColor": "#d4dbe6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008923ffff": case "892a100ac17ffff": case "892a100c68fffff": case "892a100d087ffff": case "892a100d947ffff": case "892a100da2fffff": case "892a1072187ffff": case "892a1072c6fffff": \n", | |
| " return {"color": "black", "fillColor": "#8badfd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008927ffff": case "892a100d203ffff": case "892a100d633ffff": case "892a100da2bffff": case "892a100dec3ffff": \n", | |
| " return {"color": "black", "fillColor": "#a9c6fd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100892bffff": case "892a100d277ffff": case "892a100d27bffff": case "892a100d86fffff": case "892a100de97ffff": case "892a1072527ffff": \n", | |
| " return {"color": "black", "fillColor": "#c3d5f4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100892fffff": case "892a100d15bffff": case "892a100d23bffff": case "892a100d68fffff": case "892a100dac3ffff": case "892a1072c9bffff": \n", | |
| " return {"color": "black", "fillColor": "#b6cefa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008933ffff": case "892a100a8a3ffff": case "892a100d863ffff": case "892a100f163ffff": case "892a100f37bffff": case "892a1072cd7ffff": case "892a107740bffff": case "892a107741bffff": \n", | |
| " return {"color": "black", "fillColor": "#bed2f6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008937ffff": case "892a1008ba3ffff": case "892a100ab4fffff": case "892a100d00bffff": case "892a100d21bffff": case "892a100d297ffff": case "892a100d2abffff": \n", | |
| " return {"color": "black", "fillColor": "#d1dae9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008947ffff": case "892a100896bffff": case "892a100a817ffff": case "892a100db53ffff": case "892a100dd13ffff": case "892a10729d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f4c5ad", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100894bffff": case "892a1008c2bffff": case "892a1008c97ffff": case "892a100ac27ffff": case "892a100ae07ffff": case "892a100d387ffff": \n", | |
| " return {"color": "black", "fillColor": "#d85646", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100894fffff": case "892a100aa8fffff": case "892a100abdbffff": case "892a100ac2bffff": case "892a100d0a3ffff": case "892a100d467ffff": case "892a100de37ffff": case "892a1072d13ffff": \n", | |
| " return {"color": "black", "fillColor": "#e36b54", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008953ffff": case "892a100a88bffff": case "892a100aa93ffff": case "892a100ae67ffff": case "892a100d8cfffff": case "892a100dc1bffff": case "892a100ddcfffff": \n", | |
| " return {"color": "black", "fillColor": "#e67259", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100895bffff": case "892a10089dbffff": case "892a100c61bffff": case "892a100d2b7ffff": case "892a100db4bffff": case "892a1072c57ffff": case "892a1072d97ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7ac8e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008963ffff": case "892a100d207ffff": case "892a100d373ffff": case "892a100d50bffff": case "892a100d5b3ffff": case "892a100f063ffff": case "892a100f393ffff": case "892a10728a7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b9d0f9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008967ffff": case "892a100a8abffff": case "892a100c377ffff": case "892a100d627ffff": case "892a100de87ffff": case "892a100de8fffff": case "892a1077553ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b396", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100896fffff": case "892a1008973ffff": case "892a100d62fffff": case "892a100da3bffff": case "892a100dc5bffff": case "892a100f34bffff": case "892a10774c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#e5d8d1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008983ffff": case "892a100d03bffff": case "892a100d26fffff": case "892a100d503ffff": case "892a100d613ffff": case "892a100de93ffff": case "892a10772a7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b2ccfb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008987ffff": case "892a100d22fffff": case "892a100f227ffff": case "892a100f35bffff": case "892a1072c87ffff": case "892a107706bffff": case "892a107748bffff": \n", | |
| " return {"color": "black", "fillColor": "#9fbfff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100898bffff": case "892a100d167ffff": case "892a100db23ffff": case "892a100db6bffff": case "892a100dc03ffff": case "892a100dca3ffff": case "892a100deb7ffff": case "892a1077443ffff": \n", | |
| " return {"color": "black", "fillColor": "#e8d6cc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008993ffff": case "892a100a807ffff": case "892a100d1cfffff": case "892a100dd0bffff": case "892a100dd5bffff": case "892a100f04fffff": case "892a1072ccfffff": case "892a1077057ffff": \n", | |
| " return {"color": "black", "fillColor": "#edd2c3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008997ffff": case "892a100d313ffff": case "892a100d3b7ffff": case "892a100dc2bffff": case "892a100dd93ffff": case "892a1072917ffff": case "892a1077473ffff": case "892a10774cbffff": case "892a107753bffff": \n", | |
| " return {"color": "black", "fillColor": "#c6d6f1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100899bffff": case "892a100c613ffff": case "892a100d2bbffff": case "892a100d5bbffff": case "892a100f32bffff": case "892a107748fffff": \n", | |
| " return {"color": "black", "fillColor": "#d6dce4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089a3ffff": case "892a100c6b7ffff": case "892a100d97bffff": case "892a107298bffff": case "892a1072d0fffff": \n", | |
| " return {"color": "black", "fillColor": "#779af7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089a7ffff": case "892a1008d8bffff": case "892a100d353ffff": case "892a100f127ffff": case "892a100f3cfffff": case "892a10729b3ffff": case "892a1072d67ffff": \n", | |
| " return {"color": "black", "fillColor": "#7699f6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089abffff": case "892a100ab43ffff": case "892a100d26bffff": case "892a100dacfffff": case "892a100dad3ffff": case "892a100dd4fffff": case "892a1072d33ffff": case "892a10774b3ffff": case "892a10775d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#cedaeb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089afffff": case "892a100ab67ffff": case "892a100d46bffff": case "892a100f077ffff": case "892a1072903ffff": case "892a1072c2fffff": case "892a1072cabffff": \n", | |
| " return {"color": "black", "fillColor": "#799cf8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089b3ffff": case "892a100ac07ffff": case "892a100d0bbffff": case "892a100d0cfffff": case "892a100d283ffff": case "892a100d68bffff": case "892a100dbd3ffff": \n", | |
| " return {"color": "black", "fillColor": "#dedcdb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089b7ffff": case "892a10728bbffff": case "892a1076643ffff": \n", | |
| " return {"color": "black", "fillColor": "#485fd1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089bbffff": case "892a100d3cbffff": case "892a100da63ffff": case "892a100f06fffff": case "892a100f07bffff": case "892a10725bbffff": \n", | |
| " return {"color": "black", "fillColor": "#98b9ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089c3ffff": case "892a1008d67ffff": case "892a100ab6bffff": case "892a100c643ffff": case "892a100d24fffff": case "892a100d8a3ffff": case "892a100da57ffff": \n", | |
| " return {"color": "black", "fillColor": "#dcdddd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089c7ffff": case "892a1008c83ffff": case "892a1008d47ffff": case "892a100a8c7ffff": case "892a100d067ffff": case "892a100dcbbffff": case "892a100f64bffff": case "892a10775cbffff": \n", | |
| " return {"color": "black", "fillColor": "#f7a688", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089cfffff": case "892a100a94bffff": case "892a100d093ffff": case "892a100da23ffff": case "892a100da9bffff": case "892a1072d0bffff": case "892a1072d9bffff": \n", | |
| " return {"color": "black", "fillColor": "#f2cab5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089d3ffff": case "892a100d337ffff": case "892a100d5c3ffff": case "892a100de4fffff": case "892a1072dabffff": case "892a107743bffff": case "892a10774a7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b194", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10089d7ffff": case "892a100ab0fffff": case "892a100ababffff": case "892a100d053ffff": case "892a100d38fffff": case "892a100dddbffff": case "892a100de57ffff": \n", | |
| " return {"color": "black", "fillColor": "#ef886b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b03ffff": \n", | |
| " return {"color": "black", "fillColor": "#445acc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b07ffff": case "892a100d023ffff": case "892a100d6c3ffff": case "892a100db37ffff": case "892a100db87ffff": case "892a1077413ffff": \n", | |
| " return {"color": "black", "fillColor": "#d5dbe5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b0fffff": case "892a100f2b3ffff": case "892a10775bbffff": \n", | |
| " return {"color": "black", "fillColor": "#5572df", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b17ffff": case "892a100a873ffff": case "892a100aabbffff": case "892a100d51bffff": case "892a100d85bffff": case "892a100de4bffff": case "892a1072d8fffff": case "892a107744bffff": \n", | |
| " return {"color": "black", "fillColor": "#f59c7d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b23ffff": case "892a100d397ffff": case "892a100dbc3ffff": case "892a100dbc7ffff": case "892a100f38bffff": case "892a1072593ffff": \n", | |
| " return {"color": "black", "fillColor": "#f2cbb7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b2bffff": case "892a100d063ffff": case "892a100d58fffff": case "892a100d62bffff": case "892a100dacbffff": case "892a100dba3ffff": case "892a1072537ffff": \n", | |
| " return {"color": "black", "fillColor": "#9ebeff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b2fffff": case "892a1008b97ffff": case "892a100a81bffff": case "892a100ae13ffff": case "892a10729abffff": case "892a1072cd3ffff": \n", | |
| " return {"color": "black", "fillColor": "#d3dbe7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b33ffff": case "892a1008b8bffff": case "892a1008c17ffff": case "892a100d14bffff": case "892a100daafffff": case "892a100dab3ffff": case "892a100dd0fffff": \n", | |
| " return {"color": "black", "fillColor": "#f5c2aa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b37ffff": case "892a1008ba7ffff": case "892a100aa13ffff": case "892a100aa77ffff": case "892a100c36fffff": case "892a100d5cbffff": case "892a10721a3ffff": case "892a1077487ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7ba9f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b83ffff": case "892a1008c8bffff": case "892a100ac63ffff": case "892a100dadbffff": case "892a100dc0fffff": \n", | |
| " return {"color": "black", "fillColor": "#f5c4ac", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b87ffff": case "892a100a867ffff": case "892a100c347ffff": case "892a100d583ffff": case "892a100d587ffff": case "892a100de83ffff": \n", | |
| " return {"color": "black", "fillColor": "#f3c8b2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b8fffff": case "892a100aab7ffff": case "892a100ae2bffff": case "892a100d513ffff": case "892a100de73ffff": \n", | |
| " return {"color": "black", "fillColor": "#df634e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b93ffff": case "892a1008d33ffff": case "892a100c32bffff": case "892a100d8bbffff": case "892a100dd4bffff": case "892a100f383ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b497", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008b9bffff": case "892a100abcbffff": case "892a100c687ffff": case "892a100db27ffff": case "892a100f243ffff": case "892a10728c7ffff": \n", | |
| " return {"color": "black", "fillColor": "#5f7fe8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008bb3ffff": case "892a1008c33ffff": case "892a100dc2fffff": case "892a100de53ffff": case "892a1072cdbffff": case "892a1072d07ffff": case "892a1077427ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b599", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008bb7ffff": case "892a100d1d7ffff": case "892a100d5c7ffff": case "892a100f02bffff": case "892a100f25bffff": case "892a100f3b3ffff": case "892a10775dbffff": \n", | |
| " return {"color": "black", "fillColor": "#dd5f4b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008bbbffff": case "892a1008ddbffff": case "892a100c653ffff": case "892a100d127ffff": case "892a100d25bffff": case "892a100d287ffff": case "892a100d3c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#e1dad6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c03ffff": case "892a1008d7bffff": case "892a100aba3ffff": case "892a100d8d7ffff": case "892a100db4fffff": case "892a107747bffff": \n", | |
| " return {"color": "black", "fillColor": "#ee8669", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c0fffff": case "892a100ad6fffff": case "892a100dcd7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b70d28", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c13ffff": case "892a100d0afffff": case "892a100d557ffff": case "892a100d8dbffff": case "892a100dc43ffff": case "892a100f307ffff": \n", | |
| " return {"color": "black", "fillColor": "#eb7d62", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c23ffff": case "892a100a97bffff": case "892a100d2b3ffff": case "892a100d42fffff": case "892a100daa7ffff": case "892a100db97ffff": case "892a100dd8bffff": case "892a100f2b7ffff": \n", | |
| " return {"color": "black", "fillColor": "#dddcdc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c2fffff": case "892a100a87bffff": case "892a100a8b7ffff": case "892a100c64bffff": case "892a100c6d3ffff": case "892a100d803ffff": case "892a100dc57ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7aa8c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c37ffff": case "892a100d097ffff": case "892a100f233ffff": case "892a100f237ffff": case "892a10729a7ffff": case "892a1072c63ffff": case "892a107759bffff": \n", | |
| " return {"color": "black", "fillColor": "#a3c2fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c3bffff": case "892a100ae03ffff": \n", | |
| " return {"color": "black", "fillColor": "#c83836", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c67ffff": case "892a1008c77ffff": case "892a100d53bffff": \n", | |
| " return {"color": "black", "fillColor": "#c73635", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c87ffff": case "892a100d28fffff": case "892a100ded7ffff": case "892a107749bffff": case "892a10775d7ffff": \n", | |
| " return {"color": "black", "fillColor": "#dbdcde", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c8fffff": case "892a100aa2bffff": case "892a100aa2fffff": case "892a100de2fffff": case "892a1072d93ffff": \n", | |
| " return {"color": "black", "fillColor": "#d0473d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c93ffff": case "892a100aa07ffff": case "892a100d043ffff": case "892a100d407ffff": case "892a100d56bffff": case "892a100de43ffff": case "892a100de47ffff": case "892a100dea7ffff": \n", | |
| " return {"color": "black", "fillColor": "#e9785d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008c9bffff": case "892a100a9c7ffff": case "892a100a9cfffff": case "892a100c64fffff": case "892a100d3bbffff": case "892a100d40fffff": \n", | |
| " return {"color": "black", "fillColor": "#e0654f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008ca3ffff": case "892a100a813ffff": case "892a100aaa7ffff": case "892a100abc7ffff": case "892a100d857ffff": case "892a107744fffff": \n", | |
| " return {"color": "black", "fillColor": "#ea7b60", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008ca7ffff": case "892a100a947ffff": case "892a100aa23ffff": case "892a100c657ffff": case "892a100d6a7ffff": case "892a100d817ffff": case "892a100dc27ffff": case "892a100f373ffff": \n", | |
| " return {"color": "black", "fillColor": "#e9d5cb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008cabffff": case "892a100c4bbffff": case "892a100d813ffff": case "892a100d82fffff": case "892a100da93ffff": case "892a10775c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6a283", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008cb3ffff": case "892a1008d5bffff": case "892a1008dc3ffff": case "892a100a8c3ffff": case "892a100ab2bffff": case "892a100d2a7ffff": case "892a100dc37ffff": case "892a1072db3ffff": case "892a1077463ffff": \n", | |
| " return {"color": "black", "fillColor": "#f4c6af", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008cbbffff": case "892a100d037ffff": case "892a100d1cbffff": case "892a100d367ffff": case "892a100d8d3ffff": case "892a100de03ffff": \n", | |
| " return {"color": "black", "fillColor": "#d65244", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d03ffff": case "892a1008d73ffff": case "892a100ac87ffff": case "892a100d2afffff": case "892a100dc4fffff": case "892a100de13ffff": case "892a100f6cbffff": case "892a1072d4bffff": case "892a1072da3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6bfa6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d0bffff": case "892a100abd7ffff": case "892a100d09bffff": case "892a100d253ffff": case "892a100d263ffff": case "892a10770cfffff": \n", | |
| " return {"color": "black", "fillColor": "#cdd9ec", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d0fffff": case "892a100a83bffff": case "892a100c363ffff": case "892a100da87ffff": case "892a100dd1bffff": case "892a100dd6bffff": case "892a10774bbffff": \n", | |
| " return {"color": "black", "fillColor": "#e8765c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d13ffff": case "892a100f2afffff": case "892a100f34fffff": case "892a10766d3ffff": case "892a107742bffff": case "892a1077493ffff": \n", | |
| " return {"color": "black", "fillColor": "#adc9fd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d17ffff": case "892a100c69bffff": case "892a100d65bffff": case "892a100db07ffff": case "892a100db2bffff": case "892a100db57ffff": case "892a10728b3ffff": \n", | |
| " return {"color": "black", "fillColor": "#d7dce3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d1bffff": case "892a100ab0bffff": case "892a100c373ffff": case "892a100d6afffff": case "892a100dbcbffff": case "892a100dc67ffff": case "892a1072d4fffff": case "892a1072d57ffff": \n", | |
| " return {"color": "black", "fillColor": "#f3c7b1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d23ffff": case "892a100aa67ffff": case "892a100ac77ffff": case "892a100d887ffff": case "892a100d8cbffff": case "892a100f2cbffff": case "892a1072dc7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f08b6e", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d27ffff": case "892a100a8d7ffff": case "892a100d0abffff": case "892a100dc73ffff": case "892a107746fffff": \n", | |
| " return {"color": "black", "fillColor": "#f29274", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d2fffff": case "892a100a96bffff": case "892a100ab97ffff": case "892a100d327ffff": case "892a100d3a3ffff": case "892a100d46fffff": case "892a100d4bbffff": case "892a100d807ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7a98b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d3bffff": case "892a100ab5bffff": case "892a100abcfffff": case "892a100d833ffff": case "892a100f327ffff": case "892a100f36fffff": \n", | |
| " return {"color": "black", "fillColor": "#f39475", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d43ffff": case "892a100ac6fffff": case "892a1072ca7ffff": case "892a1072cafffff": case "892a1077507ffff": case "892a10775b3ffff": \n", | |
| " return {"color": "black", "fillColor": "#6485ec", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d4bffff": case "892a100ad4bffff": case "892a100c26bffff": case "892a100d8abffff": case "892a100f3a7ffff": case "892a1072dafffff": \n", | |
| " return {"color": "black", "fillColor": "#de614d", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d53ffff": case "892a1008dd7ffff": case "892a100d13bffff": case "892a100f3dbffff": case "892a1072507ffff": case "892a10725b3ffff": case "892a1072c27ffff": \n", | |
| " return {"color": "black", "fillColor": "#a5c3fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d57ffff": case "892a1008d63ffff": case "892a1008dd3ffff": case "892a100d163ffff": case "892a100d457ffff": case "892a1072d5bffff": case "892a1077457ffff": \n", | |
| " return {"color": "black", "fillColor": "#e4d9d2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d6bffff": case "892a100ab47ffff": case "892a100c343ffff": case "892a100c6c7ffff": case "892a100d2c7ffff": case "892a100d597ffff": case "892a100db13ffff": case "892a1077477ffff": \n", | |
| " return {"color": "black", "fillColor": "#dfdbd9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d6fffff": case "892a100a837ffff": case "892a100d3abffff": case "892a100d3b3ffff": case "892a100d4abffff": case "892a100da83ffff": case "892a100dc6bffff": \n", | |
| " return {"color": "black", "fillColor": "#ee8468", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d77ffff": case "892a1008dcbffff": case "892a100d413ffff": case "892a100d4cbffff": case "892a100d69bffff": case "892a100da27ffff": case "892a10774afffff": \n", | |
| " return {"color": "black", "fillColor": "#f1cdba", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d83ffff": case "892a100d233ffff": case "892a100db1bffff": case "892a1072933ffff": case "892a1072c23ffff": case "892a1072c3bffff": case "892a1072cc7ffff": case "892a10774c7ffff": \n", | |
| " return {"color": "black", "fillColor": "#a2c1ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d87ffff": case "892a100d103ffff": case "892a100d663ffff": case "892a100da43ffff": case "892a100da4fffff": case "892a100f12bffff": \n", | |
| " return {"color": "black", "fillColor": "#89acfd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d8fffff": case "892a100c6b3ffff": case "892a100d347ffff": case "892a100d943ffff": case "892a100f137ffff": case "892a10775a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#6e90f2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d93ffff": case "892a100d227ffff": case "892a100d257ffff": case "892a100d617ffff": case "892a100d623ffff": case "892a100d6abffff": case "892a100db2fffff": case "892a100f347ffff": case "892a1072c0bffff": \n", | |
| " return {"color": "black", "fillColor": "#a7c5fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d97ffff": case "892a100a91bffff": case "892a100dccbffff": case "892a100de2bffff": case "892a100de77ffff": \n", | |
| " return {"color": "black", "fillColor": "#d1493f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008d9bffff": case "892a100d37bffff": case "892a100d60bffff": case "892a100d643ffff": case "892a100ddd3ffff": case "892a10773d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#84a7fc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008da3ffff": case "892a1008dbbffff": case "892a100a887ffff": case "892a100d2d3ffff": case "892a100d4c7ffff": case "892a1072c37ffff": case "892a1072d23ffff": case "892a1077497ffff": \n", | |
| " return {"color": "black", "fillColor": "#93b5fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008dafffff": case "892a1008dc7ffff": case "892a100d34bffff": case "892a100db33ffff": case "892a10725a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#a1c0ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1008dcfffff": case "892a100aa8bffff": case "892a100d147ffff": case "892a100d247ffff": case "892a100d3d3ffff": case "892a100da6fffff": case "892a10725b7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b5cdfa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a107ffff": case "892a100d34fffff": case "892a100d64fffff": case "892a100d657ffff": case "892a100f2a3ffff": case "892a100f317ffff": case "892a100f6d3ffff": case "892a1072c33ffff": case "892a1072cb3ffff": \n", | |
| " return {"color": "black", "fillColor": "#81a4fb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a167ffff": case "892a1072193ffff": case "892a107293bffff": \n", | |
| " return {"color": "black", "fillColor": "#5875e1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a803ffff": case "892a100aa37ffff": case "892a100abb7ffff": case "892a100d0b3ffff": case "892a100deb3ffff": case "892a10728a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#f59f80", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a80bffff": case "892a100d403ffff": case "892a100d9d3ffff": case "892a100dc63ffff": \n", | |
| " return {"color": "black", "fillColor": "#f39577", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a80fffff": case "892a100a98bffff": case "892a100ab23ffff": case "892a100d123ffff": case "892a100da0bffff": case "892a100f3d7ffff": case "892a10766dbffff": case "892a1077407ffff": \n", | |
| " return {"color": "black", "fillColor": "#d2dbe8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a82bffff": case "892a100d42bffff": case "892a100d88fffff": case "892a100f323ffff": case "892a1072d1bffff": \n", | |
| " return {"color": "black", "fillColor": "#ec7f63", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a82fffff": case "892a100a8cfffff": case "892a100d363ffff": case "892a100d447ffff": case "892a100d6dbffff": case "892a100da07ffff": case "892a1072c47ffff": \n", | |
| " return {"color": "black", "fillColor": "#e2dad5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a833ffff": case "892a100ac2fffff": case "892a100d8c3ffff": case "892a100de0fffff": case "892a100f067ffff": \n", | |
| " return {"color": "black", "fillColor": "#e46e56", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a847ffff": case "892a100d113ffff": case "892a100dcc3ffff": \n", | |
| " return {"color": "black", "fillColor": "#c0282f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a857ffff": case "892a100a94fffff": case "892a100ac23ffff": case "892a100de7bffff": case "892a100f337ffff": case "892a1072d83ffff": \n", | |
| " return {"color": "black", "fillColor": "#f18d6f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a86fffff": case "892a100ab63ffff": case "892a100acd7ffff": case "892a100d343ffff": case "892a100d533ffff": case "892a1072533ffff": case "892a10725abffff": \n", | |
| " return {"color": "black", "fillColor": "#80a3fa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a877ffff": case "892a100aa9bffff": case "892a100ac73ffff": case "892a100ae77ffff": case "892a100da1bffff": case "892a100dab7ffff": case "892a100dc23ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6bda2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a88fffff": case "892a100ab8bffff": case "892a100d04bffff": case "892a100d16bffff": case "892a100d16fffff": case "892a100d493ffff": case "892a100d4dbffff": case "892a1072c7bffff": \n", | |
| " return {"color": "black", "fillColor": "#dadce0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a897ffff": case "892a100ac67ffff": case "892a100d137ffff": case "892a100d32fffff": case "892a100dccfffff": \n", | |
| " return {"color": "black", "fillColor": "#d24b40", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a89bffff": case "892a100aa33ffff": case "892a1072577ffff": case "892a1072d8bffff": \n", | |
| " return {"color": "black", "fillColor": "#d55042", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a8afffff": case "892a100c6dbffff": case "892a100d50fffff": case "892a100d847ffff": case "892a100d853ffff": case "892a100db6fffff": case "892a100debbffff": \n", | |
| " return {"color": "black", "fillColor": "#f18f71", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a8b3ffff": case "892a100acbbffff": case "892a100d4afffff": case "892a100d553ffff": case "892a100d83bffff": case "892a100d897ffff": \n", | |
| " return {"color": "black", "fillColor": "#f4987a", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a8bbffff": case "892a100d11bffff": case "892a100d453ffff": case "892a1072923ffff": \n", | |
| " return {"color": "black", "fillColor": "#5b7ae5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a953ffff": case "892a100ae0fffff": case "892a100dcb3ffff": case "892a100de1bffff": \n", | |
| " return {"color": "black", "fillColor": "#d95847", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a957ffff": case "892a100f313ffff": case "892a107700bffff": case "892a1077447ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b89c", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a95bffff": case "892a100ac0fffff": case "892a100adcbffff": case "892a100d0a7ffff": case "892a100d133ffff": \n", | |
| " return {"color": "black", "fillColor": "#d44e41", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a9c3ffff": case "892a100d637ffff": case "892a100de07ffff": case "892a1077047ffff": \n", | |
| " return {"color": "black", "fillColor": "#da5a49", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a9d3ffff": case "892a100f65bffff": \n", | |
| " return {"color": "black", "fillColor": "#c12b30", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100a9dbffff": case "892a100ae63ffff": case "892a100d5d7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7a889", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aa03ffff": case "892a100aa83ffff": case "892a100c6cbffff": case "892a100d43bffff": case "892a100d56fffff": case "892a100d84bffff": case "892a100da97ffff": \n", | |
| " return {"color": "black", "fillColor": "#e57058", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aa17ffff": case "892a100d18bffff": case "892a100d573ffff": case "892a107259bffff": \n", | |
| " return {"color": "black", "fillColor": "#cc403a", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aa27ffff": case "892a100c673ffff": case "892a100decbffff": case "892a10721b3ffff": case "892a1072d53ffff": \n", | |
| " return {"color": "black", "fillColor": "#e3d9d3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aaabffff": case "892a100abd3ffff": case "892a100ad43ffff": case "892a100d433ffff": case "892a100d437ffff": case "892a100deafffff": case "892a1072d17ffff": \n", | |
| " return {"color": "black", "fillColor": "#ed8366", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aaafffff": case "892a100abb3ffff": case "892a100d48fffff": case "892a100d5d3ffff": case "892a100d84fffff": case "892a100dc6fffff": case "892a10770d7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6a385", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab03ffff": case "892a100ab3bffff": case "892a100d6b7ffff": case "892a100d95bffff": case "892a100db7bffff": case "892a100dd77ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b79b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab13ffff": case "892a100d027ffff": case "892a100d033ffff": case "892a100d547ffff": case "892a100d57bffff": case "892a100db43ffff": case "892a100dbbbffff": case "892a100f367ffff": \n", | |
| " return {"color": "black", "fillColor": "#f6a586", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab17ffff": case "892a100f3cbffff": case "892a1072197ffff": case "892a1077587ffff": \n", | |
| " return {"color": "black", "fillColor": "#6c8ff1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab33ffff": case "892a100ac0bffff": case "892a100c34bffff": case "892a100d04fffff": case "892a100d4a7ffff": case "892a100d8c7ffff": case "892a1072583ffff": \n", | |
| " return {"color": "black", "fillColor": "#f29072", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab4bffff": case "892a100ab77ffff": case "892a100d237ffff": case "892a100dbd7ffff": case "892a1072dcfffff": case "892a1077543ffff": \n", | |
| " return {"color": "black", "fillColor": "#d8dce2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab53ffff": case "892a100d12fffff": case "892a100d303ffff": case "892a100d903ffff": case "892a100db17ffff": case "892a100f3c7ffff": case "892a107742fffff": \n", | |
| " return {"color": "black", "fillColor": "#d9dce1", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab57ffff": case "892a100ae9bffff": case "892a100db8bffff": case "892a100dbcfffff": case "892a1077417ffff": case "892a107758bffff": \n", | |
| " return {"color": "black", "fillColor": "#bfd3f6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab6fffff": case "892a100d267ffff": case "892a100d5abffff": case "892a100d94bffff": case "892a100db8fffff": case "892a100f123ffff": case "892a1072dd7ffff": \n", | |
| " return {"color": "black", "fillColor": "#b1cbfc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab87ffff": case "892a100ac3bffff": case "892a100da37ffff": case "892a100f073ffff": case "892a100f38fffff": \n", | |
| " return {"color": "black", "fillColor": "#f7af91", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ab8fffff": case "892a100ad4fffff": case "892a100d1c7ffff": case "892a100dc8fffff": \n", | |
| " return {"color": "black", "fillColor": "#cb3e38", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100aba7ffff": case "892a100d153ffff": case "892a100d4b3ffff": case "892a100d823ffff": case "892a100d87bffff": case "892a100da03ffff": case "892a100dc4bffff": case "892a100f36bffff": \n", | |
| " return {"color": "black", "fillColor": "#eed0c0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac6bffff": case "892a100d653ffff": case "892a100dbb7ffff": case "892a1072d3bffff": \n", | |
| " return {"color": "black", "fillColor": "#6788ee", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac8bffff": case "892a100d0c7ffff": case "892a100db47ffff": case "892a10721a7ffff": \n", | |
| " return {"color": "black", "fillColor": "#ecd3c5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac8fffff": case "892a100d6cbffff": case "892a100d873ffff": case "892a100dbdbffff": case "892a100dc07ffff": case "892a100f3afffff": case "892a1072da7ffff": \n", | |
| " return {"color": "black", "fillColor": "#efcfbf", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac93ffff": case "892a100c34fffff": case "892a100d06fffff": case "892a100d66fffff": case "892a100d867ffff": case "892a100d8b7ffff": case "892a1072517ffff": case "892a1072587ffff": \n", | |
| " return {"color": "black", "fillColor": "#afcafc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ac9bffff": case "892a100d007ffff": case "892a100d9dbffff": case "892a100dbb3ffff": case "892a1072883ffff": \n", | |
| " return {"color": "black", "fillColor": "#5977e3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ad5bffff": case "892a100dcc7ffff": \n", | |
| " return {"color": "black", "fillColor": "#c32e31", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ad6bffff": \n", | |
| " return {"color": "black", "fillColor": "#ba162b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ad73ffff": case "892a100d333ffff": \n", | |
| " return {"color": "black", "fillColor": "#c43032", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ad7bffff": case "892a100d54fffff": case "892a100d81bffff": case "892a100d8afffff": case "892a100de33ffff": case "892a100de63ffff": case "892a1072d03ffff": case "892a10770c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#e97a5f", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ae0bffff": case "892a100d10bffff": case "892a100da53ffff": case "892a10774dbffff": \n", | |
| " return {"color": "black", "fillColor": "#aac7fd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ae1bffff": case "892a100d047ffff": case "892a100d31bffff": case "892a100d41bffff": case "892a100f06bffff": case "892a100f343ffff": \n", | |
| " return {"color": "black", "fillColor": "#7da0f9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ae73ffff": case "892a100c697ffff": case "892a100d48bffff": case "892a10725a7ffff": case "892a1072c8fffff": \n", | |
| " return {"color": "black", "fillColor": "#96b7ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100ae8bffff": case "892a100c683ffff": case "892a100d003ffff": case "892a100d08bffff": case "892a100d61bffff": case "892a100da4bffff": case "892a1072cbbffff": case "892a1077517ffff": \n", | |
| " return {"color": "black", "fillColor": "#7b9ff9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c367ffff": case "892a100d9cbffff": case "892a1072927ffff": case "892a107665bffff": \n", | |
| " return {"color": "black", "fillColor": "#7396f5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c36bffff": case "892a100c453ffff": case "892a100d4c3ffff": case "892a100d877ffff": case "892a100da0fffff": case "892a100daabffff": case "892a100dd43ffff": \n", | |
| " return {"color": "black", "fillColor": "#ebd3c6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c37bffff": case "892a100d36fffff": case "892a100dac7ffff": case "892a100db3bffff": case "892a100de8bffff": case "892a100de9bffff": \n", | |
| " return {"color": "black", "fillColor": "#cfdaea", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c443ffff": case "892a100d077ffff": case "892a100d07bffff": case "892a100d393ffff": case "892a100d3a7ffff": case "892a100d3c7ffff": case "892a1072963ffff": \n", | |
| " return {"color": "black", "fillColor": "#9bbcff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c44bffff": case "892a107288bffff": case "892a1077533ffff": \n", | |
| " return {"color": "black", "fillColor": "#5673e0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c45bffff": case "892a100d64bffff": case "892a100db0fffff": case "892a100ded3ffff": case "892a100f12fffff": case "892a1077423ffff": \n", | |
| " return {"color": "black", "fillColor": "#9dbdff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c4d7ffff": case "892a100d293ffff": case "892a100d2c3ffff": case "892a100d2d7ffff": case "892a100d687ffff": case "892a100f30fffff": \n", | |
| " return {"color": "black", "fillColor": "#abc8fd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c65bffff": case "892a100c6c3ffff": case "892a100c6cfffff": case "892a100d80bffff": case "892a100dd6fffff": case "892a100dec7ffff": \n", | |
| " return {"color": "black", "fillColor": "#f7b093", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c68bffff": case "892a100d017ffff": case "892a100d30bffff": case "892a1072913ffff": \n", | |
| " return {"color": "black", "fillColor": "#86a9fc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c693ffff": case "892a100d22bffff": case "892a100d35bffff": case "892a100db5bffff": case "892a100f3c3ffff": case "892a1072dd3ffff": case "892a1077453ffff": \n", | |
| " return {"color": "black", "fillColor": "#9abbff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c6bbffff": case "892a100d06bffff": case "892a100d177ffff": case "892a1072c13ffff": case "892a10766cbffff": \n", | |
| " return {"color": "black", "fillColor": "#8db0fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100c6d7ffff": case "892a100d0d7ffff": case "892a100d273ffff": case "892a100d4d7ffff": case "892a100d8b3ffff": case "892a100f6dbffff": \n", | |
| " return {"color": "black", "fillColor": "#c1d4f4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d00fffff": case "892a10728d7ffff": case "892a10766c3ffff": \n", | |
| " return {"color": "black", "fillColor": "#5e7de7", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d013ffff": case "892a100da5bffff": case "892a100f22bffff": case "892a1072c2bffff": case "892a1072c73ffff": case "892a1072cb7ffff": case "892a1072d6fffff": \n", | |
| " return {"color": "black", "fillColor": "#7597f6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d02bffff": case "892a100d357ffff": case "892a100d96bffff": case "892a10728abffff": \n", | |
| " return {"color": "black", "fillColor": "#7295f4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d02fffff": case "892a100d20bffff": case "892a100d213ffff": case "892a100d2cfffff": case "892a100d697ffff": case "892a100db83ffff": case "892a100f303ffff": \n", | |
| " return {"color": "black", "fillColor": "#c7d7f0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d057ffff": case "892a100d49bffff": case "892a100d67bffff": case "892a100f3d3ffff": case "892a10729a3ffff": case "892a1072c07ffff": case "892a1072c8bffff": \n", | |
| " return {"color": "black", "fillColor": "#92b4fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d073ffff": case "892a100d86bffff": case "892a10729afffff": case "892a107745bffff": case "892a1077467ffff": \n", | |
| " return {"color": "black", "fillColor": "#b3cdfb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d083ffff": case "892a100d63bffff": case "892a1072523ffff": case "892a107252bffff": case "892a1072c03ffff": case "892a1072c17ffff": case "892a1077697ffff": \n", | |
| " return {"color": "black", "fillColor": "#85a8fc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d08fffff": case "892a107258bffff": case "892a107292bffff": case "892a1072c0fffff": case "892a1072ddbffff": \n", | |
| " return {"color": "black", "fillColor": "#6b8df0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d0b7ffff": case "892a100d32bffff": case "892a1072c53ffff": \n", | |
| " return {"color": "black", "fillColor": "#ca3b37", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d0cbffff": case "892a100d107ffff": case "892a100d427ffff": case "892a100d5a3ffff": case "892a100da67ffff": case "892a100f253ffff": case "892a1072c1bffff": case "892a1072c93ffff": \n", | |
| " return {"color": "black", "fillColor": "#aec9fc", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d0d3ffff": case "892a100d36bffff": case "892a100d60fffff": case "892a10729bbffff": case "892a1072d63ffff": \n", | |
| " return {"color": "black", "fillColor": "#7ea1fa", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d0dbffff": case "892a1072993ffff": case "892a1072d2bffff": \n", | |
| " return {"color": "black", "fillColor": "#8fb1fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d10fffff": case "892a100db77ffff": case "892a1077597ffff": \n", | |
| " return {"color": "black", "fillColor": "#6a8bef", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d157ffff": case "892a100d683ffff": case "892a100d6b3ffff": case "892a100dbabffff": case "892a10774cfffff": \n", | |
| " return {"color": "black", "fillColor": "#ccd9ed", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d173ffff": case "892a100d5dbffff": case "892a100dd47ffff": case "892a100dd73ffff": case "892a100dd7bffff": case "892a100f377ffff": case "892a10728b7ffff": \n", | |
| " return {"color": "black", "fillColor": "#ead4c8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d19bffff": case "892a100d323ffff": case "892a100d477ffff": \n", | |
| " return {"color": "black", "fillColor": "#c53334", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d1d3ffff": case "892a100de3bffff": case "892a100de5bffff": \n", | |
| " return {"color": "black", "fillColor": "#e16751", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d223ffff": case "892a100d29bffff": case "892a100d497ffff": case "892a100f353ffff": case "892a1072977ffff": case "892a10774d7ffff": \n", | |
| " return {"color": "black", "fillColor": "#94b6ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d2cbffff": case "892a100d3afffff": case "892a100d4cfffff": case "892a1077557ffff": \n", | |
| " return {"color": "black", "fillColor": "#b7cff9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d39bffff": case "892a100dc53ffff": case "892a100f33bffff": \n", | |
| " return {"color": "black", "fillColor": "#f49a7b", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d3cfffff": case "892a10725afffff": case "892a1072973ffff": case "892a10775c7ffff": \n", | |
| " return {"color": "black", "fillColor": "#a6c4fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d44bffff": case "892a100d44fffff": case "892a100dcabffff": case "892a100dd63ffff": case "892a100dedbffff": case "892a100f31bffff": \n", | |
| " return {"color": "black", "fillColor": "#bad0f8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d47bffff": case "892a100d6cfffff": case "892a10729c7ffff": \n", | |
| " return {"color": "black", "fillColor": "#4f69d9", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d507ffff": case "892a100d607ffff": case "892a100d9cfffff": case "892a10729b7ffff": case "892a1072d73ffff": \n", | |
| " return {"color": "black", "fillColor": "#97b8ff", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d517ffff": case "892a100d647ffff": case "892a100d673ffff": case "892a100d9d7ffff": case "892a100da47ffff": case "892a100dba7ffff": case "892a107252fffff": \n", | |
| " return {"color": "black", "fillColor": "#90b2fe", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d55bffff": case "892a100dd17ffff": case "892a100decfffff": case "892a100f3bbffff": case "892a1072c97ffff": \n", | |
| " return {"color": "black", "fillColor": "#88abfd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d58bffff": case "892a100de67ffff": case "892a100dea3ffff": case "892a100f3a3ffff": \n", | |
| " return {"color": "black", "fillColor": "#d75445", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d603ffff": case "892a100ddd7ffff": case "892a10729d7ffff": case "892a1072c67ffff": case "892a1072dcbffff": case "892a107769bffff": \n", | |
| " return {"color": "black", "fillColor": "#82a6fb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d6a3ffff": case "892a100db73ffff": case "892a100db9bffff": case "892a1072d37ffff": case "892a10772b7ffff": case "892a10774b7ffff": \n", | |
| " return {"color": "black", "fillColor": "#e6d7cf", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100d837ffff": case "892a100da73ffff": case "892a100da7bffff": case "892a100f363ffff": case "892a107298fffff": case "892a1072c83ffff": case "892a1072d27ffff": \n", | |
| " return {"color": "black", "fillColor": "#bbd1f8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100da8fffff": case "892a100dc13ffff": case "892a100de27ffff": case "892a100f02fffff": case "892a1072c4fffff": \n", | |
| " return {"color": "black", "fillColor": "#f39778", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100db63ffff": case "892a1072987ffff": case "892a107707bffff": \n", | |
| " return {"color": "black", "fillColor": "#6687ed", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100db67ffff": case "892a107299bffff": case "892a107664bffff": case "892a1077503ffff": \n", | |
| " return {"color": "black", "fillColor": "#6282ea", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100f207ffff": \n", | |
| " return {"color": "black", "fillColor": "#4358cb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a100f26fffff": case "892a107292fffff": case "892a1077053ffff": case "892a1077073ffff": case "892a107758fffff": \n", | |
| " return {"color": "black", "fillColor": "#6384eb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a10721bbffff": case "892a107253bffff": case "892a1072c6bffff": case "892a107751bffff": \n", | |
| " return {"color": "black", "fillColor": "#5a78e4", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072503ffff": \n", | |
| " return {"color": "black", "fillColor": "#3c4ec2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072803ffff": \n", | |
| " return {"color": "black", "fillColor": "#4e68d8", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072813ffff": \n", | |
| " return {"color": "black", "fillColor": "#4a63d3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072817ffff": \n", | |
| " return {"color": "black", "fillColor": "#4961d2", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a107281bffff": \n", | |
| " return {"color": "black", "fillColor": "#4b64d5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072887ffff": case "892a1072893ffff": case "892a10728d3ffff": \n", | |
| " return {"color": "black", "fillColor": "#506bda", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a107288fffff": \n", | |
| " return {"color": "black", "fillColor": "#5470de", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072897ffff": case "892a107289bffff": case "892a10728c3ffff": case "892a1072ca3ffff": case "892a107750bffff": \n", | |
| " return {"color": "black", "fillColor": "#688aef", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a107294bffff": \n", | |
| " return {"color": "black", "fillColor": "#3e51c5", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072997ffff": case "892a1072d77ffff": case "892a1077437ffff": case "892a10775abffff": \n", | |
| " return {"color": "black", "fillColor": "#5d7ce6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072bb3ffff": \n", | |
| " return {"color": "black", "fillColor": "#3b4cc0", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1072c77ffff": case "892a1072d2fffff": case "892a1077403ffff": case "892a1077593ffff": \n", | |
| " return {"color": "black", "fillColor": "#7093f3", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1077513ffff": case "892a10775afffff": \n", | |
| " return {"color": "black", "fillColor": "#516ddb", "fillOpacity": 0.7, "weight": 1};\n", | |
| " case "892a1077573ffff": case "892a1077583ffff": \n", | |
| " return {"color": "black", "fillColor": "#4c66d6", "fillOpacity": 0.7, "weight": 1};\n", | |
| " default:\n", | |
| " return {"color": "black", "fillColor": "#536edd", "fillOpacity": 0.7, "weight": 1};\n", | |
| " }\n", | |
| " }\n", | |
| "\n", | |
| " function geo_json_bb04183b3842fb74145dde652b6884f6_onEachFeature(feature, layer) {\n", | |
| " layer.on({\n", | |
| " });\n", | |
| " };\n", | |
| " var geo_json_bb04183b3842fb74145dde652b6884f6 = L.geoJson(null, {\n", | |
| " onEachFeature: geo_json_bb04183b3842fb74145dde652b6884f6_onEachFeature,\n", | |
| " \n", | |
| " style: geo_json_bb04183b3842fb74145dde652b6884f6_styler,\n", | |
| " });\n", | |
| "\n", | |
| " function geo_json_bb04183b3842fb74145dde652b6884f6_add (data) {\n", | |
| " geo_json_bb04183b3842fb74145dde652b6884f6\n", | |
| " .addData(data);\n", | |
| " }\n", | |
| " geo_json_bb04183b3842fb74145dde652b6884f6_add({"features": [{"geometry": {"coordinates": [[[-73.888069, 40.875029], [-73.887979, 40.873413], [-73.88752, 40.874077], [-73.886596, 40.873938], [-73.888069, 40.875029]]], "type": "Polygon"}, "id": "892a1001203ffff", "properties": {"percentile_speed_kmh": 42.497753818508535}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8906, 40.871922], [-73.889327, 40.87072], [-73.889468, 40.871457], [-73.888651, 40.871802], [-73.8906, 40.871922]]], "type": "Polygon"}, "id": "892a100120fffff", "properties": {"percentile_speed_kmh": 40.83557951482479}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.890194, 40.877394], [-73.890109, 40.876228], [-73.889785, 40.876711], [-73.889116, 40.876618], [-73.890194, 40.877394]]], "type": "Polygon"}, "id": "892a100121bffff", "properties": {"percentile_speed_kmh": 19.67654986522911}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.894461, 40.867412], [-73.894357, 40.864819], [-73.893603, 40.865877], [-73.892124, 40.865638], [-73.894461, 40.867412]]], "type": "Polygon"}, "id": "892a1001267ffff", "properties": {"percentile_speed_kmh": 92.22821203953279}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.897686, 40.865543], [-73.897861, 40.866557], [-73.898102, 40.866116], [-73.898695, 40.86616], [-73.897686, 40.865543]]], "type": "Polygon"}, "id": "892a100126fffff", "properties": {"percentile_speed_kmh": 12.353998203054806}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.897282, 40.870872], [-73.898518, 40.872164], [-73.89842, 40.871398], [-73.899284, 40.871077], [-73.897282, 40.870872]]], "type": "Polygon"}, "id": "892a100127bffff", "properties": {"percentile_speed_kmh": 43.44115004492363}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.887139, 40.879104], [-73.887911, 40.880208], [-73.887941, 40.879611], [-73.888649, 40.879442], [-73.887139, 40.879104]]], "type": "Polygon"}, "id": "892a10012c7ffff", "properties": {"percentile_speed_kmh": 24.842767295597483}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97392, 40.799107], [-73.976461, 40.797392], [-73.974918, 40.797566], [-73.97422, 40.796438], [-73.97392, 40.799107]]], "type": "Polygon"}, "id": "892a1008803ffff", "properties": {"percentile_speed_kmh": 96.67565139263252}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97279, 40.794167], [-73.971376, 40.795835], [-73.972453, 40.795452], [-73.973245, 40.796156], [-73.97279, 40.794167]]], "type": "Polygon"}, "id": "892a1008807ffff", "properties": {"percentile_speed_kmh": 63.25247079964061}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978416, 40.795788], [-73.97622, 40.79372], [-73.976464, 40.79499], [-73.975058, 40.795584], [-73.978416, 40.795788]]], "type": "Polygon"}, "id": "892a100880fffff", "properties": {"percentile_speed_kmh": 99.14645103324348}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.973059, 40.799452], [-73.971537, 40.801083], [-73.972646, 40.800737], [-73.973406, 40.801478], [-73.973059, 40.799452]]], "type": "Polygon"}, "id": "892a1008813ffff", "properties": {"percentile_speed_kmh": 64.37556154537286}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971119, 40.796718], [-73.968949, 40.79843], [-73.970342, 40.798182], [-73.971079, 40.799172], [-73.971119, 40.796718]]], "type": "Polygon"}, "id": "892a1008817ffff", "properties": {"percentile_speed_kmh": 85.22012578616352}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972637, 40.788949], [-73.971191, 40.790472], [-73.972237, 40.790154], [-73.972944, 40.790854], [-73.972637, 40.788949]]], "type": "Polygon"}, "id": "892a1008823ffff", "properties": {"percentile_speed_kmh": 58.086253369272235}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970492, 40.786377], [-73.968891, 40.787822], [-73.969975, 40.787566], [-73.97062, 40.788316], [-73.970492, 40.786377]]], "type": "Polygon"}, "id": "892a1008827ffff", "properties": {"percentile_speed_kmh": 59.11949685534591}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976953, 40.788817], [-73.97543, 40.790347], [-73.976509, 40.790042], [-73.977212, 40.790772], [-73.976953, 40.788817]]], "type": "Polygon"}, "id": "892a100882bffff", "properties": {"percentile_speed_kmh": 60.37735849056604}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974401, 40.78626], [-73.973431, 40.787921], [-73.974328, 40.787452], [-73.975164, 40.78799], [-73.974401, 40.78626]]], "type": "Polygon"}, "id": "892a100882fffff", "properties": {"percentile_speed_kmh": 53.77358490566038}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970641, 40.791488], [-73.968985, 40.793262], [-73.970191, 40.792886], [-73.971017, 40.793692], [-73.970641, 40.791488]]], "type": "Polygon"}, "id": "892a1008833ffff", "properties": {"percentile_speed_kmh": 73.49505840071878}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968802, 40.788868], [-73.966427, 40.790471], [-73.967868, 40.790308], [-73.968521, 40.791362], [-73.968802, 40.788868]]], "type": "Polygon"}, "id": "892a1008837ffff", "properties": {"percentile_speed_kmh": 87.78077268643307}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974633, 40.791573], [-73.973643, 40.79317], [-73.974529, 40.792731], [-73.975326, 40.79327], [-73.974633, 40.791573]]], "type": "Polygon"}, "id": "892a100883bffff", "properties": {"percentile_speed_kmh": 51.257861635220124}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981628, 40.788576], [-73.979321, 40.790095], [-73.980709, 40.789952], [-73.981322, 40.790971], [-73.981628, 40.788576]]], "type": "Polygon"}, "id": "892a1008867ffff", "properties": {"percentile_speed_kmh": 82.83917340521114}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978323, 40.792049], [-73.978856, 40.792975], [-73.978926, 40.792497], [-73.979507, 40.792399], [-73.978323, 40.792049]]], "type": "Polygon"}, "id": "892a1008877ffff", "properties": {"percentile_speed_kmh": 12.264150943396226}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967423, 40.802399], [-73.96485, 40.803415], [-73.966191, 40.803526], [-73.966491, 40.804591], [-73.967423, 40.802399]]], "type": "Polygon"}, "id": "892a1008883ffff", "properties": {"percentile_speed_kmh": 78.30188679245283}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965469, 40.800294], [-73.962824, 40.800324], [-73.963891, 40.800845], [-73.963624, 40.801831], [-73.965469, 40.800294]]], "type": "Polygon"}, "id": "892a1008887ffff", "properties": {"percentile_speed_kmh": 69.36208445642407}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971548, 40.801937], [-73.968939, 40.803634], [-73.970503, 40.803481], [-73.971185, 40.804632], [-73.971548, 40.801937]]], "type": "Polygon"}, "id": "892a100888bffff", "properties": {"percentile_speed_kmh": 98.24797843665768}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969228, 40.799539], [-73.966914, 40.80096], [-73.968275, 40.800858], [-73.968832, 40.80187], [-73.969228, 40.799539]]], "type": "Polygon"}, "id": "892a100888fffff", "properties": {"percentile_speed_kmh": 80.05390835579514}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964111, 40.807424], [-73.965743, 40.805201], [-73.964408, 40.805762], [-73.963325, 40.804917], [-73.964111, 40.807424]]], "type": "Polygon"}, "id": "892a1008893ffff", "properties": {"percentile_speed_kmh": 91.91374663072776}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962451, 40.804533], [-73.96282, 40.802498], [-73.962049, 40.803237], [-73.960936, 40.802882], [-73.962451, 40.804533]]], "type": "Polygon"}, "id": "892a1008897ffff", "properties": {"percentile_speed_kmh": 64.95956873315363}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967538, 40.807071], [-73.97042, 40.805744], [-73.96886, 40.805694], [-73.968417, 40.804481], [-73.967538, 40.807071]]], "type": "Polygon"}, "id": "892a100889bffff", "properties": {"percentile_speed_kmh": 96.99011680143755}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964532, 40.794557], [-73.962742, 40.795778], [-73.963832, 40.79565], [-73.964332, 40.796446], [-73.964532, 40.794557]]], "type": "Polygon"}, "id": "892a10088a3ffff", "properties": {"percentile_speed_kmh": 56.78346810422282}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962415, 40.791694], [-73.960169, 40.793317], [-73.961565, 40.79312], [-73.962243, 40.794129], [-73.962415, 40.791694]]], "type": "Polygon"}, "id": "892a10088a7ffff", "properties": {"percentile_speed_kmh": 84.4115004492363}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968801, 40.794461], [-73.967046, 40.795656], [-73.968115, 40.795531], [-73.968603, 40.796311], [-73.968801, 40.794461]]], "type": "Polygon"}, "id": "892a10088abffff", "properties": {"percentile_speed_kmh": 54.80682839173405}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966647, 40.791779], [-73.964657, 40.793088], [-73.965854, 40.792966], [-73.966382, 40.793845], [-73.966647, 40.791779]]], "type": "Polygon"}, "id": "892a10088afffff", "properties": {"percentile_speed_kmh": 65.99281221922732}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962427, 40.797449], [-73.960919, 40.798381], [-73.961808, 40.798312], [-73.962174, 40.798972], [-73.962427, 40.797449]]], "type": "Polygon"}, "id": "892a10088b3ffff", "properties": {"percentile_speed_kmh": 38.499550763701706}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959624, 40.794384], [-73.958655, 40.796456], [-73.959678, 40.795822], [-73.960747, 40.796404], [-73.959624, 40.794384]]], "type": "Polygon"}, "id": "892a10088b7ffff", "properties": {"percentile_speed_kmh": 73.04582210242587}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966667, 40.797099], [-73.965022, 40.798455], [-73.966096, 40.798244], [-73.966687, 40.799], [-73.966667, 40.797099]]], "type": "Polygon"}, "id": "892a10088bbffff", "properties": {"percentile_speed_kmh": 57.05300988319856}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959776, 40.778862], [-73.957791, 40.779929], [-73.958912, 40.779902], [-73.959304, 40.780754], [-73.959776, 40.778862]]], "type": "Polygon"}, "id": "892a1008903ffff", "properties": {"percentile_speed_kmh": 58.58041329739443}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957317, 40.776704], [-73.956076, 40.777168], [-73.956715, 40.777232], [-73.956845, 40.777743], [-73.957317, 40.776704]]], "type": "Polygon"}, "id": "892a1008907ffff", "properties": {"percentile_speed_kmh": 16.666666666666668}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963586, 40.778535], [-73.962216, 40.780234], [-73.963285, 40.77983], [-73.964099, 40.780521], [-73.963586, 40.778535]]], "type": "Polygon"}, "id": "892a100890bffff", "properties": {"percentile_speed_kmh": 63.61185983827493}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961588, 40.776266], [-73.960078, 40.777285], [-73.960994, 40.777182], [-73.961409, 40.777853], [-73.961588, 40.776266]]], "type": "Polygon"}, "id": "892a100890fffff", "properties": {"percentile_speed_kmh": 41.37466307277628}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957441, 40.781618], [-73.956014, 40.782759], [-73.956935, 40.78259], [-73.957427, 40.783243], [-73.957441, 40.781618]]], "type": "Polygon"}, "id": "892a1008913ffff", "properties": {"percentile_speed_kmh": 42.99191374663073}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955752, 40.780149], [-73.954355, 40.779068], [-73.954583, 40.779782], [-73.953821, 40.780185], [-73.955752, 40.780149]]], "type": "Polygon"}, "id": "892a1008917ffff", "properties": {"percentile_speed_kmh": 39.98203054806828}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961826, 40.781505], [-73.960218, 40.782582], [-73.961192, 40.782475], [-73.961629, 40.783188], [-73.961826, 40.781505]]], "type": "Polygon"}, "id": "892a100891bffff", "properties": {"percentile_speed_kmh": 46.36118598382749}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95733, 40.77151], [-73.955797, 40.771696], [-73.956467, 40.77193], [-73.956409, 40.77252], [-73.95733, 40.77151]]], "type": "Polygon"}, "id": "892a1008923ffff", "properties": {"percentile_speed_kmh": 24.21383647798742}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955007, 40.768703], [-73.953421, 40.769316], [-73.954243, 40.76939], [-73.95442, 40.770046], [-73.955007, 40.768703]]], "type": "Polygon"}, "id": "892a1008927ffff", "properties": {"percentile_speed_kmh": 32.79424977538185}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961743, 40.771245], [-73.959848, 40.771611], [-73.960718, 40.771846], [-73.960723, 40.772589], [-73.961743, 40.771245]]], "type": "Polygon"}, "id": "892a100892bffff", "properties": {"percentile_speed_kmh": 40.655884995507634}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959336, 40.768567], [-73.957643, 40.769187], [-73.958511, 40.76928], [-73.95868, 40.769976], [-73.959336, 40.768567]]], "type": "Polygon"}, "id": "892a100892fffff", "properties": {"percentile_speed_kmh": 36.92722371967655}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955391, 40.774043], [-73.953546, 40.774456], [-73.954411, 40.774663], [-73.954447, 40.775393], [-73.955391, 40.774043]]], "type": "Polygon"}, "id": "892a1008933ffff", "properties": {"percentile_speed_kmh": 39.26325247079964}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953088, 40.771311], [-73.95122, 40.772012], [-73.952182, 40.772108], [-73.952379, 40.772877], [-73.953088, 40.771311]]], "type": "Polygon"}, "id": "892a1008937ffff", "properties": {"percentile_speed_kmh": 45.238095238095234}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959666, 40.773891], [-73.957794, 40.77437], [-73.958689, 40.774556], [-73.95876, 40.775303], [-73.959666, 40.773891]]], "type": "Polygon"}, "id": "892a100893bffff", "properties": {"percentile_speed_kmh": 41.284815813117696}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.970145, 40.780832], [-73.968558, 40.782803], [-73.969798, 40.782334], [-73.970743, 40.783135], [-73.970145, 40.780832]]], "type": "Polygon"}, "id": "892a1008943ffff", "properties": {"percentile_speed_kmh": 80.09883198562444}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967874, 40.778439], [-73.966504, 40.780099], [-73.967561, 40.779711], [-73.968354, 40.780398], [-73.967874, 40.778439]]], "type": "Polygon"}, "id": "892a1008947ffff", "properties": {"percentile_speed_kmh": 61.9496855345912}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974863, 40.780738], [-73.972545, 40.782422], [-73.973989, 40.782215], [-73.974693, 40.783256], [-73.974863, 40.780738]]], "type": "Polygon"}, "id": "892a100894bffff", "properties": {"percentile_speed_kmh": 88.67924528301887}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972418, 40.77813], [-73.970426, 40.779969], [-73.971787, 40.779635], [-73.972614, 40.780572], [-73.972418, 40.77813]]], "type": "Polygon"}, "id": "892a100894fffff", "properties": {"percentile_speed_kmh": 84.8607367475292}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.968232, 40.783521], [-73.966425, 40.78544], [-73.967736, 40.785036], [-73.968628, 40.785913], [-73.968232, 40.783521]]], "type": "Polygon"}, "id": "892a1008953ffff", "properties": {"percentile_speed_kmh": 83.15363881401618}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965563, 40.781134], [-73.964657, 40.782959], [-73.965579, 40.782412], [-73.966515, 40.782944], [-73.965563, 40.781134]]], "type": "Polygon"}, "id": "892a1008957ffff", "properties": {"percentile_speed_kmh": 60.467205750224615}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.972598, 40.783577], [-73.970791, 40.785154], [-73.971998, 40.784887], [-73.972697, 40.785728], [-73.972598, 40.783577]]], "type": "Polygon"}, "id": "892a100895bffff", "properties": {"percentile_speed_kmh": 69.85624438454627}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.967779, 40.773453], [-73.966481, 40.774542], [-73.967334, 40.774368], [-73.967811, 40.774967], [-73.967779, 40.773453]]], "type": "Polygon"}, "id": "892a1008963ffff", "properties": {"percentile_speed_kmh": 37.37646001796945}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966017, 40.770719], [-73.96377, 40.771789], [-73.964997, 40.771813], [-73.965362, 40.772763], [-73.966017, 40.770719]]], "type": "Polygon"}, "id": "892a1008967ffff", "properties": {"percentile_speed_kmh": 67.78975741239893}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.971625, 40.77302], [-73.970787, 40.7749], [-73.971699, 40.774317], [-73.972673, 40.774829], [-73.971625, 40.77302]]], "type": "Polygon"}, "id": "892a100896bffff", "properties": {"percentile_speed_kmh": 62.03953279424977}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969933, 40.770611], [-73.96831, 40.771877], [-73.969347, 40.771697], [-73.96989, 40.772436], [-73.969933, 40.770611]]], "type": "Polygon"}, "id": "892a100896fffff", "properties": {"percentile_speed_kmh": 53.23450134770889}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965623, 40.775951], [-73.964353, 40.777452], [-73.965321, 40.777108], [-73.966035, 40.777741], [-73.965623, 40.775951]]], "type": "Polygon"}, "id": "892a1008973ffff", "properties": {"percentile_speed_kmh": 52.96495956873315}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963968, 40.773587], [-73.961889, 40.774376], [-73.962963, 40.774479], [-73.963187, 40.775336], [-73.963968, 40.773587]]], "type": "Polygon"}, "id": "892a1008977ffff", "properties": {"percentile_speed_kmh": 54.98652291105121}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.969621, 40.775736], [-73.968742, 40.777569], [-73.969656, 40.777013], [-73.970599, 40.777536], [-73.969621, 40.775736]]], "type": "Polygon"}, "id": "892a100897bffff", "properties": {"percentile_speed_kmh": 60.42228212039532}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951309, 40.785873], [-73.950824, 40.784447], [-73.950581, 40.785116], [-73.949722, 40.785143], [-73.951309, 40.785873]]], "type": "Polygon"}, "id": "892a1008983ffff", "properties": {"percentile_speed_kmh": 35.57951482479784}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949346, 40.782463], [-73.947666, 40.782286], [-73.948284, 40.782696], [-73.948004, 40.783301], [-73.949346, 40.782463]]], "type": "Polygon"}, "id": "892a1008987ffff", "properties": {"percentile_speed_kmh": 30.18867924528302}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956212, 40.785099], [-73.954087, 40.784442], [-73.954735, 40.785133], [-73.954136, 40.785853], [-73.956212, 40.785099]]], "type": "Polygon"}, "id": "892a100898bffff", "properties": {"percentile_speed_kmh": 54.1329739442947}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953487, 40.783132], [-73.952725, 40.781698], [-73.952591, 40.782425], [-73.951698, 40.782554], [-73.953487, 40.783132]]], "type": "Polygon"}, "id": "892a100898fffff", "properties": {"percentile_speed_kmh": 39.75741239892183}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949577, 40.787236], [-73.947404, 40.787917], [-73.948482, 40.788082], [-73.948634, 40.788963], [-73.949577, 40.787236]]], "type": "Polygon"}, "id": "892a1008993ffff", "properties": {"percentile_speed_kmh": 56.37915543575921}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946888, 40.784575], [-73.945413, 40.785642], [-73.94633, 40.785512], [-73.946776, 40.786175], [-73.946888, 40.784575]]], "type": "Polygon"}, "id": "892a1008997ffff", "properties": {"percentile_speed_kmh": 41.86882300089847}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953557, 40.78705], [-73.951831, 40.788025], [-73.952821, 40.787982], [-73.953188, 40.788728], [-73.953557, 40.78705]]], "type": "Polygon"}, "id": "892a100899bffff", "properties": {"percentile_speed_kmh": 47.079964061096135}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948963, 40.777125], [-73.947544, 40.777144], [-73.948117, 40.777422], [-73.947976, 40.777951], [-73.948963, 40.777125]]], "type": "Polygon"}, "id": "892a10089a3ffff", "properties": {"percentile_speed_kmh": 18.823000898472596}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946408, 40.774255], [-73.945277, 40.774941], [-73.94594, 40.774894], [-73.946206, 40.775388], [-73.946408, 40.774255]]], "type": "Polygon"}, "id": "892a10089a7ffff", "properties": {"percentile_speed_kmh": 18.553459119496853}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953443, 40.776748], [-73.951451, 40.7771], [-73.952355, 40.777361], [-73.952341, 40.778139], [-73.953443, 40.776748]]], "type": "Polygon"}, "id": "892a10089abffff", "properties": {"percentile_speed_kmh": 44.42946990116801}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950936, 40.775026], [-73.950151, 40.774058], [-73.950168, 40.774603], [-73.949536, 40.774791], [-73.950936, 40.775026]]], "type": "Polygon"}, "id": "892a10089afffff", "properties": {"percentile_speed_kmh": 19.2722371967655}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946144, 40.781026], [-73.947107, 40.779441], [-73.946236, 40.779881], [-73.945443, 40.779354], [-73.946144, 40.781026]]], "type": "Polygon"}, "id": "892a10089b3ffff", "properties": {"percentile_speed_kmh": 50.17969451931716}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944551, 40.777405], [-73.943505, 40.777218], [-73.943866, 40.777503], [-73.943648, 40.777872], [-73.944551, 40.777405]]], "type": "Polygon"}, "id": "892a10089b7ffff", "properties": {"percentile_speed_kmh": 4.492362982929021}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951178, 40.779489], [-73.94961, 40.7799], [-73.950363, 40.780051], [-73.950428, 40.780678], [-73.951178, 40.779489]]], "type": "Polygon"}, "id": "892a10089bbffff", "properties": {"percentile_speed_kmh": 28.25696316262354}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.962013, 40.786746], [-73.960398, 40.787908], [-73.9614, 40.787768], [-73.961885, 40.788493], [-73.962013, 40.786746]]], "type": "Polygon"}, "id": "892a10089c3ffff", "properties": {"percentile_speed_kmh": 49.37106918238994}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959688, 40.783884], [-73.957973, 40.785566], [-73.959175, 40.785239], [-73.959943, 40.786056], [-73.959688, 40.783884]]], "type": "Polygon"}, "id": "892a10089c7ffff", "properties": {"percentile_speed_kmh": 71.33872416891285}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.966113, 40.786478], [-73.96467, 40.788005], [-73.965715, 40.787684], [-73.966425, 40.788384], [-73.966113, 40.786478]]], "type": "Polygon"}, "id": "892a10089cbffff", "properties": {"percentile_speed_kmh": 58.17610062893082}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.964164, 40.783967], [-73.962285, 40.785199], [-73.963415, 40.785085], [-73.96391, 40.785915], [-73.964164, 40.783967]]], "type": "Polygon"}, "id": "892a10089cfffff", "properties": {"percentile_speed_kmh": 59.97304582210243}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9601, 40.789273], [-73.958122, 40.790658], [-73.959338, 40.790502], [-73.959909, 40.791386], [-73.9601, 40.789273]]], "type": "Polygon"}, "id": "892a10089d3ffff", "properties": {"percentile_speed_kmh": 68.10422282120395}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958036, 40.786642], [-73.955714, 40.788004], [-73.95706, 40.787927], [-73.957582, 40.788935], [-73.958036, 40.786642]]], "type": "Polygon"}, "id": "892a10089d7ffff", "properties": {"percentile_speed_kmh": 78.52650494159928}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96357, 40.789026], [-73.962858, 40.791101], [-73.963779, 40.790414], [-73.964877, 40.790901], [-73.96357, 40.789026]]], "type": "Polygon"}, "id": "892a10089dbffff", "properties": {"percentile_speed_kmh": 69.90116801437556}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989065, 40.778468], [-73.988568, 40.779211], [-73.988995, 40.779014], [-73.989362, 40.779278], [-73.989065, 40.778468]]], "type": "Polygon"}, "id": "892a1008b03ffff", "properties": {"percentile_speed_kmh": 3.324348607367475}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986941, 40.775432], [-73.985847, 40.776878], [-73.986728, 40.77652], [-73.98743, 40.777082], [-73.986941, 40.775432]]], "type": "Polygon"}, "id": "892a1008b07ffff", "properties": {"percentile_speed_kmh": 46.675651392632524}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991138, 40.775712], [-73.990528, 40.776529], [-73.991023, 40.776325], [-73.99142, 40.77664], [-73.991138, 40.775712]]], "type": "Polygon"}, "id": "892a1008b0fffff", "properties": {"percentile_speed_kmh": 8.939802336028752}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.987375, 40.780767], [-73.985938, 40.781996], [-73.98689, 40.781794], [-73.987432, 40.782459], [-73.987375, 40.780767]]], "type": "Polygon"}, "id": "892a1008b13ffff", "properties": {"percentile_speed_kmh": 46.45103324348607}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985292, 40.77792], [-73.983353, 40.779506], [-73.984615, 40.779262], [-73.985305, 40.780153], [-73.985292, 40.77792]]], "type": "Polygon"}, "id": "892a1008b17ffff", "properties": {"percentile_speed_kmh": 73.94429469901168}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.986815, 40.770018], [-73.985468, 40.77164], [-73.986505, 40.771262], [-73.987278, 40.771937], [-73.986815, 40.770018]]], "type": "Polygon"}, "id": "892a1008b23ffff", "properties": {"percentile_speed_kmh": 59.83827493261455}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.984036, 40.767503], [-73.983666, 40.769315], [-73.984369, 40.768665], [-73.985356, 40.768996], [-73.984036, 40.767503]]], "type": "Polygon"}, "id": "892a1008b27ffff", "properties": {"percentile_speed_kmh": 53.81850853548966}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.991124, 40.770237], [-73.990017, 40.77127], [-73.990776, 40.77108], [-73.991242, 40.771602], [-73.991124, 40.770237]]], "type": "Polygon"}, "id": "892a1008b2bffff", "properties": {"percentile_speed_kmh": 29.919137466307276}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.988358, 40.767462], [-73.987977, 40.769121], [-73.988638, 40.768534], [-73.989537, 40.768853], [-73.988358, 40.767462]]], "type": "Polygon"}, "id": "892a1008b2fffff", "properties": {"percentile_speed_kmh": 46.22641509433962}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983606, 40.772955], [-73.98447, 40.774844], [-73.984704, 40.773914], [-73.985865, 40.773796], [-73.983606, 40.772955]]], "type": "Polygon"}, "id": "892a1008b33ffff", "properties": {"percentile_speed_kmh": 62.848158131176994}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98239, 40.770056], [-73.981227, 40.771895], [-73.982256, 40.771393], [-73.983172, 40.772023], [-73.98239, 40.770056]]], "type": "Polygon"}, "id": "892a1008b37ffff", "properties": {"percentile_speed_kmh": 65.49865229110512}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.989249, 40.772856], [-73.987797, 40.773935], [-73.988709, 40.773796], [-73.989164, 40.774451], [-73.989249, 40.772856]]], "type": "Polygon"}, "id": "892a1008b3bffff", "properties": {"percentile_speed_kmh": 41.55435759209344}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.981032, 40.783395], [-73.979479, 40.78496], [-73.980581, 40.784647], [-73.9813, 40.785391], [-73.981032, 40.783395]]], "type": "Polygon"}, "id": "892a1008b83ffff", "properties": {"percentile_speed_kmh": 62.488769092542675}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978742, 40.780818], [-73.977277, 40.782397], [-73.978347, 40.782061], [-73.979084, 40.782774], [-73.978742, 40.780818]]], "type": "Polygon"}, "id": "892a1008b87ffff", "properties": {"percentile_speed_kmh": 60.82659478885894}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.985388, 40.783295], [-73.983718, 40.784789], [-73.984844, 40.784528], [-73.985511, 40.785309], [-73.985388, 40.783295]]], "type": "Polygon"}, "id": "892a1008b8bffff", "properties": {"percentile_speed_kmh": 62.893081761006286}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9833, 40.780491], [-73.981174, 40.782271], [-73.98257, 40.781988], [-73.98335, 40.782968], [-73.9833, 40.780491]]], "type": "Polygon"}, "id": "892a1008b8fffff", "properties": {"percentile_speed_kmh": 86.38814016172506}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.979109, 40.786071], [-73.977342, 40.787612], [-73.978522, 40.787351], [-73.979204, 40.788173], [-73.979109, 40.786071]]], "type": "Polygon"}, "id": "892a1008b93ffff", "properties": {"percentile_speed_kmh": 67.34052111410602}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976653, 40.783669], [-73.97541, 40.78502], [-73.976322, 40.78473], [-73.976953, 40.785337], [-73.976653, 40.783669]]], "type": "Polygon"}, "id": "892a1008b97ffff", "properties": {"percentile_speed_kmh": 46.04672057502246}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982995, 40.78648], [-73.982357, 40.787351], [-73.98288, 40.787131], [-73.983305, 40.787461], [-73.982995, 40.78648]]], "type": "Polygon"}, "id": "892a1008b9bffff", "properties": {"percentile_speed_kmh": 11.859838274932613}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.978434, 40.775687], [-73.977276, 40.777063], [-73.978161, 40.776746], [-73.978816, 40.777324], [-73.978434, 40.775687]]], "type": "Polygon"}, "id": "892a1008ba3ffff", "properties": {"percentile_speed_kmh": 45.103324348607366}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.976078, 40.772869], [-73.97491, 40.774709], [-73.975942, 40.774209], [-73.976858, 40.77484], [-73.976078, 40.772869]]], "type": "Polygon"}, "id": "892a1008ba7ffff", "properties": {"percentile_speed_kmh": 65.63342318059298}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.982746, 40.775382], [-73.981365, 40.777063], [-73.982433, 40.776669], [-73.983237, 40.777362], [-73.982746, 40.775382]]], "type": "Polygon"}, "id": "892a1008babffff", "properties": {"percentile_speed_kmh": 63.11769991015274}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980507, 40.772694], [-73.979029, 40.774551], [-73.98019, 40.774105], [-73.981083, 40.774853], [-73.980507, 40.772694]]], "type": "Polygon"}, "id": "892a1008bafffff", "properties": {"percentile_speed_kmh": 72.77628032345014}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97653, 40.778172], [-73.974958, 40.779839], [-73.976099, 40.779489], [-73.976874, 40.780251], [-73.97653, 40.778172]]], "type": "Polygon"}, "id": "892a1008bb3ffff", "properties": {"percentile_speed_kmh": 67.11590296495957}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.974136, 40.775347], [-73.972615, 40.777512], [-73.973887, 40.776952], [-73.974949, 40.777749], [-73.974136, 40.775347]]], "type": "Polygon"}, "id": "892a1008bb7ffff", "properties": {"percentile_speed_kmh": 87.10691823899371}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.980888, 40.778252], [-73.979352, 40.77954], [-73.980361, 40.779334], [-73.980925, 40.780043], [-73.980888, 40.778252]]], "type": "Polygon"}, "id": "892a1008bbbffff", "properties": {"percentile_speed_kmh": 51.43755615453728}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960686, 40.815472], [-73.959251, 40.817497], [-73.960446, 40.816976], [-73.961439, 40.817727], [-73.960686, 40.815472]]], "type": "Polygon"}, "id": "892a1008c03ffff", "properties": {"percentile_speed_kmh": 79.11051212938006}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958804, 40.81547], [-73.959008, 40.812878], [-73.958131, 40.813874], [-73.956686, 40.81352], [-73.958804, 40.81547]]], "type": "Polygon"}, "id": "892a1008c07ffff", "properties": {"percentile_speed_kmh": 92.45283018867924}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963444, 40.812759], [-73.96077, 40.814393], [-73.962341, 40.814278], [-73.96298, 40.815447], [-73.963444, 40.812759]]], "type": "Polygon"}, "id": "892a1008c0fffff", "properties": {"percentile_speed_kmh": 98.38274932614556}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959779, 40.818731], [-73.956899, 40.819155], [-73.958181, 40.819565], [-73.958113, 40.820681], [-73.959779, 40.818731]]], "type": "Polygon"}, "id": "892a1008c13ffff", "properties": {"percentile_speed_kmh": 80.95238095238095}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957196, 40.816104], [-73.954861, 40.816793], [-73.956006, 40.816987], [-73.956146, 40.817929], [-73.957196, 40.816104]]], "type": "Polygon"}, "id": "892a1008c17ffff", "properties": {"percentile_speed_kmh": 62.71338724168913}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.959109, 40.808452], [-73.956932, 40.808525], [-73.957825, 40.808934], [-73.957633, 40.80975], [-73.959109, 40.808452]]], "type": "Polygon"}, "id": "892a1008c23ffff", "properties": {"percentile_speed_kmh": 50.089847259658576}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957018, 40.806353], [-73.955007, 40.805508], [-73.955552, 40.806251], [-73.954858, 40.806908], [-73.957018, 40.806353]]], "type": "Polygon"}, "id": "892a1008c27ffff", "properties": {"percentile_speed_kmh": 53.72866127583109}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963553, 40.807808], [-73.960637, 40.808691], [-73.962074, 40.808925], [-73.962261, 40.810103], [-73.963553, 40.807808]]], "type": "Polygon"}, "id": "892a1008c2bffff", "properties": {"percentile_speed_kmh": 88.63432165318957}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961241, 40.80546], [-73.95865, 40.805977], [-73.959845, 40.806292], [-73.95986, 40.80731], [-73.961241, 40.80546]]], "type": "Polygon"}, "id": "892a1008c2fffff", "properties": {"percentile_speed_kmh": 70.30548068283917}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956942, 40.810711], [-73.954599, 40.811611], [-73.955812, 40.811722], [-73.956071, 40.812689], [-73.956942, 40.810711]]], "type": "Polygon"}, "id": "892a1008c33ffff", "properties": {"percentile_speed_kmh": 67.16082659478886}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954511, 40.808522], [-73.952836, 40.808852], [-73.953607, 40.809057], [-73.953615, 40.809715], [-73.954511, 40.808522]]], "type": "Polygon"}, "id": "892a1008c37ffff", "properties": {"percentile_speed_kmh": 31.356693620844563}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.961976, 40.811082], [-73.958772, 40.810721], [-73.959943, 40.811511], [-73.959396, 40.812663], [-73.961976, 40.811082]]], "type": "Polygon"}, "id": "892a1008c3bffff", "properties": {"percentile_speed_kmh": 93.66576819407008}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.965908, 40.809931], [-73.968233, 40.808097], [-73.96674, 40.808363], [-73.965951, 40.807303], [-73.965908, 40.809931]]], "type": "Polygon"}, "id": "892a1008c67ffff", "properties": {"percentile_speed_kmh": 94.07008086253369}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.963306, 40.812318], [-73.96632, 40.811342], [-73.964815, 40.811126], [-73.964585, 40.809901], [-73.963306, 40.812318]]], "type": "Polygon"}, "id": "892a1008c77ffff", "properties": {"percentile_speed_kmh": 94.11500449236298}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952003, 40.821063], [-73.951185, 40.823145], [-73.952151, 40.822477], [-73.953241, 40.823004], [-73.952003, 40.821063]]], "type": "Polygon"}, "id": "892a1008c83ffff", "properties": {"percentile_speed_kmh": 71.42857142857143}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9507, 40.820332], [-73.949896, 40.818709], [-73.94972, 40.81952], [-73.948715, 40.819645], [-73.9507, 40.820332]]], "type": "Polygon"}, "id": "892a1008c87ffff", "properties": {"percentile_speed_kmh": 49.281221922731355}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.956795, 40.821086], [-73.955227, 40.822641], [-73.956331, 40.822335], [-73.957043, 40.823084], [-73.956795, 40.821086]]], "type": "Polygon"}, "id": "892a1008c8bffff", "properties": {"percentile_speed_kmh": 62.443845462713384}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954993, 40.818316], [-73.952511, 40.819932], [-73.954, 40.819786], [-73.954649, 40.820881], [-73.954993, 40.818316]]], "type": "Polygon"}, "id": "892a1008c8fffff", "properties": {"percentile_speed_kmh": 91.55435759209344}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951279, 40.824077], [-73.948488, 40.82487], [-73.949848, 40.825115], [-73.949998, 40.826237], [-73.951279, 40.824077]]], "type": "Polygon"}, "id": "892a1008c93ffff", "properties": {"percentile_speed_kmh": 82.21024258760107}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948585, 40.821127], [-73.946247, 40.822799], [-73.947695, 40.822601], [-73.948391, 40.823649], [-73.948585, 40.821127]]], "type": "Polygon"}, "id": "892a1008c97ffff", "properties": {"percentile_speed_kmh": 88.85893980233602}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955996, 40.8246], [-73.953019, 40.824056], [-73.954044, 40.824873], [-73.953417, 40.825921], [-73.955996, 40.8246]]], "type": "Polygon"}, "id": "892a1008c9bffff", "properties": {"percentile_speed_kmh": 86.07367475292003}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950672, 40.813362], [-73.9481, 40.814512], [-73.949481, 40.81457], [-73.949857, 40.815649], [-73.950672, 40.813362]]], "type": "Polygon"}, "id": "892a1008ca3ffff", "properties": {"percentile_speed_kmh": 81.40161725067385}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948398, 40.811152], [-73.946208, 40.811678], [-73.947245, 40.811909], [-73.947308, 40.812779], [-73.948398, 40.811152]]], "type": "Polygon"}, "id": "892a1008ca7ffff", "properties": {"percentile_speed_kmh": 54.492362982929016}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954302, 40.813093], [-73.952708, 40.81488], [-73.953893, 40.814486], [-73.954734, 40.81527], [-73.954302, 40.813093]]], "type": "Polygon"}, "id": "892a1008cabffff", "properties": {"percentile_speed_kmh": 72.50673854447439}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952905, 40.811562], [-73.950787, 40.811064], [-73.951482, 40.81169], [-73.950973, 40.812423], [-73.952905, 40.811562]]], "type": "Polygon"}, "id": "892a1008cafffff", "properties": {"percentile_speed_kmh": 51.21293800539083}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94843, 40.8162], [-73.946324, 40.817231], [-73.947482, 40.817243], [-73.94784, 40.818135], [-73.94843, 40.8162]]], "type": "Polygon"}, "id": "892a1008cb3ffff", "properties": {"percentile_speed_kmh": 61.725067385444746}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945762, 40.813426], [-73.944218, 40.815021], [-73.945325, 40.814694], [-73.946063, 40.815439], [-73.945762, 40.813426]]], "type": "Polygon"}, "id": "892a1008cb7ffff", "properties": {"percentile_speed_kmh": 63.47708894878706}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952486, 40.815657], [-73.950392, 40.817549], [-73.95181, 40.817214], [-73.952656, 40.818195], [-73.952486, 40.815657]]], "type": "Polygon"}, "id": "892a1008cbbffff", "properties": {"percentile_speed_kmh": 89.57771787960468}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945472, 40.797673], [-73.943476, 40.798908], [-73.944653, 40.798816], [-73.945139, 40.79969], [-73.945472, 40.797673]]], "type": "Polygon"}, "id": "892a1008d03ffff", "properties": {"percentile_speed_kmh": 63.881401617250674}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943413, 40.795196], [-73.941201, 40.796141], [-73.942376, 40.796209], [-73.942674, 40.797132], [-73.943413, 40.795196]]], "type": "Polygon"}, "id": "892a1008d07ffff", "properties": {"percentile_speed_kmh": 63.43216531895777}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94943, 40.797668], [-73.94808, 40.798902], [-73.948998, 40.79868], [-73.949552, 40.799313], [-73.94943, 40.797668]]], "type": "Polygon"}, "id": "892a1008d0bffff", "properties": {"percentile_speed_kmh": 44.20485175202156}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948378, 40.795596], [-73.945445, 40.795271], [-73.946519, 40.795992], [-73.946021, 40.797047], [-73.948378, 40.795596]]], "type": "Polygon"}, "id": "892a1008d0fffff", "properties": {"percentile_speed_kmh": 82.38993710691824}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94289, 40.800547], [-73.941974, 40.801795], [-73.942723, 40.801481], [-73.943331, 40.801955], [-73.94289, 40.800547]]], "type": "Polygon"}, "id": "892a1008d13ffff", "properties": {"percentile_speed_kmh": 34.18688230008985}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941531, 40.799162], [-73.940157, 40.797855], [-73.940305, 40.798655], [-73.939418, 40.799025], [-73.941531, 40.799162]]], "type": "Polygon"}, "id": "892a1008d17ffff", "properties": {"percentile_speed_kmh": 47.7088948787062}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94742, 40.800183], [-73.94586, 40.801715], [-73.946954, 40.801416], [-73.947654, 40.80216], [-73.94742, 40.800183]]], "type": "Polygon"}, "id": "892a1008d1bffff", "properties": {"percentile_speed_kmh": 61.36567834681042}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943355, 40.789806], [-73.940805, 40.790847], [-73.942145, 40.790944], [-73.942461, 40.792004], [-73.943355, 40.789806]]], "type": "Polygon"}, "id": "892a1008d23ffff", "properties": {"percentile_speed_kmh": 78.07726864330638}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941049, 40.787201], [-73.938593, 40.788313], [-73.939917, 40.788363], [-73.940283, 40.789395], [-73.941049, 40.787201]]], "type": "Polygon"}, "id": "892a1008d27ffff", "properties": {"percentile_speed_kmh": 76.37017070979336}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.947523, 40.790152], [-73.945565, 40.790472], [-73.946446, 40.790738], [-73.946418, 40.7915], [-73.947523, 40.790152]]], "type": "Polygon"}, "id": "892a1008d2bffff", "properties": {"percentile_speed_kmh": 42.677448337825695}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94537, 40.787196], [-73.942938, 40.788099], [-73.944188, 40.788227], [-73.944438, 40.789228], [-73.94537, 40.787196]]], "type": "Polygon"}, "id": "892a1008d2fffff", "properties": {"percentile_speed_kmh": 70.61994609164421}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.941485, 40.794076], [-73.940017, 40.792339], [-73.940072, 40.79333], [-73.938932, 40.793689], [-73.941485, 40.794076]]], "type": "Polygon"}, "id": "892a1008d33ffff", "properties": {"percentile_speed_kmh": 67.4303683737646}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938932, 40.790083], [-73.936769, 40.790928], [-73.937894, 40.791026], [-73.93814, 40.79192], [-73.938932, 40.790083]]], "type": "Polygon"}, "id": "892a1008d37ffff", "properties": {"percentile_speed_kmh": 59.34411500449236}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945582, 40.792409], [-73.943071, 40.793428], [-73.944388, 40.793526], [-73.944696, 40.794569], [-73.945582, 40.792409]]], "type": "Polygon"}, "id": "892a1008d3bffff", "properties": {"percentile_speed_kmh": 76.1455525606469}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955486, 40.800423], [-73.95518, 40.801439], [-73.955614, 40.801094], [-73.956156, 40.801317], [-73.955486, 40.800423]]], "type": "Polygon"}, "id": "892a1008d43ffff", "properties": {"percentile_speed_kmh": 13.477088948787062}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952522, 40.797423], [-73.953087, 40.79956], [-73.953516, 40.798592], [-73.954786, 40.798611], [-73.952522, 40.797423]]], "type": "Polygon"}, "id": "892a1008d47ffff", "properties": {"percentile_speed_kmh": 71.47349505840072}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.960876, 40.799796], [-73.958228, 40.801051], [-73.959673, 40.801082], [-73.960099, 40.8022], [-73.960876, 40.799796]]], "type": "Polygon"}, "id": "892a1008d4bffff", "properties": {"percentile_speed_kmh": 86.79245283018868}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958684, 40.797494], [-73.956199, 40.798236], [-73.95742, 40.79844], [-73.957574, 40.799443], [-73.958684, 40.797494]]], "type": "Polygon"}, "id": "892a1008d4fffff", "properties": {"percentile_speed_kmh": 69.49685534591195}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953885, 40.802973], [-73.952701, 40.803994], [-73.953488, 40.803824], [-73.953939, 40.804373], [-73.953885, 40.802973]]], "type": "Polygon"}, "id": "892a1008d53ffff", "properties": {"percentile_speed_kmh": 31.581311769991014}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950802, 40.800205], [-73.950895, 40.802019], [-73.951414, 40.801275], [-73.952451, 40.801435], [-73.950802, 40.800205]]], "type": "Polygon"}, "id": "892a1008d57ffff", "properties": {"percentile_speed_kmh": 52.695417789757414}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.958971, 40.80301], [-73.956545, 40.803311], [-73.957608, 40.803679], [-73.957518, 40.804613], [-73.958971, 40.80301]]], "type": "Polygon"}, "id": "892a1008d5bffff", "properties": {"percentile_speed_kmh": 61.500449236298294}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.953223, 40.79213], [-73.952236, 40.793762], [-73.953132, 40.793308], [-73.95395, 40.79385], [-73.953223, 40.79213]]], "type": "Polygon"}, "id": "892a1008d63ffff", "properties": {"percentile_speed_kmh": 52.83018867924528}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951307, 40.789634], [-73.949843, 40.790927], [-73.950825, 40.790705], [-73.9514, 40.791387], [-73.951307, 40.789634]]], "type": "Polygon"}, "id": "892a1008d67ffff", "properties": {"percentile_speed_kmh": 49.59568733153639}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.957274, 40.792045], [-73.956704, 40.793759], [-73.957457, 40.793188], [-73.958366, 40.793583], [-73.957274, 40.792045]]], "type": "Polygon"}, "id": "892a1008d6bffff", "properties": {"percentile_speed_kmh": 50.62893081761006}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.955847, 40.789263], [-73.953714, 40.790846], [-73.955053, 40.790642], [-73.95572, 40.791604], [-73.955847, 40.789263]]], "type": "Polygon"}, "id": "892a1008d6fffff", "properties": {"percentile_speed_kmh": 79.60467205750224}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.951536, 40.794764], [-73.949893, 40.796307], [-73.951023, 40.796021], [-73.95172, 40.796797], [-73.951536, 40.794764]]], "type": "Polygon"}, "id": "892a1008d73ffff", "properties": {"percentile_speed_kmh": 64.01617250673854}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.949226, 40.792217], [-73.947733, 40.793734], [-73.948795, 40.793428], [-73.949494, 40.794145], [-73.949226, 40.792217]]], "type": "Polygon"}, "id": "892a1008d77ffff", "properties": {"percentile_speed_kmh": 59.02964959568733}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.954007, 40.79511], [-73.955854, 40.796904], [-73.955665, 40.795814], [-73.956878, 40.79532], [-73.954007, 40.79511]]], "type": "Polygon"}, "id": "892a1008d7bffff", "properties": {"percentile_speed_kmh": 79.15543575920934}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.936093, 40.803437], [-73.936058, 40.804828], [-73.936499, 40.804279], [-73.937282, 40.804441], [-73.936093, 40.803437]]], "type": "Polygon"}, "id": "892a1008d83ffff", "properties": {"percentile_speed_kmh": 31.087151841868824}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.933556, 40.801993], [-73.935022, 40.801605], [-73.934317, 40.801465], [-73.934254, 40.800878], [-73.933556, 40.801993]]], "type": "Polygon"}, "id": "892a1008d87ffff", "properties": {"percentile_speed_kmh": 23.89937106918239}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.940024, 40.804291], [-73.941431, 40.80423], [-73.940849, 40.803971], [-73.940966, 40.803442], [-73.940024, 40.804291]]], "type": "Polygon"}, "id": "892a1008d8bffff", "properties": {"percentile_speed_kmh": 18.418688230008986}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938661, 40.802015], [-73.938838, 40.800923], [-73.938432, 40.801324], [-73.937833, 40.801141], [-73.938661, 40.802015]]], "type": "Polygon"}, "id": "892a1008d8fffff", "properties": {"percentile_speed_kmh": 16.352201257861633}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935234, 40.806484], [-73.933486, 40.806606], [-73.934223, 40.806909], [-73.934105, 40.807572], [-73.935234, 40.806484]]], "type": "Polygon"}, "id": "892a1008d93ffff", "properties": {"percentile_speed_kmh": 32.65947888589398}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.933798, 40.803857], [-73.930641, 40.803587], [-73.931821, 40.804331], [-73.931329, 40.805476], [-73.933798, 40.803857]]], "type": "Polygon"}, "id": "892a1008d97ffff", "properties": {"percentile_speed_kmh": 91.2398921832884}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.938369, 40.806113], [-73.938353, 40.80733], [-73.938733, 40.806847], [-73.93942, 40.806983], [-73.938369, 40.806113]]], "type": "Polygon"}, "id": "892a1008d9bffff", "properties": {"percentile_speed_kmh": 22.237196765498652}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.934257, 40.795597], [-73.933214, 40.796587], [-73.933935, 40.796401], [-73.934383, 40.796895], [-73.934257, 40.795597]]], "type": "Polygon"}, "id": "892a1008da3ffff", "properties": {"percentile_speed_kmh": 26.549865229110512}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.937213, 40.795942], [-73.93883, 40.796908], [-73.93848, 40.796196], [-73.939199, 40.795698], [-73.937213, 40.795942]]], "type": "Polygon"}, "id": "892a1008dabffff", "properties": {"percentile_speed_kmh": 43.1266846361186}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935144, 40.793356], [-73.936468, 40.794224], [-73.936204, 40.79361], [-73.936837, 40.793211], [-73.935144, 40.793356]]], "type": "Polygon"}, "id": "892a1008dafffff", "properties": {"percentile_speed_kmh": 30.54806828391734}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93222, 40.797663], [-73.93062, 40.799733], [-73.931895, 40.799228], [-73.932895, 40.800044], [-73.93222, 40.797663]]], "type": "Polygon"}, "id": "892a1008db3ffff", "properties": {"percentile_speed_kmh": 84.63611859838275}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.935883, 40.7995], [-73.937039, 40.798595], [-73.936299, 40.798724], [-73.93591, 40.798197], [-73.935883, 40.7995]]], "type": "Polygon"}, "id": "892a1008dbbffff", "properties": {"percentile_speed_kmh": 26.5947888589398}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946493, 40.807393], [-73.948541, 40.806287], [-73.947383, 40.806317], [-73.946976, 40.805438], [-73.946493, 40.807393]]], "type": "Polygon"}, "id": "892a1008dc3ffff", "properties": {"percentile_speed_kmh": 61.76999101527403}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944367, 40.803363], [-73.944957, 40.804656], [-73.945118, 40.80402], [-73.945912, 40.80394], [-73.944367, 40.803363]]], "type": "Polygon"}, "id": "892a1008dc7ffff", "properties": {"percentile_speed_kmh": 30.41329739442947}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.952709, 40.806788], [-73.951026, 40.805412], [-73.951277, 40.806301], [-73.950318, 40.806779], [-73.952709, 40.806788]]], "type": "Polygon"}, "id": "892a1008dcbffff", "properties": {"percentile_speed_kmh": 58.89487870619946}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948343, 40.803502], [-73.949674, 40.804538], [-73.94946, 40.803856], [-73.950189, 40.803472], [-73.948343, 40.803502]]], "type": "Polygon"}, "id": "892a1008dcfffff", "properties": {"percentile_speed_kmh": 36.43306379155435}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.944423, 40.80844], [-73.945081, 40.810174], [-73.94535, 40.809348], [-73.946401, 40.809289], [-73.944423, 40.80844]]], "type": "Polygon"}, "id": "892a1008dd3ffff", "properties": {"percentile_speed_kmh": 52.56064690026954}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943529, 40.806012], [-73.942024, 40.806704], [-73.942838, 40.80673], [-73.943068, 40.807364], [-73.943529, 40.806012]]], "type": "Polygon"}, "id": "892a1008dd7ffff", "properties": {"percentile_speed_kmh": 31.626235399820306}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.950234, 40.808329], [-73.948283, 40.809181], [-73.949325, 40.809233], [-73.949599, 40.810049], [-73.950234, 40.808329]]], "type": "Polygon"}, "id": "892a1008ddbffff", "properties": {"percentile_speed_kmh": 51.662174303683734}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915113, 40.871477], [-73.916104, 40.870576], [-73.915431, 40.870737], [-73.915027, 40.870272], [-73.915113, 40.871477]]], "type": "Polygon"}, "id": "892a100a107ffff", "properties": {"percentile_speed_kmh": 21.69811320754717}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.923253, 40.865681], [-73.924397, 40.865391], [-73.923851, 40.865277], [-73.923809, 40.864821], [-73.923253, 40.865681]]], "type": "Polygon"}, "id": "892a100a167ffff", "properties": {"percentile_speed_kmh": 9.658580413297393}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.916137, 40.835226], [-73.915237, 40.837323], [-73.91624, 40.836666], [-73.917331, 40.837225], [-73.916137, 40.835226]]], "type": "Polygon"}, "id": "892a100a803ffff", "properties": {"percentile_speed_kmh": 73.27044025157232}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.912966, 40.833229], [-73.914168, 40.834851], [-73.914185, 40.83396], [-73.915232, 40.833688], [-73.912966, 40.833229]]], "type": "Polygon"}, "id": "892a100a807ffff", "properties": {"percentile_speed_kmh": 56.55884995507637}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919448, 40.835439], [-73.920493, 40.837537], [-73.920719, 40.836487], [-73.922019, 40.836324], [-73.919448, 40.835439]]], "type": "Polygon"}, "id": "892a100a80bffff", "properties": {"percentile_speed_kmh": 75.42677448337825}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917738, 40.832923], [-73.917938, 40.834595], [-73.918371, 40.833886], [-73.919339, 40.833991], [-73.917738, 40.832923]]], "type": "Polygon"}, "id": "892a100a80fffff", "properties": {"percentile_speed_kmh": 45.77717879604672}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914767, 40.840323], [-73.914812, 40.837944], [-73.914064, 40.838887], [-73.912722, 40.838615], [-73.914767, 40.840323]]], "type": "Polygon"}, "id": "892a100a813ffff", "properties": {"percentile_speed_kmh": 81.35669362084457}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911236, 40.83562], [-73.911636, 40.837591], [-73.91208, 40.836722], [-73.913239, 40.836785], [-73.911236, 40.83562]]], "type": "Polygon"}, "id": "892a100a817ffff", "properties": {"percentile_speed_kmh": 61.904761904761905}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.917625, 40.838404], [-73.918528, 40.839926], [-73.918633, 40.839135], [-73.919591, 40.838962], [-73.917625, 40.838404]]], "type": "Polygon"}, "id": "892a100a81bffff", "properties": {"percentile_speed_kmh": 46.18149146451033}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914509, 40.827689], [-73.912517, 40.828744], [-73.913637, 40.828723], [-73.91402, 40.829577], [-73.914509, 40.827689]]], "type": "Polygon"}, "id": "892a100a823ffff", "properties": {"percentile_speed_kmh": 58.40071877807727}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911946, 40.824548], [-73.91002, 40.826733], [-73.911461, 40.826247], [-73.912491, 40.827196], [-73.911946, 40.824548]]], "type": "Polygon"}, "id": "892a100a827ffff", "properties": {"percentile_speed_kmh": 96.90026954177897}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919256, 40.827595], [-73.916489, 40.828352], [-73.917828, 40.828606], [-73.917959, 40.829716], [-73.919256, 40.827595]]], "type": "Polygon"}, "id": "892a100a82bffff", "properties": {"percentile_speed_kmh": 80.68283917340521}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915066, 40.825095], [-73.915701, 40.82682], [-73.915976, 40.826002], [-73.91702, 40.825951], [-73.915066, 40.825095]]], "type": "Polygon"}, "id": "892a100a82fffff", "properties": {"percentile_speed_kmh": 51.886792452830186}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91311, 40.830542], [-73.910153, 40.830968], [-73.911467, 40.831393], [-73.911391, 40.832537], [-73.91311, 40.830542]]], "type": "Polygon"}, "id": "892a100a833ffff", "properties": {"percentile_speed_kmh": 84.09703504043127}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90991, 40.827442], [-73.908143, 40.829293], [-73.909417, 40.828908], [-73.910276, 40.829763], [-73.90991, 40.827442]]], "type": "Polygon"}, "id": "892a100a837ffff", "properties": {"percentile_speed_kmh": 79.3351302785265}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915846, 40.829846], [-73.915022, 40.832154], [-73.916059, 40.831397], [-73.917277, 40.83195], [-73.915846, 40.829846]]], "type": "Polygon"}, "id": "892a100a83bffff", "properties": {"percentile_speed_kmh": 82.52470799640611}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924906, 40.834757], [-73.923451, 40.837153], [-73.924768, 40.836488], [-73.925968, 40.837285], [-73.924906, 40.834757]]], "type": "Polygon"}, "id": "892a100a847ffff", "properties": {"percentile_speed_kmh": 96.13656783468105}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.921303, 40.838476], [-73.923402, 40.840028], [-73.923038, 40.838985], [-73.924141, 40.838371], [-73.921303, 40.838476]]], "type": "Polygon"}, "id": "892a100a857ffff", "properties": {"percentile_speed_kmh": 77.40341419586703}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.924773, 40.829927], [-73.923602, 40.831504], [-73.924554, 40.831109], [-73.925321, 40.831713], [-73.924773, 40.829927]]], "type": "Polygon"}, "id": "892a100a863ffff", "properties": {"percentile_speed_kmh": 53.908355795148246}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92301, 40.827401], [-73.921075, 40.828599], [-73.922216, 40.82851], [-73.922687, 40.829357], [-73.92301, 40.827401]]], "type": "Polygon"}, "id": "892a100a867ffff", "properties": {"percentile_speed_kmh": 60.691823899371066}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92884, 40.829759], [-73.927991, 40.831552], [-73.92888, 40.831006], [-73.929804, 40.831514], [-73.92884, 40.829759]]], "type": "Polygon"}, "id": "892a100a86bffff", "properties": {"percentile_speed_kmh": 57.99640610961366}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.926435, 40.827584], [-73.926223, 40.828768], [-73.926671, 40.828337], [-73.927318, 40.828542], [-73.926435, 40.827584]]], "type": "Polygon"}, "id": "892a100a86fffff", "properties": {"percentile_speed_kmh": 21.159029649595688}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.922732, 40.83241], [-73.921371, 40.834357], [-73.922512, 40.833853], [-73.923468, 40.834567], [-73.922732, 40.83241]]], "type": "Polygon"}, "id": "892a100a873ffff", "properties": {"percentile_speed_kmh": 74.12398921832884}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.920781, 40.829983], [-73.919063, 40.83149], [-73.920212, 40.831233], [-73.920881, 40.832033], [-73.920781, 40.829983]]], "type": "Polygon"}, "id": "892a100a877ffff", "properties": {"percentile_speed_kmh": 64.64510332434861}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.927193, 40.832366], [-73.925589, 40.834094], [-73.92676, 40.833725], [-73.927566, 40.834506], [-73.927193, 40.832366]]], "type": "Polygon"}, "id": "892a100a87bffff", "properties": {"percentile_speed_kmh": 70.26055705300988}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90495, 40.838893], [-73.905682, 40.840056], [-73.905746, 40.839443], [-73.906483, 40.839296], [-73.90495, 40.838893]]], "type": "Polygon"}, "id": "892a100a887ffff", "properties": {"percentile_speed_kmh": 26.729559748427672}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910868, 40.841016], [-73.91233, 40.843128], [-73.912393, 40.841989], [-73.913745, 40.841671], [-73.910868, 40.841016]]], "type": "Polygon"}, "id": "892a100a88bffff", "properties": {"percentile_speed_kmh": 83.4681042228212}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909772, 40.838302], [-73.909168, 40.839973], [-73.909922, 40.839426], [-73.910803, 40.839829], [-73.909772, 40.838302]]], "type": "Polygon"}, "id": "892a100a88fffff", "properties": {"percentile_speed_kmh": 48.83198562443845}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904788, 40.84571], [-73.907469, 40.844469], [-73.906016, 40.844426], [-73.905601, 40.843296], [-73.904788, 40.84571]]], "type": "Polygon"}, "id": "892a100a893ffff", "properties": {"percentile_speed_kmh": 87.55615453728662}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902356, 40.841072], [-73.903573, 40.843441], [-73.903813, 40.842248], [-73.905284, 40.842049], [-73.902356, 40.841072]]], "type": "Polygon"}, "id": "892a100a897ffff", "properties": {"percentile_speed_kmh": 90.8355795148248}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911418, 40.843659], [-73.908404, 40.844383], [-73.909832, 40.844701], [-73.909919, 40.845898], [-73.911418, 40.843659]]], "type": "Polygon"}, "id": "892a100a89bffff", "properties": {"percentile_speed_kmh": 89.84725965858041}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.906387, 40.833775], [-73.904475, 40.833711], [-73.90522, 40.834122], [-73.904979, 40.834826], [-73.906387, 40.833775]]], "type": "Polygon"}, "id": "892a100a8a3ffff", "properties": {"percentile_speed_kmh": 39.21832884097035}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902586, 40.830538], [-73.902771, 40.832476], [-73.903291, 40.831664], [-73.904408, 40.831803], [-73.902586, 40.830538]]], "type": "Polygon"}, "id": "892a100a8a7ffff", "properties": {"percentile_speed_kmh": 59.1644204851752}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911101, 40.83408], [-73.908818, 40.833056], [-73.909418, 40.833925], [-73.908594, 40.834664], [-73.911101, 40.83408]]], "type": "Polygon"}, "id": "892a100a8abffff", "properties": {"percentile_speed_kmh": 67.83468104222821}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.905944, 40.831169], [-73.908357, 40.832369], [-73.90776, 40.831403], [-73.908698, 40.830634], [-73.905944, 40.831169]]], "type": "Polygon"}, "id": "892a100a8afffff", "properties": {"percentile_speed_kmh": 77.0440251572327}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901964, 40.837193], [-73.904742, 40.837267], [-73.903654, 40.836678], [-73.903993, 40.835654], [-73.901964, 40.837193]]], "type": "Polygon"}, "id": "892a100a8b3ffff", "properties": {"percentile_speed_kmh": 74.88769092542677}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.899691, 40.834178], [-73.902151, 40.835], [-73.901419, 40.834176], [-73.902148, 40.83335], [-73.899691, 40.834178]]], "type": "Polygon"}, "id": "892a100a8b7ffff", "properties": {"percentile_speed_kmh": 69.99101527403414}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90799, 40.837114], [-73.907824, 40.836133], [-73.907589, 40.836559], [-73.907016, 40.836515], [-73.90799, 40.837114]]], "type": "Polygon"}, "id": "892a100a8bbffff", "properties": {"percentile_speed_kmh": 10.69182389937107}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.918292, 40.843267], [-73.918026, 40.845246], [-73.91874, 40.844508], [-73.919831, 40.844819], [-73.918292, 40.843267]]], "type": "Polygon"}, "id": "892a100a8c3ffff", "properties": {"percentile_speed_kmh": 61.54537286612758}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915036, 40.841353], [-73.917089, 40.842763], [-73.9167, 40.841786], [-73.917718, 40.841174], [-73.915036, 40.841353]]], "type": "Polygon"}, "id": "892a100a8c7ffff", "properties": {"percentile_speed_kmh": 71.20395327942498}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.919572, 40.841274], [-73.921225, 40.842482], [-73.920934, 40.841666], [-73.921795, 40.841181], [-73.919572, 40.841274]]], "type": "Polygon"}, "id": "892a100a8cfffff", "properties": {"percentile_speed_kmh": 52.02156334231806}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915727, 40.846098], [-73.916467, 40.848154], [-73.916802, 40.847183], [-73.918044, 40.847128], [-73.915727, 40.846098]]], "type": "Polygon"}, "id": "892a100a8d3ffff", "properties": {"percentile_speed_kmh": 69.18238993710692}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914589, 40.843191], [-73.913166, 40.84516], [-73.914339, 40.844659], [-73.9153, 40.845398], [-73.914589, 40.843191]]], "type": "Polygon"}, "id": "892a100a8d7ffff", "properties": {"percentile_speed_kmh": 76.32524707996406}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902223, 40.818005], [-73.899076, 40.817569], [-73.900201, 40.818377], [-73.899617, 40.8195], [-73.902223, 40.818005]]], "type": "Polygon"}, "id": "892a100a903ffff", "properties": {"percentile_speed_kmh": 91.95867026055706}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.902578, 40.819521], [-73.901714, 40.821993], [-73.902818, 40.821178], [-73.904124, 40.821765], [-73.902578, 40.819521]]], "type": "Polygon"}, "id": "892a100a91bffff", "properties": {"percentile_speed_kmh": 91.06019766397125}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91207, 40.81975], [-73.910019, 40.820915], [-73.911197, 40.820862], [-73.911636, 40.821749], [-73.91207, 40.81975]]], "type": "Polygon"}, "id": "892a100a943ffff", "properties": {"percentile_speed_kmh": 63.56693620844564}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908463, 40.817232], [-73.908806, 40.819062], [-73.90923, 40.818261], [-73.910302, 40.81833], [-73.908463, 40.817232]]], "type": "Polygon"}, "id": "892a100a947ffff", "properties": {"percentile_speed_kmh": 54.44743935309973}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9166, 40.819858], [-73.914319, 40.820505], [-73.91543, 40.820705], [-73.915552, 40.821622], [-73.9166, 40.819858]]], "type": "Polygon"}, "id": "892a100a94bffff", "properties": {"percentile_speed_kmh": 59.928122192273136}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91453, 40.817144], [-73.911847, 40.817909], [-73.913155, 40.818144], [-73.9133, 40.819223], [-73.91453, 40.817144]]], "type": "Polygon"}, "id": "892a100a94fffff", "properties": {"percentile_speed_kmh": 77.58310871518418}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910069, 40.822164], [-73.907699, 40.823794], [-73.909147, 40.823619], [-73.909816, 40.824674], [-73.910069, 40.822164]]], "type": "Polygon"}, "id": "892a100a953ffff", "properties": {"percentile_speed_kmh": 88.45462713387242}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908202, 40.820148], [-73.905693, 40.820589], [-73.906832, 40.820918], [-73.906813, 40.821898], [-73.908202, 40.820148]]], "type": "Polygon"}, "id": "892a100a957ffff", "properties": {"percentile_speed_kmh": 66.17250673854447}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.914273, 40.821997], [-73.911991, 40.823764], [-73.913445, 40.823517], [-73.914201, 40.824555], [-73.914273, 40.821997]]], "type": "Polygon"}, "id": "892a100a95bffff", "properties": {"percentile_speed_kmh": 90.43126684636118}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.909457, 40.813745], [-73.909333, 40.811821], [-73.908793, 40.812615], [-73.907691, 40.812455], [-73.909457, 40.813745]]], "type": "Polygon"}, "id": "892a100a963ffff", "properties": {"percentile_speed_kmh": 58.310871518418686}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.911909, 40.813241], [-73.914568, 40.813033], [-73.91344, 40.812581], [-73.913607, 40.81157], [-73.911909, 40.813241]]], "type": "Polygon"}, "id": "892a100a96bffff", "properties": {"percentile_speed_kmh": 70.48517520215633}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.906902, 40.816806], [-73.907971, 40.814558], [-73.906854, 40.815242], [-73.905696, 40.814604], [-73.906902, 40.816806]]], "type": "Polygon"}, "id": "892a100a973ffff", "properties": {"percentile_speed_kmh": 82.88409703504043}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.910287, 40.816043], [-73.912319, 40.81542], [-73.911315, 40.81526], [-73.91118, 40.814438], [-73.910287, 40.816043]]], "type": "Polygon"}, "id": "892a100a97bffff", "properties": {"percentile_speed_kmh": 49.865229110512125}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.896531, 40.82281], [-73.895609, 40.824309], [-73.896437, 40.823895], [-73.897187, 40.824398], [-73.896531, 40.82281]]], "type": "Polygon"}, "id": "892a100a98bffff", "properties": {"percentile_speed_kmh": 45.50763701707098}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901881, 40.825161], [-73.902853, 40.827543], [-73.903195, 40.826395], [-73.904647, 40.826288], [-73.901881, 40.825161]]], "type": "Polygon"}, "id": "892a100a9c3ffff", "properties": {"percentile_speed_kmh": 87.96046720575022}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.901501, 40.822415], [-73.899159, 40.824002], [-73.900582, 40.823839], [-73.90123, 40.82488], [-73.901501, 40.822415]]], "type": "Polygon"}, "id": "892a100a9c7ffff", "properties": {"percentile_speed_kmh": 86.20844564240791}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.908041, 40.824937], [-73.905711, 40.826434], [-73.907102, 40.826304], [-73.9077, 40.827331], [-73.908041, 40.824937]]], "type": "Polygon"}, "id": "892a100a9cbffff", "properties": {"percentile_speed_kmh": 82.92902066486973}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90648, 40.824106], [-73.904522, 40.822215], [-73.904726, 40.823366], [-73.903446, 40.823891], [-73.90648, 40.824106]]], "type": "Polygon"}, "id": "892a100a9cfffff", "properties": {"percentile_speed_kmh": 85.89398023360287}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.900455, 40.8275], [-73.90006, 40.830145], [-73.901029, 40.829167], [-73.902483, 40.829596], [-73.900455, 40.8275]]], "type": "Polygon"}, "id": "892a100a9d3ffff", "properties": {"percentile_speed_kmh": 95.82210242587601}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.904679, 40.827681], [-73.904641, 40.829859], [-73.905324, 40.828995], [-73.906552, 40.829243], [-73.904679, 40.827681]]], "type": "Polygon"}, "id": "892a100a9dbffff", "properties": {"percentile_speed_kmh": 71.06918238993711}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.946492, 40.834337], [-73.94488, 40.836384], [-73.946153, 40.83589], [-73.947139, 40.836707], [-73.946492, 40.834337]]], "type": "Polygon"}, "id": "892a100aa03ffff", "properties": {"percentile_speed_kmh": 83.78256963162623}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943707, 40.831766], [-73.943033, 40.834096], [-73.944018, 40.8333], [-73.945265, 40.8338], [-73.943707, 40.831766]]], "type": "Polygon"}, "id": "892a100aa07ffff", "properties": {"percentile_speed_kmh": 82.0754716981132}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.945418, 40.837859], [-73.942872, 40.837951], [-73.943919, 40.838426], [-73.943698, 40.839382], [-73.945418, 40.837859]]], "type": "Polygon"}, "id": "892a100aa13ffff", "properties": {"percentile_speed_kmh": 65.31895777178796}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942091, 40.837147], [-73.943032, 40.834659], [-73.941893, 40.835464], [-73.940585, 40.834848], [-73.942091, 40.837147]]], "type": "Polygon"}, "id": "892a100aa17ffff", "properties": {"percentile_speed_kmh": 92.6774483378257}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.943582, 40.826762], [-73.943024, 40.828563], [-73.9438, 40.827955], [-73.944759, 40.828356], [-73.943582, 40.826762]]], "type": "Polygon"}, "id": "892a100aa23ffff", "properties": {"percentile_speed_kmh": 54.76190476190476}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942416, 40.824513], [-73.940314, 40.825122], [-73.941342, 40.825301], [-73.941461, 40.826148], [-73.942416, 40.824513]]], "type": "Polygon"}, "id": "892a100aa27ffff", "properties": {"percentile_speed_kmh": 52.291105121293796}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.948755, 40.82637], [-73.946435, 40.828137], [-73.947905, 40.827897], [-73.948656, 40.828948], [-73.948755, 40.82637]]], "type": "Polygon"}, "id": "892a100aa2bffff", "properties": {"percentile_speed_kmh": 91.50943396226415}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9474, 40.824532], [-73.944218, 40.824512], [-73.945484, 40.825161], [-73.945132, 40.826341], [-73.9474, 40.824532]]], "type": "Polygon"}, "id": "892a100aa2fffff", "properties": {"percentile_speed_kmh": 91.46451033243486}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.942467, 40.829218], [-73.940116, 40.830907], [-73.941574, 40.830705], [-73.942279, 40.831759], [-73.942467, 40.829218]]], "type": "Polygon"}, " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it is lovely!
I can't believe this is the first comment.
thank you