In this lab, you will learn how to convert addresses into their equivalent latitude and longitude values. Also, you will use the Foursquare API to explore neighborhoods in New York City. You will use the explore function to get the most common venue categories in each neighborhood, and then use this feature to group the neighborhoods into clusters. You will use the k-means clustering algorithm to complete this task. Finally, you will use the Folium library to visualize the neighborhoods in New York City and their emerging clusters.
Before we get the data and start exploring it, let's download all the dependencies that we will need.
import numpy as np # library to handle data in a vectorized manner
import pandas as pd # library for data analsysis
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
import json # library to handle JSON files
#!conda install -c conda-forge geopy --yes # uncomment this line if you haven't completed the Foursquare API lab
from geopy.geocoders import Nominatim # convert an address into latitude and longitude values
import requests # library to handle requests
from pandas.io.json import json_normalize # tranform JSON file into a pandas dataframe
# Matplotlib and associated plotting modules
import matplotlib.cm as cm
import matplotlib.colors as colors
# import k-means from clustering stage
from sklearn.cluster import KMeans
#!conda install -c conda-forge folium=0.5.0 --yes # uncomment this line if you haven't completed the Foursquare API lab
import folium # map rendering library
print('Libraries imported.')
Libraries imported.
Neighborhood has a total of 5 boroughs and 306 neighborhoods. In order to segement the neighborhoods and explore them, we will essentially need a dataset that contains the 5 boroughs and the neighborhoods that exist in each borough as well as the the latitude and logitude coordinates of each neighborhood.
Luckily, this dataset exists for free on the web. Feel free to try to find this dataset on your own, but here is the link to the dataset: https://geo.nyu.edu/catalog/nyu_2451_34572
For your convenience, I downloaded the files and placed it on the server, so you can simply run a wget
command and access the data. So let's go ahead and do that.
!wget -q -O 'newyork_data.json' https://cocl.us/new_york_dataset
print('Data downloaded!')
Data downloaded!
Next, let's load the data.
with open('newyork_data.json') as json_data:
newyork_data = json.load(json_data)
Let's take a quick look at the data.
newyork_data
{'type': 'FeatureCollection', 'totalFeatures': 306, 'features': [{'type': 'Feature', 'id': 'nyu_2451_34572.1', 'geometry': {'type': 'Point', 'coordinates': [-73.84720052054902, 40.89470517661]}, 'geometry_name': 'geom', 'properties': {'name': 'Wakefield', 'stacked': 1, 'annoline1': 'Wakefield', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.84720052054902, 40.89470517661, -73.84720052054902, 40.89470517661]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.2', 'geometry': {'type': 'Point', 'coordinates': [-73.82993910812398, 40.87429419303012]}, 'geometry_name': 'geom', 'properties': {'name': 'Co-op City', 'stacked': 2, 'annoline1': 'Co-op', 'annoline2': 'City', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.82993910812398, 40.87429419303012, -73.82993910812398, 40.87429419303012]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.3', 'geometry': {'type': 'Point', 'coordinates': [-73.82780644716412, 40.887555677350775]}, 'geometry_name': 'geom', 'properties': {'name': 'Eastchester', 'stacked': 1, 'annoline1': 'Eastchester', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.82780644716412, 40.887555677350775, -73.82780644716412, 40.887555677350775]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.4', 'geometry': {'type': 'Point', 'coordinates': [-73.90564259591682, 40.89543742690383]}, 'geometry_name': 'geom', 'properties': {'name': 'Fieldston', 'stacked': 1, 'annoline1': 'Fieldston', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.90564259591682, 40.89543742690383, -73.90564259591682, 40.89543742690383]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.5', 'geometry': {'type': 'Point', 'coordinates': [-73.9125854610857, 40.890834493891305]}, 'geometry_name': 'geom', 'properties': {'name': 'Riverdale', 'stacked': 1, 'annoline1': 'Riverdale', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.9125854610857, 40.890834493891305, -73.9125854610857, 40.890834493891305]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.6', 'geometry': {'type': 'Point', 'coordinates': [-73.90281798724604, 40.88168737120521]}, 'geometry_name': 'geom', 'properties': {'name': 'Kingsbridge', 'stacked': 1, 'annoline1': 'Kingsbridge', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.90281798724604, 40.88168737120521, -73.90281798724604, 40.88168737120521]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.7', 'geometry': {'type': 'Point', 'coordinates': [-73.91065965862981, 40.87655077879964]}, 'geometry_name': 'geom', 'properties': {'name': 'Marble Hill', 'stacked': 2, 'annoline1': 'Marble', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.91065965862981, 40.87655077879964, -73.91065965862981, 40.87655077879964]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.8', 'geometry': {'type': 'Point', 'coordinates': [-73.86731496814176, 40.89827261213805]}, 'geometry_name': 'geom', 'properties': {'name': 'Woodlawn', 'stacked': 1, 'annoline1': 'Woodlawn', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.86731496814176, 40.89827261213805, -73.86731496814176, 40.89827261213805]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.9', 'geometry': {'type': 'Point', 'coordinates': [-73.8793907395681, 40.87722415599446]}, 'geometry_name': 'geom', 'properties': {'name': 'Norwood', 'stacked': 1, 'annoline1': 'Norwood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.8793907395681, 40.87722415599446, -73.8793907395681, 40.87722415599446]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.10', 'geometry': {'type': 'Point', 'coordinates': [-73.85744642974207, 40.88103887819211]}, 'geometry_name': 'geom', 'properties': {'name': 'Williamsbridge', 'stacked': 1, 'annoline1': 'Williamsbridge', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.85744642974207, 40.88103887819211, -73.85744642974207, 40.88103887819211]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.11', 'geometry': {'type': 'Point', 'coordinates': [-73.83579759808117, 40.866858107252696]}, 'geometry_name': 'geom', 'properties': {'name': 'Baychester', 'stacked': 1, 'annoline1': 'Baychester', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.83579759808117, 40.866858107252696, -73.83579759808117, 40.866858107252696]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.12', 'geometry': {'type': 'Point', 'coordinates': [-73.85475564017999, 40.85741349808865]}, 'geometry_name': 'geom', 'properties': {'name': 'Pelham Parkway', 'stacked': 1, 'annoline1': 'Pelham Parkway', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.85475564017999, 40.85741349808865, -73.85475564017999, 40.85741349808865]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.13', 'geometry': {'type': 'Point', 'coordinates': [-73.78648845267413, 40.84724670491813]}, 'geometry_name': 'geom', 'properties': {'name': 'City Island', 'stacked': 2, 'annoline1': 'City', 'annoline2': 'Island', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.78648845267413, 40.84724670491813, -73.78648845267413, 40.84724670491813]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.14', 'geometry': {'type': 'Point', 'coordinates': [-73.8855121841913, 40.870185164975325]}, 'geometry_name': 'geom', 'properties': {'name': 'Bedford Park', 'stacked': 2, 'annoline1': 'Bedford', 'annoline2': 'Park', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.8855121841913, 40.870185164975325, -73.8855121841913, 40.870185164975325]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.15', 'geometry': {'type': 'Point', 'coordinates': [-73.9104159619131, 40.85572707719664]}, 'geometry_name': 'geom', 'properties': {'name': 'University Heights', 'stacked': 2, 'annoline1': 'University', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.9104159619131, 40.85572707719664, -73.9104159619131, 40.85572707719664]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.16', 'geometry': {'type': 'Point', 'coordinates': [-73.91967159119565, 40.84789792606271]}, 'geometry_name': 'geom', 'properties': {'name': 'Morris Heights', 'stacked': 2, 'annoline1': 'Morris', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.91967159119565, 40.84789792606271, -73.91967159119565, 40.84789792606271]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.17', 'geometry': {'type': 'Point', 'coordinates': [-73.89642655981623, 40.86099679638654]}, 'geometry_name': 'geom', 'properties': {'name': 'Fordham', 'stacked': 1, 'annoline1': 'Fordham', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.89642655981623, 40.86099679638654, -73.89642655981623, 40.86099679638654]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.18', 'geometry': {'type': 'Point', 'coordinates': [-73.88735617532338, 40.84269615786053]}, 'geometry_name': 'geom', 'properties': {'name': 'East Tremont', 'stacked': 2, 'annoline1': 'East', 'annoline2': 'Tremont', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.88735617532338, 40.84269615786053, -73.88735617532338, 40.84269615786053]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.19', 'geometry': {'type': 'Point', 'coordinates': [-73.87774474910545, 40.83947505672653]}, 'geometry_name': 'geom', 'properties': {'name': 'West Farms', 'stacked': 2, 'annoline1': 'West', 'annoline2': 'Farms', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.87774474910545, 40.83947505672653, -73.87774474910545, 40.83947505672653]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.20', 'geometry': {'type': 'Point', 'coordinates': [-73.9261020935813, 40.836623010706056]}, 'geometry_name': 'geom', 'properties': {'name': 'High Bridge', 'stacked': 1, 'annoline1': 'Highbridge', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.9261020935813, 40.836623010706056, -73.9261020935813, 40.836623010706056]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.21', 'geometry': {'type': 'Point', 'coordinates': [-73.90942160757436, 40.819754370594936]}, 'geometry_name': 'geom', 'properties': {'name': 'Melrose', 'stacked': 1, 'annoline1': 'Melrose', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.90942160757436, 40.819754370594936, -73.90942160757436, 40.819754370594936]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.22', 'geometry': {'type': 'Point', 'coordinates': [-73.91609987487575, 40.80623874935177]}, 'geometry_name': 'geom', 'properties': {'name': 'Mott Haven', 'stacked': 1, 'annoline1': 'Mott Haven', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.91609987487575, 40.80623874935177, -73.91609987487575, 40.80623874935177]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.23', 'geometry': {'type': 'Point', 'coordinates': [-73.91322139386135, 40.801663627756206]}, 'geometry_name': 'geom', 'properties': {'name': 'Port Morris', 'stacked': 2, 'annoline1': 'Port', 'annoline2': 'Morris', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.91322139386135, 40.801663627756206, -73.91322139386135, 40.801663627756206]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.24', 'geometry': {'type': 'Point', 'coordinates': [-73.8957882009446, 40.81509904545822]}, 'geometry_name': 'geom', 'properties': {'name': 'Longwood', 'stacked': 1, 'annoline1': 'Longwood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.8957882009446, 40.81509904545822, -73.8957882009446, 40.81509904545822]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.25', 'geometry': {'type': 'Point', 'coordinates': [-73.88331505955291, 40.80972987938709]}, 'geometry_name': 'geom', 'properties': {'name': 'Hunts Point', 'stacked': 2, 'annoline1': 'Hunts', 'annoline2': 'Point', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.88331505955291, 40.80972987938709, -73.88331505955291, 40.80972987938709]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.26', 'geometry': {'type': 'Point', 'coordinates': [-73.90150648943059, 40.82359198585534]}, 'geometry_name': 'geom', 'properties': {'name': 'Morrisania', 'stacked': 1, 'annoline1': 'Morrisania', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.90150648943059, 40.82359198585534, -73.90150648943059, 40.82359198585534]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.27', 'geometry': {'type': 'Point', 'coordinates': [-73.86574609554924, 40.821012197914015]}, 'geometry_name': 'geom', 'properties': {'name': 'Soundview', 'stacked': 1, 'annoline1': 'Soundview', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.86574609554924, 40.821012197914015, -73.86574609554924, 40.821012197914015]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.28', 'geometry': {'type': 'Point', 'coordinates': [-73.85414416189266, 40.80655112003589]}, 'geometry_name': 'geom', 'properties': {'name': 'Clason Point', 'stacked': 2, 'annoline1': 'Clason', 'annoline2': 'Point', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.85414416189266, 40.80655112003589, -73.85414416189266, 40.80655112003589]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.29', 'geometry': {'type': 'Point', 'coordinates': [-73.81635002158441, 40.81510925804005]}, 'geometry_name': 'geom', 'properties': {'name': 'Throgs Neck', 'stacked': 1, 'annoline1': 'Throgs Neck', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.81635002158441, 40.81510925804005, -73.81635002158441, 40.81510925804005]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.30', 'geometry': {'type': 'Point', 'coordinates': [-73.8240992675385, 40.844245936947374]}, 'geometry_name': 'geom', 'properties': {'name': 'Country Club', 'stacked': 2, 'annoline1': 'Country', 'annoline2': 'Club', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.8240992675385, 40.844245936947374, -73.8240992675385, 40.844245936947374]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.31', 'geometry': {'type': 'Point', 'coordinates': [-73.85600310535783, 40.837937822267286]}, 'geometry_name': 'geom', 'properties': {'name': 'Parkchester', 'stacked': 1, 'annoline1': 'Parkchester', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.85600310535783, 40.837937822267286, -73.85600310535783, 40.837937822267286]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.32', 'geometry': {'type': 'Point', 'coordinates': [-73.84219407604444, 40.8406194964327]}, 'geometry_name': 'geom', 'properties': {'name': 'Westchester Square', 'stacked': 2, 'annoline1': 'Westchester', 'annoline2': 'Square', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.84219407604444, 40.8406194964327, -73.84219407604444, 40.8406194964327]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.33', 'geometry': {'type': 'Point', 'coordinates': [-73.8662991807561, 40.84360847124718]}, 'geometry_name': 'geom', 'properties': {'name': 'Van Nest', 'stacked': 2, 'annoline1': 'Van', 'annoline2': 'Nest', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.8662991807561, 40.84360847124718, -73.8662991807561, 40.84360847124718]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.34', 'geometry': {'type': 'Point', 'coordinates': [-73.85040178030421, 40.847549063536334]}, 'geometry_name': 'geom', 'properties': {'name': 'Morris Park', 'stacked': 1, 'annoline1': 'Morris Park', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.85040178030421, 40.847549063536334, -73.85040178030421, 40.847549063536334]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.35', 'geometry': {'type': 'Point', 'coordinates': [-73.88845196134804, 40.85727710073895]}, 'geometry_name': 'geom', 'properties': {'name': 'Belmont', 'stacked': 1, 'annoline1': 'Belmont', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.88845196134804, 40.85727710073895, -73.88845196134804, 40.85727710073895]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.36', 'geometry': {'type': 'Point', 'coordinates': [-73.91719048210393, 40.88139497727086]}, 'geometry_name': 'geom', 'properties': {'name': 'Spuyten Duyvil', 'stacked': 2, 'annoline1': 'Spuyten', 'annoline2': 'Duyvil', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.91719048210393, 40.88139497727086, -73.91719048210393, 40.88139497727086]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.37', 'geometry': {'type': 'Point', 'coordinates': [-73.90453054908927, 40.90854282950666]}, 'geometry_name': 'geom', 'properties': {'name': 'North Riverdale', 'stacked': 2, 'annoline1': 'North', 'annoline2': 'Riverdale', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.90453054908927, 40.90854282950666, -73.90453054908927, 40.90854282950666]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.38', 'geometry': {'type': 'Point', 'coordinates': [-73.8320737824047, 40.85064140940335]}, 'geometry_name': 'geom', 'properties': {'name': 'Pelham Bay', 'stacked': 2, 'annoline1': 'Pelham', 'annoline2': 'Bay', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.8320737824047, 40.85064140940335, -73.8320737824047, 40.85064140940335]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.39', 'geometry': {'type': 'Point', 'coordinates': [-73.82620275994073, 40.82657951686922]}, 'geometry_name': 'geom', 'properties': {'name': 'Schuylerville', 'stacked': 1, 'annoline1': 'Schuylerville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.82620275994073, 40.82657951686922, -73.82620275994073, 40.82657951686922]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.40', 'geometry': {'type': 'Point', 'coordinates': [-73.81388514428619, 40.821986118163494]}, 'geometry_name': 'geom', 'properties': {'name': 'Edgewater Park', 'stacked': 2, 'annoline1': 'Edgewater', 'annoline2': 'Park', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.81388514428619, 40.821986118163494, -73.81388514428619, 40.821986118163494]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.41', 'geometry': {'type': 'Point', 'coordinates': [-73.84802729582735, 40.819014376988314]}, 'geometry_name': 'geom', 'properties': {'name': 'Castle Hill', 'stacked': 2, 'annoline1': 'Castle', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.84802729582735, 40.819014376988314, -73.84802729582735, 40.819014376988314]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.42', 'geometry': {'type': 'Point', 'coordinates': [-73.86332361652777, 40.87137078192371]}, 'geometry_name': 'geom', 'properties': {'name': 'Olinville', 'stacked': 1, 'annoline1': 'Olinville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.86332361652777, 40.87137078192371, -73.86332361652777, 40.87137078192371]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.43', 'geometry': {'type': 'Point', 'coordinates': [-73.84161194831223, 40.86296562477998]}, 'geometry_name': 'geom', 'properties': {'name': 'Pelham Gardens', 'stacked': 2, 'annoline1': 'Pelham', 'annoline2': 'Gardens', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.84161194831223, 40.86296562477998, -73.84161194831223, 40.86296562477998]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.44', 'geometry': {'type': 'Point', 'coordinates': [-73.91558941773444, 40.83428380733851]}, 'geometry_name': 'geom', 'properties': {'name': 'Concourse', 'stacked': 1, 'annoline1': 'Concourse', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.91558941773444, 40.83428380733851, -73.91558941773444, 40.83428380733851]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.45', 'geometry': {'type': 'Point', 'coordinates': [-73.85053524451935, 40.82977429787161]}, 'geometry_name': 'geom', 'properties': {'name': 'Unionport', 'stacked': 1, 'annoline1': 'Unionport', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.85053524451935, 40.82977429787161, -73.85053524451935, 40.82977429787161]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.46', 'geometry': {'type': 'Point', 'coordinates': [-73.84808271877168, 40.88456130303732]}, 'geometry_name': 'geom', 'properties': {'name': 'Edenwald', 'stacked': 1, 'annoline1': 'Edenwald', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.84808271877168, 40.88456130303732, -73.84808271877168, 40.88456130303732]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.47', 'geometry': {'type': 'Point', 'coordinates': [-74.03062069353813, 40.625801065010656]}, 'geometry_name': 'geom', 'properties': {'name': 'Bay Ridge', 'stacked': 1, 'annoline1': 'Bay Ridge', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-74.03062069353813, 40.625801065010656, -74.03062069353813, 40.625801065010656]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.48', 'geometry': {'type': 'Point', 'coordinates': [-73.99517998380729, 40.61100890202044]}, 'geometry_name': 'geom', 'properties': {'name': 'Bensonhurst', 'stacked': 1, 'annoline1': 'Bensonhurst', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.99517998380729, 40.61100890202044, -73.99517998380729, 40.61100890202044]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.49', 'geometry': {'type': 'Point', 'coordinates': [-74.01031618527784, 40.64510294925429]}, 'geometry_name': 'geom', 'properties': {'name': 'Sunset Park', 'stacked': 2, 'annoline1': 'Sunset', 'annoline2': 'Park', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-74.01031618527784, 40.64510294925429, -74.01031618527784, 40.64510294925429]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.50', 'geometry': {'type': 'Point', 'coordinates': [-73.95424093127393, 40.7302009848647]}, 'geometry_name': 'geom', 'properties': {'name': 'Greenpoint', 'stacked': 1, 'annoline1': 'Greenpoint', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95424093127393, 40.7302009848647, -73.95424093127393, 40.7302009848647]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.51', 'geometry': {'type': 'Point', 'coordinates': [-73.97347087708445, 40.59526001306593]}, 'geometry_name': 'geom', 'properties': {'name': 'Gravesend', 'stacked': 1, 'annoline1': 'Gravesend', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.97347087708445, 40.59526001306593, -73.97347087708445, 40.59526001306593]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.52', 'geometry': {'type': 'Point', 'coordinates': [-73.96509448785336, 40.57682506566604]}, 'geometry_name': 'geom', 'properties': {'name': 'Brighton Beach', 'stacked': 2, 'annoline1': 'Brighton', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.96509448785336, 40.57682506566604, -73.96509448785336, 40.57682506566604]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.53', 'geometry': {'type': 'Point', 'coordinates': [-73.94318640482979, 40.58689012678384]}, 'geometry_name': 'geom', 'properties': {'name': 'Sheepshead Bay', 'stacked': 2, 'annoline1': 'Sheepshead', 'annoline2': 'Bay', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.94318640482979, 40.58689012678384, -73.94318640482979, 40.58689012678384]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.54', 'geometry': {'type': 'Point', 'coordinates': [-73.95743840559939, 40.61443251335098]}, 'geometry_name': 'geom', 'properties': {'name': 'Manhattan Terrace', 'stacked': 2, 'annoline1': 'Manhattan', 'annoline2': 'Terrace', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95743840559939, 40.61443251335098, -73.95743840559939, 40.61443251335098]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.55', 'geometry': {'type': 'Point', 'coordinates': [-73.95840106533903, 40.63632589026677]}, 'geometry_name': 'geom', 'properties': {'name': 'Flatbush', 'stacked': 1, 'annoline1': 'Flatbush', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95840106533903, 40.63632589026677, -73.95840106533903, 40.63632589026677]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.56', 'geometry': {'type': 'Point', 'coordinates': [-73.94329119073582, 40.67082917695294]}, 'geometry_name': 'geom', 'properties': {'name': 'Crown Heights', 'stacked': 2, 'annoline1': 'Crown', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.94329119073582, 40.67082917695294, -73.94329119073582, 40.67082917695294]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.57', 'geometry': {'type': 'Point', 'coordinates': [-73.93610256185836, 40.64171776668961]}, 'geometry_name': 'geom', 'properties': {'name': 'East Flatbush', 'stacked': 1, 'annoline1': 'East Flatbush', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.93610256185836, 40.64171776668961, -73.93610256185836, 40.64171776668961]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.58', 'geometry': {'type': 'Point', 'coordinates': [-73.98042110559474, 40.642381958003526]}, 'geometry_name': 'geom', 'properties': {'name': 'Kensington', 'stacked': 1, 'annoline1': 'Kensington', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.98042110559474, 40.642381958003526, -73.98042110559474, 40.642381958003526]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.59', 'geometry': {'type': 'Point', 'coordinates': [-73.98007340430172, 40.65694583575104]}, 'geometry_name': 'geom', 'properties': {'name': 'Windsor Terrace', 'stacked': 2, 'annoline1': 'Windsor', 'annoline2': 'Terrace', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.98007340430172, 40.65694583575104, -73.98007340430172, 40.65694583575104]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.60', 'geometry': {'type': 'Point', 'coordinates': [-73.9648592426269, 40.676822262254724]}, 'geometry_name': 'geom', 'properties': {'name': 'Prospect Heights', 'stacked': 2, 'annoline1': 'Prospect', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.9648592426269, 40.676822262254724, -73.9648592426269, 40.676822262254724]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.61', 'geometry': {'type': 'Point', 'coordinates': [-73.91023536176607, 40.66394994339755]}, 'geometry_name': 'geom', 'properties': {'name': 'Brownsville', 'stacked': 1, 'annoline1': 'Brownsville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.91023536176607, 40.66394994339755, -73.91023536176607, 40.66394994339755]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.62', 'geometry': {'type': 'Point', 'coordinates': [-73.95811529220927, 40.70714439344251]}, 'geometry_name': 'geom', 'properties': {'name': 'Williamsburg', 'stacked': 1, 'annoline1': 'Williamsburg', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95811529220927, 40.70714439344251, -73.95811529220927, 40.70714439344251]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.63', 'geometry': {'type': 'Point', 'coordinates': [-73.92525797487045, 40.69811611017901]}, 'geometry_name': 'geom', 'properties': {'name': 'Bushwick', 'stacked': 1, 'annoline1': 'Bushwick', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.92525797487045, 40.69811611017901, -73.92525797487045, 40.69811611017901]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.64', 'geometry': {'type': 'Point', 'coordinates': [-73.94178488690297, 40.687231607720456]}, 'geometry_name': 'geom', 'properties': {'name': 'Bedford Stuyvesant', 'stacked': 1, 'annoline1': 'Bedford Stuyvesant', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.94178488690297, 40.687231607720456, -73.94178488690297, 40.687231607720456]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.65', 'geometry': {'type': 'Point', 'coordinates': [-73.99378225496424, 40.695863722724084]}, 'geometry_name': 'geom', 'properties': {'name': 'Brooklyn Heights', 'stacked': 2, 'annoline1': 'Brooklyn', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.99378225496424, 40.695863722724084, -73.99378225496424, 40.695863722724084]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.66', 'geometry': {'type': 'Point', 'coordinates': [-73.99856139218463, 40.687919722485574]}, 'geometry_name': 'geom', 'properties': {'name': 'Cobble Hill', 'stacked': 2, 'annoline1': 'Cobble', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.99856139218463, 40.687919722485574, -73.99856139218463, 40.687919722485574]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.67', 'geometry': {'type': 'Point', 'coordinates': [-73.99465372828006, 40.680540231076485]}, 'geometry_name': 'geom', 'properties': {'name': 'Carroll Gardens', 'stacked': 2, 'annoline1': 'Carroll', 'annoline2': 'Gardens', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.99465372828006, 40.680540231076485, -73.99465372828006, 40.680540231076485]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.68', 'geometry': {'type': 'Point', 'coordinates': [-74.0127589747356, 40.676253230250886]}, 'geometry_name': 'geom', 'properties': {'name': 'Red Hook', 'stacked': 2, 'annoline1': 'Red', 'annoline2': 'Hook', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-74.0127589747356, 40.676253230250886, -74.0127589747356, 40.676253230250886]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.69', 'geometry': {'type': 'Point', 'coordinates': [-73.99444087145339, 40.673931143187154]}, 'geometry_name': 'geom', 'properties': {'name': 'Gowanus', 'stacked': 1, 'annoline1': 'Gowanus', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.99444087145339, 40.673931143187154, -73.99444087145339, 40.673931143187154]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.70', 'geometry': {'type': 'Point', 'coordinates': [-73.97290574369092, 40.68852726018977]}, 'geometry_name': 'geom', 'properties': {'name': 'Fort Greene', 'stacked': 2, 'annoline1': 'Fort', 'annoline2': 'Greene', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.97290574369092, 40.68852726018977, -73.97290574369092, 40.68852726018977]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.71', 'geometry': {'type': 'Point', 'coordinates': [-73.97705030183924, 40.67232052268197]}, 'geometry_name': 'geom', 'properties': {'name': 'Park Slope', 'stacked': 2, 'annoline1': 'Park', 'annoline2': 'Slope', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.97705030183924, 40.67232052268197, -73.97705030183924, 40.67232052268197]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.72', 'geometry': {'type': 'Point', 'coordinates': [-73.87661596457296, 40.68239101144211]}, 'geometry_name': 'geom', 'properties': {'name': 'Cypress Hills', 'stacked': 2, 'annoline1': 'Cypress', 'annoline2': 'Hills', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.87661596457296, 40.68239101144211, -73.87661596457296, 40.68239101144211]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.73', 'geometry': {'type': 'Point', 'coordinates': [-73.88069863917366, 40.669925700847045]}, 'geometry_name': 'geom', 'properties': {'name': 'East New York', 'stacked': 1, 'annoline1': 'East New York', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.88069863917366, 40.669925700847045, -73.88069863917366, 40.669925700847045]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.74', 'geometry': {'type': 'Point', 'coordinates': [-73.87936970045875, 40.64758905230874]}, 'geometry_name': 'geom', 'properties': {'name': 'Starrett City', 'stacked': 2, 'annoline1': 'Starrett', 'annoline2': 'City', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.87936970045875, 40.64758905230874, -73.87936970045875, 40.64758905230874]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.75', 'geometry': {'type': 'Point', 'coordinates': [-73.90209269778966, 40.63556432797428]}, 'geometry_name': 'geom', 'properties': {'name': 'Canarsie', 'stacked': 1, 'annoline1': 'Canarsie', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.90209269778966, 40.63556432797428, -73.90209269778966, 40.63556432797428]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.76', 'geometry': {'type': 'Point', 'coordinates': [-73.92911302644674, 40.630446043757466]}, 'geometry_name': 'geom', 'properties': {'name': 'Flatlands', 'stacked': 1, 'annoline1': 'Flatlands', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.92911302644674, 40.630446043757466, -73.92911302644674, 40.630446043757466]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.77', 'geometry': {'type': 'Point', 'coordinates': [-73.90818571777423, 40.606336421685626]}, 'geometry_name': 'geom', 'properties': {'name': 'Mill Island', 'stacked': 2, 'annoline1': 'Mill', 'annoline2': 'Island', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.90818571777423, 40.606336421685626, -73.90818571777423, 40.606336421685626]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.78', 'geometry': {'type': 'Point', 'coordinates': [-73.94353722891886, 40.57791350308657]}, 'geometry_name': 'geom', 'properties': {'name': 'Manhattan Beach', 'stacked': 2, 'annoline1': 'Manhattan', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.94353722891886, 40.57791350308657, -73.94353722891886, 40.57791350308657]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.79', 'geometry': {'type': 'Point', 'coordinates': [-73.98868295821637, 40.57429256471601]}, 'geometry_name': 'geom', 'properties': {'name': 'Coney Island', 'stacked': 1, 'annoline1': 'Coney Island', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.98868295821637, 40.57429256471601, -73.98868295821637, 40.57429256471601]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.80', 'geometry': {'type': 'Point', 'coordinates': [-73.99875221443519, 40.59951870282238]}, 'geometry_name': 'geom', 'properties': {'name': 'Bath Beach', 'stacked': 2, 'annoline1': 'Bath', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.99875221443519, 40.59951870282238, -73.99875221443519, 40.59951870282238]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.81', 'geometry': {'type': 'Point', 'coordinates': [-73.99049823044811, 40.633130512758015]}, 'geometry_name': 'geom', 'properties': {'name': 'Borough Park', 'stacked': 2, 'annoline1': 'Borough', 'annoline2': 'Park', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.99049823044811, 40.633130512758015, -73.99049823044811, 40.633130512758015]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.82', 'geometry': {'type': 'Point', 'coordinates': [-74.01931375636022, 40.619219457722636]}, 'geometry_name': 'geom', 'properties': {'name': 'Dyker Heights', 'stacked': 2, 'annoline1': 'Dyker', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-74.01931375636022, 40.619219457722636, -74.01931375636022, 40.619219457722636]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.83', 'geometry': {'type': 'Point', 'coordinates': [-73.93010170691196, 40.590848433902046]}, 'geometry_name': 'geom', 'properties': {'name': 'Gerritsen Beach', 'stacked': 2, 'annoline1': 'Gerritsen', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.93010170691196, 40.590848433902046, -73.93010170691196, 40.590848433902046]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.84', 'geometry': {'type': 'Point', 'coordinates': [-73.93134404108497, 40.609747779894604]}, 'geometry_name': 'geom', 'properties': {'name': 'Marine Park', 'stacked': 1, 'annoline1': 'Marine Park', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.93134404108497, 40.609747779894604, -73.93134404108497, 40.609747779894604]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.85', 'geometry': {'type': 'Point', 'coordinates': [-73.96784306216367, 40.693229421881504]}, 'geometry_name': 'geom', 'properties': {'name': 'Clinton Hill', 'stacked': 2, 'annoline1': 'Clinton', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.96784306216367, 40.693229421881504, -73.96784306216367, 40.693229421881504]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.86', 'geometry': {'type': 'Point', 'coordinates': [-74.0078731120024, 40.57637537890224]}, 'geometry_name': 'geom', 'properties': {'name': 'Sea Gate', 'stacked': 2, 'annoline1': 'Sea', 'annoline2': 'Gate', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-74.0078731120024, 40.57637537890224, -74.0078731120024, 40.57637537890224]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.87', 'geometry': {'type': 'Point', 'coordinates': [-73.98346337431099, 40.69084402109802]}, 'geometry_name': 'geom', 'properties': {'name': 'Downtown', 'stacked': 1, 'annoline1': 'Downtown', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.98346337431099, 40.69084402109802, -73.98346337431099, 40.69084402109802]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.88', 'geometry': {'type': 'Point', 'coordinates': [-73.98374824115798, 40.685682912091444]}, 'geometry_name': 'geom', 'properties': {'name': 'Boerum Hill', 'stacked': 2, 'annoline1': 'Boerum', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.98374824115798, 40.685682912091444, -73.98374824115798, 40.685682912091444]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.89', 'geometry': {'type': 'Point', 'coordinates': [-73.95489867077713, 40.658420017469815]}, 'geometry_name': 'geom', 'properties': {'name': 'Prospect Lefferts Gardens', 'stacked': 3, 'annoline1': 'Prospect', 'annoline2': 'Lefferts', 'annoline3': 'Gardens', 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95489867077713, 40.658420017469815, -73.95489867077713, 40.658420017469815]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.90', 'geometry': {'type': 'Point', 'coordinates': [-73.91306831787395, 40.678402554795355]}, 'geometry_name': 'geom', 'properties': {'name': 'Ocean Hill', 'stacked': 2, 'annoline1': 'Ocean', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.91306831787395, 40.678402554795355, -73.91306831787395, 40.678402554795355]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.91', 'geometry': {'type': 'Point', 'coordinates': [-73.86797598081334, 40.67856995727479]}, 'geometry_name': 'geom', 'properties': {'name': 'City Line', 'stacked': 2, 'annoline1': 'City', 'annoline2': 'Line', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.86797598081334, 40.67856995727479, -73.86797598081334, 40.67856995727479]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.92', 'geometry': {'type': 'Point', 'coordinates': [-73.89855633630317, 40.61514955045308]}, 'geometry_name': 'geom', 'properties': {'name': 'Bergen Beach', 'stacked': 2, 'annoline1': 'Bergen', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.89855633630317, 40.61514955045308, -73.89855633630317, 40.61514955045308]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.93', 'geometry': {'type': 'Point', 'coordinates': [-73.95759523489838, 40.62559589869843]}, 'geometry_name': 'geom', 'properties': {'name': 'Midwood', 'stacked': 1, 'annoline1': 'Midwood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95759523489838, 40.62559589869843, -73.95759523489838, 40.62559589869843]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.94', 'geometry': {'type': 'Point', 'coordinates': [-73.96261316716048, 40.647008603185185]}, 'geometry_name': 'geom', 'properties': {'name': 'Prospect Park South', 'stacked': 2, 'annoline1': 'Prospect', 'annoline2': 'Park South', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.96261316716048, 40.647008603185185, -73.96261316716048, 40.647008603185185]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.95', 'geometry': {'type': 'Point', 'coordinates': [-73.91607483951324, 40.62384524478419]}, 'geometry_name': 'geom', 'properties': {'name': 'Georgetown', 'stacked': 1, 'annoline1': 'Georgetown', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.91607483951324, 40.62384524478419, -73.91607483951324, 40.62384524478419]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.96', 'geometry': {'type': 'Point', 'coordinates': [-73.93885815269195, 40.70849241041548]}, 'geometry_name': 'geom', 'properties': {'name': 'East Williamsburg', 'stacked': 2, 'annoline1': 'East', 'annoline2': 'Williamsburg', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.93885815269195, 40.70849241041548, -73.93885815269195, 40.70849241041548]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.97', 'geometry': {'type': 'Point', 'coordinates': [-73.95880857587582, 40.714822906532014]}, 'geometry_name': 'geom', 'properties': {'name': 'North Side', 'stacked': 1, 'annoline1': 'North Side', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95880857587582, 40.714822906532014, -73.95880857587582, 40.714822906532014]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.98', 'geometry': {'type': 'Point', 'coordinates': [-73.95800095153331, 40.71086147265064]}, 'geometry_name': 'geom', 'properties': {'name': 'South Side', 'stacked': 1, 'annoline1': 'South Side', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95800095153331, 40.71086147265064, -73.95800095153331, 40.71086147265064]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.99', 'geometry': {'type': 'Point', 'coordinates': [-73.96836678035541, 40.61305976667942]}, 'geometry_name': 'geom', 'properties': {'name': 'Ocean Parkway', 'stacked': 2, 'annoline1': 'Ocean', 'annoline2': 'Parkway', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.96836678035541, 40.61305976667942, -73.96836678035541, 40.61305976667942]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.100', 'geometry': {'type': 'Point', 'coordinates': [-74.03197914537984, 40.61476812694226]}, 'geometry_name': 'geom', 'properties': {'name': 'Fort Hamilton', 'stacked': 2, 'annoline1': 'Fort', 'annoline2': 'Hamilton', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-74.03197914537984, 40.61476812694226, -74.03197914537984, 40.61476812694226]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.101', 'geometry': {'type': 'Point', 'coordinates': [-73.99427936255978, 40.71561842231432]}, 'geometry_name': 'geom', 'properties': {'name': 'Chinatown', 'stacked': 1, 'annoline1': 'Chinatown', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.99427936255978, 40.71561842231432, -73.99427936255978, 40.71561842231432]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.102', 'geometry': {'type': 'Point', 'coordinates': [-73.93690027985234, 40.85190252555305]}, 'geometry_name': 'geom', 'properties': {'name': 'Washington Heights', 'stacked': 2, 'annoline1': 'Washington', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.93690027985234, 40.85190252555305, -73.93690027985234, 40.85190252555305]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.103', 'geometry': {'type': 'Point', 'coordinates': [-73.92121042203897, 40.86768396449915]}, 'geometry_name': 'geom', 'properties': {'name': 'Inwood', 'stacked': 1, 'annoline1': 'Inwood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.92121042203897, 40.86768396449915, -73.92121042203897, 40.86768396449915]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.104', 'geometry': {'type': 'Point', 'coordinates': [-73.94968791883366, 40.823604284811935]}, 'geometry_name': 'geom', 'properties': {'name': 'Hamilton Heights', 'stacked': 2, 'annoline1': 'Hamilton', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.94968791883366, 40.823604284811935, -73.94968791883366, 40.823604284811935]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.105', 'geometry': {'type': 'Point', 'coordinates': [-73.9573853935188, 40.8169344294978]}, 'geometry_name': 'geom', 'properties': {'name': 'Manhattanville', 'stacked': 2, 'annoline1': 'Manhattanville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.9573853935188, 40.8169344294978, -73.9573853935188, 40.8169344294978]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.106', 'geometry': {'type': 'Point', 'coordinates': [-73.94321112603905, 40.81597606742414]}, 'geometry_name': 'geom', 'properties': {'name': 'Central Harlem', 'stacked': 2, 'annoline1': 'Central', 'annoline2': 'Harlem', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.94321112603905, 40.81597606742414, -73.94321112603905, 40.81597606742414]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.107', 'geometry': {'type': 'Point', 'coordinates': [-73.94418223148524, 40.79224946663033]}, 'geometry_name': 'geom', 'properties': {'name': 'East Harlem', 'stacked': 2, 'annoline1': 'East', 'annoline2': 'Harlem', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.94418223148524, 40.79224946663033, -73.94418223148524, 40.79224946663033]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.108', 'geometry': {'type': 'Point', 'coordinates': [-73.96050763135, 40.775638573301805]}, 'geometry_name': 'geom', 'properties': {'name': 'Upper East Side', 'stacked': 3, 'annoline1': 'Upper', 'annoline2': 'East', 'annoline3': 'Side', 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.96050763135, 40.775638573301805, -73.96050763135, 40.775638573301805]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.109', 'geometry': {'type': 'Point', 'coordinates': [-73.94711784471826, 40.775929849884875]}, 'geometry_name': 'geom', 'properties': {'name': 'Yorkville', 'stacked': 1, 'annoline1': 'Yorkville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.94711784471826, 40.775929849884875, -73.94711784471826, 40.775929849884875]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.110', 'geometry': {'type': 'Point', 'coordinates': [-73.9588596881376, 40.76811265828733]}, 'geometry_name': 'geom', 'properties': {'name': 'Lenox Hill', 'stacked': 2, 'annoline1': 'Lenox', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.9588596881376, 40.76811265828733, -73.9588596881376, 40.76811265828733]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.111', 'geometry': {'type': 'Point', 'coordinates': [-73.94916769227953, 40.76215960576283]}, 'geometry_name': 'geom', 'properties': {'name': 'Roosevelt Island', 'stacked': 1, 'annoline1': 'Roosevelt Island', 'annoline2': None, 'annoline3': None, 'annoangle': 56, 'borough': 'Manhattan', 'bbox': [-73.94916769227953, 40.76215960576283, -73.94916769227953, 40.76215960576283]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.112', 'geometry': {'type': 'Point', 'coordinates': [-73.97705923630603, 40.787657998534854]}, 'geometry_name': 'geom', 'properties': {'name': 'Upper West Side', 'stacked': 3, 'annoline1': 'Upper', 'annoline2': 'West', 'annoline3': 'Side', 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.97705923630603, 40.787657998534854, -73.97705923630603, 40.787657998534854]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.113', 'geometry': {'type': 'Point', 'coordinates': [-73.98533777001262, 40.77352888942166]}, 'geometry_name': 'geom', 'properties': {'name': 'Lincoln Square', 'stacked': 2, 'annoline1': 'Lincoln', 'annoline2': 'Square', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.98533777001262, 40.77352888942166, -73.98533777001262, 40.77352888942166]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.114', 'geometry': {'type': 'Point', 'coordinates': [-73.99611936309479, 40.75910089146212]}, 'geometry_name': 'geom', 'properties': {'name': 'Clinton', 'stacked': 1, 'annoline1': 'Clinton', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.99611936309479, 40.75910089146212, -73.99611936309479, 40.75910089146212]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.115', 'geometry': {'type': 'Point', 'coordinates': [-73.98166882730304, 40.75469110270623]}, 'geometry_name': 'geom', 'properties': {'name': 'Midtown', 'stacked': 1, 'annoline1': 'Midtown', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.98166882730304, 40.75469110270623, -73.98166882730304, 40.75469110270623]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.116', 'geometry': {'type': 'Point', 'coordinates': [-73.97833207924127, 40.748303077252174]}, 'geometry_name': 'geom', 'properties': {'name': 'Murray Hill', 'stacked': 2, 'annoline1': 'Murray', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.97833207924127, 40.748303077252174, -73.97833207924127, 40.748303077252174]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.117', 'geometry': {'type': 'Point', 'coordinates': [-74.00311633472813, 40.744034706747975]}, 'geometry_name': 'geom', 'properties': {'name': 'Chelsea', 'stacked': 1, 'annoline1': 'Chelsea', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-74.00311633472813, 40.744034706747975, -74.00311633472813, 40.744034706747975]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.118', 'geometry': {'type': 'Point', 'coordinates': [-73.99991402945902, 40.72693288536128]}, 'geometry_name': 'geom', 'properties': {'name': 'Greenwich Village', 'stacked': 2, 'annoline1': 'Greenwich', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.99991402945902, 40.72693288536128, -73.99991402945902, 40.72693288536128]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.119', 'geometry': {'type': 'Point', 'coordinates': [-73.98222616506416, 40.727846777270244]}, 'geometry_name': 'geom', 'properties': {'name': 'East Village', 'stacked': 2, 'annoline1': 'East', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.98222616506416, 40.727846777270244, -73.98222616506416, 40.727846777270244]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.120', 'geometry': {'type': 'Point', 'coordinates': [-73.98089031999291, 40.71780674892765]}, 'geometry_name': 'geom', 'properties': {'name': 'Lower East Side', 'stacked': 3, 'annoline1': 'Lower', 'annoline2': 'East', 'annoline3': 'Side', 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.98089031999291, 40.71780674892765, -73.98089031999291, 40.71780674892765]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.121', 'geometry': {'type': 'Point', 'coordinates': [-74.01068328559087, 40.721521967443216]}, 'geometry_name': 'geom', 'properties': {'name': 'Tribeca', 'stacked': 1, 'annoline1': 'Tribeca', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-74.01068328559087, 40.721521967443216, -74.01068328559087, 40.721521967443216]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.122', 'geometry': {'type': 'Point', 'coordinates': [-73.99730467208073, 40.71932379395907]}, 'geometry_name': 'geom', 'properties': {'name': 'Little Italy', 'stacked': 2, 'annoline1': 'Little', 'annoline2': 'Italy', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.99730467208073, 40.71932379395907, -73.99730467208073, 40.71932379395907]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.123', 'geometry': {'type': 'Point', 'coordinates': [-74.00065666959759, 40.72218384131794]}, 'geometry_name': 'geom', 'properties': {'name': 'Soho', 'stacked': 1, 'annoline1': 'Soho', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-74.00065666959759, 40.72218384131794, -74.00065666959759, 40.72218384131794]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.124', 'geometry': {'type': 'Point', 'coordinates': [-74.00617998126812, 40.73443393572434]}, 'geometry_name': 'geom', 'properties': {'name': 'West Village', 'stacked': 2, 'annoline1': 'West', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-74.00617998126812, 40.73443393572434, -74.00617998126812, 40.73443393572434]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.125', 'geometry': {'type': 'Point', 'coordinates': [-73.96428617740655, 40.797307041702865]}, 'geometry_name': 'geom', 'properties': {'name': 'Manhattan Valley', 'stacked': 2, 'annoline1': 'Manhattan', 'annoline2': 'Valley', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.96428617740655, 40.797307041702865, -73.96428617740655, 40.797307041702865]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.126', 'geometry': {'type': 'Point', 'coordinates': [-73.96389627905332, 40.807999738165826]}, 'geometry_name': 'geom', 'properties': {'name': 'Morningside Heights', 'stacked': 2, 'annoline1': 'Morningside', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.96389627905332, 40.807999738165826, -73.96389627905332, 40.807999738165826]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.127', 'geometry': {'type': 'Point', 'coordinates': [-73.98137594833541, 40.737209832715]}, 'geometry_name': 'geom', 'properties': {'name': 'Gramercy', 'stacked': 1, 'annoline1': 'Gramercy', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.98137594833541, 40.737209832715, -73.98137594833541, 40.737209832715]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.128', 'geometry': {'type': 'Point', 'coordinates': [-74.01686930508617, 40.71193198394565]}, 'geometry_name': 'geom', 'properties': {'name': 'Battery Park City', 'stacked': 3, 'annoline1': 'Battery', 'annoline2': 'Park', 'annoline3': 'City', 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-74.01686930508617, 40.71193198394565, -74.01686930508617, 40.71193198394565]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.129', 'geometry': {'type': 'Point', 'coordinates': [-74.0106654452127, 40.70710710727048]}, 'geometry_name': 'geom', 'properties': {'name': 'Financial District', 'stacked': 2, 'annoline1': 'Financial', 'annoline2': 'District', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-74.0106654452127, 40.70710710727048, -74.0106654452127, 40.70710710727048]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.130', 'geometry': {'type': 'Point', 'coordinates': [-73.91565374304234, 40.76850859335492]}, 'geometry_name': 'geom', 'properties': {'name': 'Astoria', 'stacked': 1, 'annoline1': 'Astoria', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.91565374304234, 40.76850859335492, -73.91565374304234, 40.76850859335492]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.131', 'geometry': {'type': 'Point', 'coordinates': [-73.90184166838284, 40.74634908860222]}, 'geometry_name': 'geom', 'properties': {'name': 'Woodside', 'stacked': 1, 'annoline1': 'Woodside', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.90184166838284, 40.74634908860222, -73.90184166838284, 40.74634908860222]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.132', 'geometry': {'type': 'Point', 'coordinates': [-73.88282109164365, 40.75198138007367]}, 'geometry_name': 'geom', 'properties': {'name': 'Jackson Heights', 'stacked': 2, 'annoline1': 'Jackson', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.88282109164365, 40.75198138007367, -73.88282109164365, 40.75198138007367]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.133', 'geometry': {'type': 'Point', 'coordinates': [-73.88165622288388, 40.744048505122024]}, 'geometry_name': 'geom', 'properties': {'name': 'Elmhurst', 'stacked': 1, 'annoline1': 'Elmhurst', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.88165622288388, 40.744048505122024, -73.88165622288388, 40.744048505122024]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.134', 'geometry': {'type': 'Point', 'coordinates': [-73.8381376460028, 40.65422527738487]}, 'geometry_name': 'geom', 'properties': {'name': 'Howard Beach', 'stacked': 2, 'annoline1': 'Howard', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.8381376460028, 40.65422527738487, -73.8381376460028, 40.65422527738487]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.135', 'geometry': {'type': 'Point', 'coordinates': [-73.85682497345258, 40.74238175015667]}, 'geometry_name': 'geom', 'properties': {'name': 'Corona', 'stacked': 1, 'annoline1': 'Corona', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.85682497345258, 40.74238175015667, -73.85682497345258, 40.74238175015667]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.136', 'geometry': {'type': 'Point', 'coordinates': [-73.84447500788983, 40.72526378216503]}, 'geometry_name': 'geom', 'properties': {'name': 'Forest Hills', 'stacked': 2, 'annoline1': 'Forest', 'annoline2': 'Hills', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.84447500788983, 40.72526378216503, -73.84447500788983, 40.72526378216503]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.137', 'geometry': {'type': 'Point', 'coordinates': [-73.82981905825703, 40.7051790354148]}, 'geometry_name': 'geom', 'properties': {'name': 'Kew Gardens', 'stacked': 2, 'annoline1': 'Kew', 'annoline2': 'Gardens', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.82981905825703, 40.7051790354148, -73.82981905825703, 40.7051790354148]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.138', 'geometry': {'type': 'Point', 'coordinates': [-73.83183321446887, 40.69794731471763]}, 'geometry_name': 'geom', 'properties': {'name': 'Richmond Hill', 'stacked': 2, 'annoline1': 'Richmond', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.83183321446887, 40.69794731471763, -73.83183321446887, 40.69794731471763]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.139', 'geometry': {'type': 'Point', 'coordinates': [-73.83177300329582, 40.76445419697846]}, 'geometry_name': 'geom', 'properties': {'name': 'Flushing', 'stacked': 1, 'annoline1': 'Flushing', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.83177300329582, 40.76445419697846, -73.83177300329582, 40.76445419697846]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.140', 'geometry': {'type': 'Point', 'coordinates': [-73.93920223915505, 40.75021734610528]}, 'geometry_name': 'geom', 'properties': {'name': 'Long Island City', 'stacked': 3, 'annoline1': 'Long', 'annoline2': 'Island', 'annoline3': 'City', 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.93920223915505, 40.75021734610528, -73.93920223915505, 40.75021734610528]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.141', 'geometry': {'type': 'Point', 'coordinates': [-73.92691617561577, 40.74017628351924]}, 'geometry_name': 'geom', 'properties': {'name': 'Sunnyside', 'stacked': 1, 'annoline1': 'Sunnyside', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.92691617561577, 40.74017628351924, -73.92691617561577, 40.74017628351924]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.142', 'geometry': {'type': 'Point', 'coordinates': [-73.86704147658772, 40.76407323883091]}, 'geometry_name': 'geom', 'properties': {'name': 'East Elmhurst', 'stacked': 2, 'annoline1': 'East', 'annoline2': 'Elmhurst', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.86704147658772, 40.76407323883091, -73.86704147658772, 40.76407323883091]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.143', 'geometry': {'type': 'Point', 'coordinates': [-73.89621713626859, 40.725427374093606]}, 'geometry_name': 'geom', 'properties': {'name': 'Maspeth', 'stacked': 1, 'annoline1': 'Maspeth', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.89621713626859, 40.725427374093606, -73.89621713626859, 40.725427374093606]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.144', 'geometry': {'type': 'Point', 'coordinates': [-73.90143517559589, 40.70832315613858]}, 'geometry_name': 'geom', 'properties': {'name': 'Ridgewood', 'stacked': 1, 'annoline1': 'Ridgewood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.90143517559589, 40.70832315613858, -73.90143517559589, 40.70832315613858]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.145', 'geometry': {'type': 'Point', 'coordinates': [-73.87074167435605, 40.70276242967838]}, 'geometry_name': 'geom', 'properties': {'name': 'Glendale', 'stacked': 1, 'annoline1': 'Glendale', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.87074167435605, 40.70276242967838, -73.87074167435605, 40.70276242967838]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.146', 'geometry': {'type': 'Point', 'coordinates': [-73.8578268690537, 40.72897409480735]}, 'geometry_name': 'geom', 'properties': {'name': 'Rego Park', 'stacked': 1, 'annoline1': 'Rego Park', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.8578268690537, 40.72897409480735, -73.8578268690537, 40.72897409480735]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.147', 'geometry': {'type': 'Point', 'coordinates': [-73.8581104655432, 40.68988687915789]}, 'geometry_name': 'geom', 'properties': {'name': 'Woodhaven', 'stacked': 1, 'annoline1': 'Woodhaven', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.8581104655432, 40.68988687915789, -73.8581104655432, 40.68988687915789]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.148', 'geometry': {'type': 'Point', 'coordinates': [-73.84320266173447, 40.680708468265415]}, 'geometry_name': 'geom', 'properties': {'name': 'Ozone Park', 'stacked': 1, 'annoline1': 'Ozone Park', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.84320266173447, 40.680708468265415, -73.84320266173447, 40.680708468265415]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.149', 'geometry': {'type': 'Point', 'coordinates': [-73.80986478649041, 40.66854957767195]}, 'geometry_name': 'geom', 'properties': {'name': 'South Ozone Park', 'stacked': 2, 'annoline1': 'South', 'annoline2': 'Ozone Park', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.80986478649041, 40.66854957767195, -73.80986478649041, 40.66854957767195]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.150', 'geometry': {'type': 'Point', 'coordinates': [-73.84304528896125, 40.784902749260205]}, 'geometry_name': 'geom', 'properties': {'name': 'College Point', 'stacked': 2, 'annoline1': 'College', 'annoline2': 'Point', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.84304528896125, 40.784902749260205, -73.84304528896125, 40.784902749260205]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.151', 'geometry': {'type': 'Point', 'coordinates': [-73.81420216610863, 40.78129076602694]}, 'geometry_name': 'geom', 'properties': {'name': 'Whitestone', 'stacked': 1, 'annoline1': 'Whitestone', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.81420216610863, 40.78129076602694, -73.81420216610863, 40.78129076602694]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.152', 'geometry': {'type': 'Point', 'coordinates': [-73.7742736306867, 40.76604063281064]}, 'geometry_name': 'geom', 'properties': {'name': 'Bayside', 'stacked': 1, 'annoline1': 'Bayside', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.7742736306867, 40.76604063281064, -73.7742736306867, 40.76604063281064]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.153', 'geometry': {'type': 'Point', 'coordinates': [-73.79176243728061, 40.76172954903262]}, 'geometry_name': 'geom', 'properties': {'name': 'Auburndale', 'stacked': 1, 'annoline1': 'Auburndale', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.79176243728061, 40.76172954903262, -73.79176243728061, 40.76172954903262]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.154', 'geometry': {'type': 'Point', 'coordinates': [-73.7388977558074, 40.7708261928267]}, 'geometry_name': 'geom', 'properties': {'name': 'Little Neck', 'stacked': 2, 'annoline1': 'Little', 'annoline2': 'Neck', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.7388977558074, 40.7708261928267, -73.7388977558074, 40.7708261928267]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.155', 'geometry': {'type': 'Point', 'coordinates': [-73.7424982072733, 40.76684609790763]}, 'geometry_name': 'geom', 'properties': {'name': 'Douglaston', 'stacked': 1, 'annoline1': 'Douglaston', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.7424982072733, 40.76684609790763, -73.7424982072733, 40.76684609790763]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.156', 'geometry': {'type': 'Point', 'coordinates': [-73.71548118999145, 40.74944079974332]}, 'geometry_name': 'geom', 'properties': {'name': 'Glen Oaks', 'stacked': 2, 'annoline1': 'Glen', 'annoline2': 'Oaks', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.71548118999145, 40.74944079974332, -73.71548118999145, 40.74944079974332]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.157', 'geometry': {'type': 'Point', 'coordinates': [-73.72012814826903, 40.72857318176675]}, 'geometry_name': 'geom', 'properties': {'name': 'Bellerose', 'stacked': 1, 'annoline1': 'Bellerose', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.72012814826903, 40.72857318176675, -73.72012814826903, 40.72857318176675]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.158', 'geometry': {'type': 'Point', 'coordinates': [-73.82087764933566, 40.722578244228046]}, 'geometry_name': 'geom', 'properties': {'name': 'Kew Gardens Hills', 'stacked': 3, 'annoline1': 'Kew', 'annoline2': 'Gardens', 'annoline3': 'Hills', 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.82087764933566, 40.722578244228046, -73.82087764933566, 40.722578244228046]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.159', 'geometry': {'type': 'Point', 'coordinates': [-73.78271337003264, 40.7343944653313]}, 'geometry_name': 'geom', 'properties': {'name': 'Fresh Meadows', 'stacked': 2, 'annoline1': 'Fresh', 'annoline2': 'Meadows', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.78271337003264, 40.7343944653313, -73.78271337003264, 40.7343944653313]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.160', 'geometry': {'type': 'Point', 'coordinates': [-73.81174822458634, 40.71093547252271]}, 'geometry_name': 'geom', 'properties': {'name': 'Briarwood', 'stacked': 1, 'annoline1': 'Briarwood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.81174822458634, 40.71093547252271, -73.81174822458634, 40.71093547252271]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.161', 'geometry': {'type': 'Point', 'coordinates': [-73.79690165888289, 40.70465736068717]}, 'geometry_name': 'geom', 'properties': {'name': 'Jamaica Center', 'stacked': 2, 'annoline1': 'Jamaica', 'annoline2': 'Center', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.79690165888289, 40.70465736068717, -73.79690165888289, 40.70465736068717]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.162', 'geometry': {'type': 'Point', 'coordinates': [-73.75494976234332, 40.74561857141855]}, 'geometry_name': 'geom', 'properties': {'name': 'Oakland Gardens', 'stacked': 2, 'annoline1': 'Oakland', 'annoline2': 'Gardens', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.75494976234332, 40.74561857141855, -73.75494976234332, 40.74561857141855]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.163', 'geometry': {'type': 'Point', 'coordinates': [-73.73871484578424, 40.718893092167356]}, 'geometry_name': 'geom', 'properties': {'name': 'Queens Village', 'stacked': 2, 'annoline1': 'Queens', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.73871484578424, 40.718893092167356, -73.73871484578424, 40.718893092167356]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.164', 'geometry': {'type': 'Point', 'coordinates': [-73.75925009335594, 40.71124344191904]}, 'geometry_name': 'geom', 'properties': {'name': 'Hollis', 'stacked': 1, 'annoline1': 'Hollis', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.75925009335594, 40.71124344191904, -73.75925009335594, 40.71124344191904]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.165', 'geometry': {'type': 'Point', 'coordinates': [-73.7904261313554, 40.696911253789885]}, 'geometry_name': 'geom', 'properties': {'name': 'South Jamaica', 'stacked': 1, 'annoline1': 'South Jamaica', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.7904261313554, 40.696911253789885, -73.7904261313554, 40.696911253789885]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.166', 'geometry': {'type': 'Point', 'coordinates': [-73.75867603727717, 40.69444538522359]}, 'geometry_name': 'geom', 'properties': {'name': 'St. Albans', 'stacked': 1, 'annoline1': 'St. Albans', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.75867603727717, 40.69444538522359, -73.75867603727717, 40.69444538522359]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.167', 'geometry': {'type': 'Point', 'coordinates': [-73.77258787620906, 40.67521139591733]}, 'geometry_name': 'geom', 'properties': {'name': 'Rochdale', 'stacked': 1, 'annoline1': 'Rochdale', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.77258787620906, 40.67521139591733, -73.77258787620906, 40.67521139591733]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.168', 'geometry': {'type': 'Point', 'coordinates': [-73.76042092682287, 40.666230490368584]}, 'geometry_name': 'geom', 'properties': {'name': 'Springfield Gardens', 'stacked': 2, 'annoline1': 'Springfield', 'annoline2': 'Gardens', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.76042092682287, 40.666230490368584, -73.76042092682287, 40.666230490368584]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.169', 'geometry': {'type': 'Point', 'coordinates': [-73.73526873708026, 40.692774639160845]}, 'geometry_name': 'geom', 'properties': {'name': 'Cambria Heights', 'stacked': 2, 'annoline1': 'Cambria', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.73526873708026, 40.692774639160845, -73.73526873708026, 40.692774639160845]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.170', 'geometry': {'type': 'Point', 'coordinates': [-73.73526079428278, 40.659816433428084]}, 'geometry_name': 'geom', 'properties': {'name': 'Rosedale', 'stacked': 1, 'annoline1': 'Rosedale', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.73526079428278, 40.659816433428084, -73.73526079428278, 40.659816433428084]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.171', 'geometry': {'type': 'Point', 'coordinates': [-73.75497968043872, 40.603134432500894]}, 'geometry_name': 'geom', 'properties': {'name': 'Far Rockaway', 'stacked': 2, 'annoline1': 'Far Rockaway', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.75497968043872, 40.603134432500894, -73.75497968043872, 40.603134432500894]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.172', 'geometry': {'type': 'Point', 'coordinates': [-73.8200548911032, 40.60302658351238]}, 'geometry_name': 'geom', 'properties': {'name': 'Broad Channel', 'stacked': 2, 'annoline1': 'Broad', 'annoline2': 'Channel', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.8200548911032, 40.60302658351238, -73.8200548911032, 40.60302658351238]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.173', 'geometry': {'type': 'Point', 'coordinates': [-73.92551196994168, 40.55740128845452]}, 'geometry_name': 'geom', 'properties': {'name': 'Breezy Point', 'stacked': 2, 'annoline1': 'Breezy', 'annoline2': 'Point', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.92551196994168, 40.55740128845452, -73.92551196994168, 40.55740128845452]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.174', 'geometry': {'type': 'Point', 'coordinates': [-73.90228960391673, 40.775923015642896]}, 'geometry_name': 'geom', 'properties': {'name': 'Steinway', 'stacked': 1, 'annoline1': 'Steinway', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.90228960391673, 40.775923015642896, -73.90228960391673, 40.775923015642896]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.175', 'geometry': {'type': 'Point', 'coordinates': [-73.80436451720988, 40.79278140360048]}, 'geometry_name': 'geom', 'properties': {'name': 'Beechhurst', 'stacked': 1, 'annoline1': 'Beechhurst', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.80436451720988, 40.79278140360048, -73.80436451720988, 40.79278140360048]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.176', 'geometry': {'type': 'Point', 'coordinates': [-73.7768022262158, 40.782842806245554]}, 'geometry_name': 'geom', 'properties': {'name': 'Bay Terrace', 'stacked': 2, 'annoline1': 'Bay', 'annoline2': 'Terrace', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.7768022262158, 40.782842806245554, -73.7768022262158, 40.782842806245554]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.177', 'geometry': {'type': 'Point', 'coordinates': [-73.77613282391705, 40.595641807368494]}, 'geometry_name': 'geom', 'properties': {'name': 'Edgemere', 'stacked': 1, 'annoline1': 'Edgemere', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.77613282391705, 40.595641807368494, -73.77613282391705, 40.595641807368494]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.178', 'geometry': {'type': 'Point', 'coordinates': [-73.79199233136943, 40.58914394372971]}, 'geometry_name': 'geom', 'properties': {'name': 'Arverne', 'stacked': 1, 'annoline1': 'Arverne', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.79199233136943, 40.58914394372971, -73.79199233136943, 40.58914394372971]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.179', 'geometry': {'type': 'Point', 'coordinates': [-73.82236121088751, 40.582801696845586]}, 'geometry_name': 'geom', 'properties': {'name': 'Rockaway Beach', 'stacked': 2, 'annoline1': 'Rockaway', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.82236121088751, 40.582801696845586, -73.82236121088751, 40.582801696845586]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.180', 'geometry': {'type': 'Point', 'coordinates': [-73.85754672410827, 40.572036730217015]}, 'geometry_name': 'geom', 'properties': {'name': 'Neponsit', 'stacked': 1, 'annoline1': 'Neponsit', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.85754672410827, 40.572036730217015, -73.85754672410827, 40.572036730217015]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.181', 'geometry': {'type': 'Point', 'coordinates': [-73.81276269135866, 40.764126122614066]}, 'geometry_name': 'geom', 'properties': {'name': 'Murray Hill', 'stacked': 2, 'annoline1': 'Murray', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.81276269135866, 40.764126122614066, -73.81276269135866, 40.764126122614066]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.182', 'geometry': {'type': 'Point', 'coordinates': [-73.70884705889246, 40.741378421945434]}, 'geometry_name': 'geom', 'properties': {'name': 'Floral Park', 'stacked': 1, 'annoline1': 'Floral Park', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.70884705889246, 40.741378421945434, -73.70884705889246, 40.741378421945434]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.183', 'geometry': {'type': 'Point', 'coordinates': [-73.76714166714729, 40.7209572076444]}, 'geometry_name': 'geom', 'properties': {'name': 'Holliswood', 'stacked': 1, 'annoline1': 'Holliswood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.76714166714729, 40.7209572076444, -73.76714166714729, 40.7209572076444]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.184', 'geometry': {'type': 'Point', 'coordinates': [-73.7872269693666, 40.71680483014613]}, 'geometry_name': 'geom', 'properties': {'name': 'Jamaica Estates', 'stacked': 2, 'annoline1': 'Jamaica', 'annoline2': 'Estates', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.7872269693666, 40.71680483014613, -73.7872269693666, 40.71680483014613]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.185', 'geometry': {'type': 'Point', 'coordinates': [-73.82580915110559, 40.7445723092867]}, 'geometry_name': 'geom', 'properties': {'name': 'Queensboro Hill', 'stacked': 2, 'annoline1': 'Queensboro', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.82580915110559, 40.7445723092867, -73.82580915110559, 40.7445723092867]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.186', 'geometry': {'type': 'Point', 'coordinates': [-73.79760300912672, 40.723824901829204]}, 'geometry_name': 'geom', 'properties': {'name': 'Hillcrest', 'stacked': 1, 'annoline1': 'Hillcrest', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.79760300912672, 40.723824901829204, -73.79760300912672, 40.723824901829204]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.187', 'geometry': {'type': 'Point', 'coordinates': [-73.93157506072878, 40.761704526054146]}, 'geometry_name': 'geom', 'properties': {'name': 'Ravenswood', 'stacked': 1, 'annoline1': 'Ravenswood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.93157506072878, 40.761704526054146, -73.93157506072878, 40.761704526054146]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.188', 'geometry': {'type': 'Point', 'coordinates': [-73.84963782402441, 40.66391841925139]}, 'geometry_name': 'geom', 'properties': {'name': 'Lindenwood', 'stacked': 1, 'annoline1': 'Lindenwood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.84963782402441, 40.66391841925139, -73.84963782402441, 40.66391841925139]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.189', 'geometry': {'type': 'Point', 'coordinates': [-73.74025607989822, 40.66788389660247]}, 'geometry_name': 'geom', 'properties': {'name': 'Laurelton', 'stacked': 1, 'annoline1': 'Laurelton', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.74025607989822, 40.66788389660247, -73.74025607989822, 40.66788389660247]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.190', 'geometry': {'type': 'Point', 'coordinates': [-73.8625247141374, 40.736074570830795]}, 'geometry_name': 'geom', 'properties': {'name': 'Lefrak City', 'stacked': 2, 'annoline1': 'Lefrak', 'annoline2': 'City', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.8625247141374, 40.736074570830795, -73.8625247141374, 40.736074570830795]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.191', 'geometry': {'type': 'Point', 'coordinates': [-73.8540175039252, 40.57615556543109]}, 'geometry_name': 'geom', 'properties': {'name': 'Belle Harbor', 'stacked': 1, 'annoline1': 'Belle Harbor', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.8540175039252, 40.57615556543109, -73.8540175039252, 40.57615556543109]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.192', 'geometry': {'type': 'Point', 'coordinates': [-73.84153370226186, 40.58034295646131]}, 'geometry_name': 'geom', 'properties': {'name': 'Rockaway Park', 'stacked': 1, 'annoline1': 'Rockaway Park', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.84153370226186, 40.58034295646131, -73.84153370226186, 40.58034295646131]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.193', 'geometry': {'type': 'Point', 'coordinates': [-73.79664750844047, 40.59771061565768]}, 'geometry_name': 'geom', 'properties': {'name': 'Somerville', 'stacked': 1, 'annoline1': 'Somerville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.79664750844047, 40.59771061565768, -73.79664750844047, 40.59771061565768]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.194', 'geometry': {'type': 'Point', 'coordinates': [-73.75175310731153, 40.66000322733613]}, 'geometry_name': 'geom', 'properties': {'name': 'Brookville', 'stacked': 1, 'annoline1': 'Brookville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.75175310731153, 40.66000322733613, -73.75175310731153, 40.66000322733613]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.195', 'geometry': {'type': 'Point', 'coordinates': [-73.73889198912481, 40.73301404027834]}, 'geometry_name': 'geom', 'properties': {'name': 'Bellaire', 'stacked': 1, 'annoline1': 'Bellaire', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.73889198912481, 40.73301404027834, -73.73889198912481, 40.73301404027834]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.196', 'geometry': {'type': 'Point', 'coordinates': [-73.85751790676447, 40.7540709990489]}, 'geometry_name': 'geom', 'properties': {'name': 'North Corona', 'stacked': 2, 'annoline1': 'North', 'annoline2': 'Corona', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.85751790676447, 40.7540709990489, -73.85751790676447, 40.7540709990489]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.197', 'geometry': {'type': 'Point', 'coordinates': [-73.8410221123401, 40.7146110815117]}, 'geometry_name': 'geom', 'properties': {'name': 'Forest Hills Gardens', 'stacked': 3, 'annoline1': 'Forest', 'annoline2': 'Hills', 'annoline3': 'Gardens', 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.8410221123401, 40.7146110815117, -73.8410221123401, 40.7146110815117]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.198', 'geometry': {'type': 'Point', 'coordinates': [-74.07935312512797, 40.6449815710044]}, 'geometry_name': 'geom', 'properties': {'name': 'St. George', 'stacked': 2, 'annoline1': 'St.', 'annoline2': 'George', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.07935312512797, 40.6449815710044, -74.07935312512797, 40.6449815710044]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.199', 'geometry': {'type': 'Point', 'coordinates': [-74.08701650516625, 40.64061455913511]}, 'geometry_name': 'geom', 'properties': {'name': 'New Brighton', 'stacked': 2, 'annoline1': 'New', 'annoline2': 'Brighton', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.08701650516625, 40.64061455913511, -74.08701650516625, 40.64061455913511]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.200', 'geometry': {'type': 'Point', 'coordinates': [-74.07790192660066, 40.62692762538176]}, 'geometry_name': 'geom', 'properties': {'name': 'Stapleton', 'stacked': 1, 'annoline1': 'Stapleton', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.07790192660066, 40.62692762538176, -74.07790192660066, 40.62692762538176]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.201', 'geometry': {'type': 'Point', 'coordinates': [-74.06980526716141, 40.61530494652761]}, 'geometry_name': 'geom', 'properties': {'name': 'Rosebank', 'stacked': 1, 'annoline1': 'Rosebank', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.06980526716141, 40.61530494652761, -74.06980526716141, 40.61530494652761]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.202', 'geometry': {'type': 'Point', 'coordinates': [-74.1071817826561, 40.63187892654607]}, 'geometry_name': 'geom', 'properties': {'name': 'West Brighton', 'stacked': 2, 'annoline1': 'West', 'annoline2': 'Brighton', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.1071817826561, 40.63187892654607, -74.1071817826561, 40.63187892654607]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.203', 'geometry': {'type': 'Point', 'coordinates': [-74.08724819983729, 40.624184791313006]}, 'geometry_name': 'geom', 'properties': {'name': 'Grymes Hill', 'stacked': 2, 'annoline1': 'Grymes', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.08724819983729, 40.624184791313006, -74.08724819983729, 40.624184791313006]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.204', 'geometry': {'type': 'Point', 'coordinates': [-74.1113288180088, 40.59706851814673]}, 'geometry_name': 'geom', 'properties': {'name': 'Todt Hill', 'stacked': 2, 'annoline1': 'Todt', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.1113288180088, 40.59706851814673, -74.1113288180088, 40.59706851814673]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.205', 'geometry': {'type': 'Point', 'coordinates': [-74.0795529253982, 40.58024741350956]}, 'geometry_name': 'geom', 'properties': {'name': 'South Beach', 'stacked': 2, 'annoline1': 'South', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.0795529253982, 40.58024741350956, -74.0795529253982, 40.58024741350956]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.206', 'geometry': {'type': 'Point', 'coordinates': [-74.12943426797008, 40.63366930554365]}, 'geometry_name': 'geom', 'properties': {'name': 'Port Richmond', 'stacked': 2, 'annoline1': 'Port', 'annoline2': 'Richmond', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.12943426797008, 40.63366930554365, -74.12943426797008, 40.63366930554365]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.207', 'geometry': {'type': 'Point', 'coordinates': [-74.15008537046981, 40.632546390481124]}, 'geometry_name': 'geom', 'properties': {'name': "Mariner's Harbor", 'stacked': 2, 'annoline1': "Mariner's", 'annoline2': 'Harbor', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.15008537046981, 40.632546390481124, -74.15008537046981, 40.632546390481124]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.208', 'geometry': {'type': 'Point', 'coordinates': [-74.17464532993542, 40.63968297845542]}, 'geometry_name': 'geom', 'properties': {'name': 'Port Ivory', 'stacked': 2, 'annoline1': 'Port', 'annoline2': 'Ivory', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.17464532993542, 40.63968297845542, -74.17464532993542, 40.63968297845542]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.209', 'geometry': {'type': 'Point', 'coordinates': [-74.11918058534842, 40.61333593766742]}, 'geometry_name': 'geom', 'properties': {'name': 'Castleton Corners', 'stacked': 2, 'annoline1': 'Castleton', 'annoline2': 'Corners', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.11918058534842, 40.61333593766742, -74.11918058534842, 40.61333593766742]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.210', 'geometry': {'type': 'Point', 'coordinates': [-74.16496031329827, 40.594252379161695]}, 'geometry_name': 'geom', 'properties': {'name': 'New Springville', 'stacked': 2, 'annoline1': 'New', 'annoline2': 'Springville', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.16496031329827, 40.594252379161695, -74.16496031329827, 40.594252379161695]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.211', 'geometry': {'type': 'Point', 'coordinates': [-74.19073717538116, 40.58631375103281]}, 'geometry_name': 'geom', 'properties': {'name': 'Travis', 'stacked': 1, 'annoline1': 'Travis', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.19073717538116, 40.58631375103281, -74.19073717538116, 40.58631375103281]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.212', 'geometry': {'type': 'Point', 'coordinates': [-74.1164794360638, 40.57257231820632]}, 'geometry_name': 'geom', 'properties': {'name': 'New Dorp', 'stacked': 2, 'annoline1': 'New', 'annoline2': 'Dorp', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.1164794360638, 40.57257231820632, -74.1164794360638, 40.57257231820632]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.213', 'geometry': {'type': 'Point', 'coordinates': [-74.12156593771896, 40.5584622432888]}, 'geometry_name': 'geom', 'properties': {'name': 'Oakwood', 'stacked': 1, 'annoline1': 'Oakwood', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.12156593771896, 40.5584622432888, -74.12156593771896, 40.5584622432888]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.214', 'geometry': {'type': 'Point', 'coordinates': [-74.14932381490992, 40.549480228713605]}, 'geometry_name': 'geom', 'properties': {'name': 'Great Kills', 'stacked': 2, 'annoline1': 'Great', 'annoline2': 'Kills', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.14932381490992, 40.549480228713605, -74.14932381490992, 40.549480228713605]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.215', 'geometry': {'type': 'Point', 'coordinates': [-74.1643308041936, 40.542230747450745]}, 'geometry_name': 'geom', 'properties': {'name': 'Eltingville', 'stacked': 1, 'annoline1': 'Eltingville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.1643308041936, 40.542230747450745, -74.1643308041936, 40.542230747450745]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.216', 'geometry': {'type': 'Point', 'coordinates': [-74.17854866165878, 40.53811417474507]}, 'geometry_name': 'geom', 'properties': {'name': 'Annadale', 'stacked': 1, 'annoline1': 'Annadale', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.17854866165878, 40.53811417474507, -74.17854866165878, 40.53811417474507]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.217', 'geometry': {'type': 'Point', 'coordinates': [-74.20524582480326, 40.541967622888755]}, 'geometry_name': 'geom', 'properties': {'name': 'Woodrow', 'stacked': 1, 'annoline1': 'Woodrow', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.20524582480326, 40.541967622888755, -74.20524582480326, 40.541967622888755]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.218', 'geometry': {'type': 'Point', 'coordinates': [-74.24656934235283, 40.50533376115642]}, 'geometry_name': 'geom', 'properties': {'name': 'Tottenville', 'stacked': 1, 'annoline1': 'Tottenville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.24656934235283, 40.50533376115642, -74.24656934235283, 40.50533376115642]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.219', 'geometry': {'type': 'Point', 'coordinates': [-74.08055351790115, 40.637316067110326]}, 'geometry_name': 'geom', 'properties': {'name': 'Tompkinsville', 'stacked': 1, 'annoline1': 'Tompkinsville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.08055351790115, 40.637316067110326, -74.08055351790115, 40.637316067110326]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.220', 'geometry': {'type': 'Point', 'coordinates': [-74.09629029235458, 40.61919310792676]}, 'geometry_name': 'geom', 'properties': {'name': 'Silver Lake', 'stacked': 2, 'annoline1': 'Silver', 'annoline2': 'Lake', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.09629029235458, 40.61919310792676, -74.09629029235458, 40.61919310792676]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.221', 'geometry': {'type': 'Point', 'coordinates': [-74.0971255217853, 40.61276015756489]}, 'geometry_name': 'geom', 'properties': {'name': 'Sunnyside', 'stacked': 1, 'annoline1': 'Sunnyside', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.0971255217853, 40.61276015756489, -74.0971255217853, 40.61276015756489]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.222', 'geometry': {'type': 'Point', 'coordinates': [-73.96101312466779, 40.643675183340974]}, 'geometry_name': 'geom', 'properties': {'name': 'Ditmas Park', 'stacked': 2, 'annoline1': 'Ditmas', 'annoline2': 'Park', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.96101312466779, 40.643675183340974, -73.96101312466779, 40.643675183340974]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.223', 'geometry': {'type': 'Point', 'coordinates': [-73.93718680559314, 40.66094656188111]}, 'geometry_name': 'geom', 'properties': {'name': 'Wingate', 'stacked': 1, 'annoline1': 'Wingate', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.93718680559314, 40.66094656188111, -73.93718680559314, 40.66094656188111]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.224', 'geometry': {'type': 'Point', 'coordinates': [-73.92688212616955, 40.655572313280764]}, 'geometry_name': 'geom', 'properties': {'name': 'Rugby', 'stacked': 1, 'annoline1': 'Rugby', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.92688212616955, 40.655572313280764, -73.92688212616955, 40.655572313280764]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.225', 'geometry': {'type': 'Point', 'coordinates': [-74.08015734936296, 40.60919044434558]}, 'geometry_name': 'geom', 'properties': {'name': 'Park Hill', 'stacked': 2, 'annoline1': 'Park', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.08015734936296, 40.60919044434558, -74.08015734936296, 40.60919044434558]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.226', 'geometry': {'type': 'Point', 'coordinates': [-74.13304143951704, 40.62109047275409]}, 'geometry_name': 'geom', 'properties': {'name': 'Westerleigh', 'stacked': 1, 'annoline1': 'Westerleigh', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.13304143951704, 40.62109047275409, -74.13304143951704, 40.62109047275409]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.227', 'geometry': {'type': 'Point', 'coordinates': [-74.15315246387762, 40.620171512231884]}, 'geometry_name': 'geom', 'properties': {'name': 'Graniteville', 'stacked': 1, 'annoline1': 'Graniteville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.15315246387762, 40.620171512231884, -74.15315246387762, 40.620171512231884]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.228', 'geometry': {'type': 'Point', 'coordinates': [-74.16510420241124, 40.63532509911492]}, 'geometry_name': 'geom', 'properties': {'name': 'Arlington', 'stacked': 1, 'annoline1': 'Arlington', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.16510420241124, 40.63532509911492, -74.16510420241124, 40.63532509911492]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.229', 'geometry': {'type': 'Point', 'coordinates': [-74.06712363225574, 40.596312571276734]}, 'geometry_name': 'geom', 'properties': {'name': 'Arrochar', 'stacked': 1, 'annoline1': 'Arrochar', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.06712363225574, 40.596312571276734, -74.06712363225574, 40.596312571276734]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.230', 'geometry': {'type': 'Point', 'coordinates': [-74.0766743627905, 40.59826835959991]}, 'geometry_name': 'geom', 'properties': {'name': 'Grasmere', 'stacked': 1, 'annoline1': 'Grasmere', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.0766743627905, 40.59826835959991, -74.0766743627905, 40.59826835959991]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.231', 'geometry': {'type': 'Point', 'coordinates': [-74.08751118005578, 40.59632891379513]}, 'geometry_name': 'geom', 'properties': {'name': 'Old Town', 'stacked': 2, 'annoline1': 'Old', 'annoline2': 'Town', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.08751118005578, 40.59632891379513, -74.08751118005578, 40.59632891379513]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.232', 'geometry': {'type': 'Point', 'coordinates': [-74.09639905312521, 40.588672948199275]}, 'geometry_name': 'geom', 'properties': {'name': 'Dongan Hills', 'stacked': 2, 'annoline1': 'Dongan', 'annoline2': 'Hills', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.09639905312521, 40.588672948199275, -74.09639905312521, 40.588672948199275]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.233', 'geometry': {'type': 'Point', 'coordinates': [-74.09348266303591, 40.57352690574283]}, 'geometry_name': 'geom', 'properties': {'name': 'Midland Beach', 'stacked': 2, 'annoline1': 'Midland', 'annoline2': 'Beach', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.09348266303591, 40.57352690574283, -74.09348266303591, 40.57352690574283]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.234', 'geometry': {'type': 'Point', 'coordinates': [-74.10585598545434, 40.57621558711788]}, 'geometry_name': 'geom', 'properties': {'name': 'Grant City', 'stacked': 2, 'annoline1': 'Grant', 'annoline2': 'City', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.10585598545434, 40.57621558711788, -74.10585598545434, 40.57621558711788]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.235', 'geometry': {'type': 'Point', 'coordinates': [-74.10432707469124, 40.56425549307335]}, 'geometry_name': 'geom', 'properties': {'name': 'New Dorp Beach', 'stacked': 3, 'annoline1': 'New', 'annoline2': 'Dorp', 'annoline3': 'Beach', 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.10432707469124, 40.56425549307335, -74.10432707469124, 40.56425549307335]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.236', 'geometry': {'type': 'Point', 'coordinates': [-74.13916622175768, 40.55398800858462]}, 'geometry_name': 'geom', 'properties': {'name': 'Bay Terrace', 'stacked': 2, 'annoline1': 'Bay', 'annoline2': 'Terrace', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.13916622175768, 40.55398800858462, -74.13916622175768, 40.55398800858462]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.237', 'geometry': {'type': 'Point', 'coordinates': [-74.19174105747814, 40.531911920489605]}, 'geometry_name': 'geom', 'properties': {'name': 'Huguenot', 'stacked': 1, 'annoline1': 'Huguenot', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.19174105747814, 40.531911920489605, -74.19174105747814, 40.531911920489605]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.238', 'geometry': {'type': 'Point', 'coordinates': [-74.21983106616777, 40.524699376118136]}, 'geometry_name': 'geom', 'properties': {'name': 'Pleasant Plains', 'stacked': 2, 'annoline1': 'Pleasant', 'annoline2': 'Plains', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.21983106616777, 40.524699376118136, -74.21983106616777, 40.524699376118136]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.239', 'geometry': {'type': 'Point', 'coordinates': [-74.22950350260027, 40.50608165346305]}, 'geometry_name': 'geom', 'properties': {'name': 'Butler Manor', 'stacked': 2, 'annoline1': 'Butler', 'annoline2': 'Manor', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.22950350260027, 40.50608165346305, -74.22950350260027, 40.50608165346305]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.240', 'geometry': {'type': 'Point', 'coordinates': [-74.23215775896526, 40.53053148283314]}, 'geometry_name': 'geom', 'properties': {'name': 'Charleston', 'stacked': 1, 'annoline1': 'Charleston', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.23215775896526, 40.53053148283314, -74.23215775896526, 40.53053148283314]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.241', 'geometry': {'type': 'Point', 'coordinates': [-74.21572851113952, 40.54940400650072]}, 'geometry_name': 'geom', 'properties': {'name': 'Rossville', 'stacked': 1, 'annoline1': 'Rossville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.21572851113952, 40.54940400650072, -74.21572851113952, 40.54940400650072]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.242', 'geometry': {'type': 'Point', 'coordinates': [-74.18588674583893, 40.54928582278321]}, 'geometry_name': 'geom', 'properties': {'name': 'Arden Heights', 'stacked': 2, 'annoline1': 'Arden', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.18588674583893, 40.54928582278321, -74.18588674583893, 40.54928582278321]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.243', 'geometry': {'type': 'Point', 'coordinates': [-74.17079414786092, 40.555295236173194]}, 'geometry_name': 'geom', 'properties': {'name': 'Greenridge', 'stacked': 1, 'annoline1': 'Greenridge', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.17079414786092, 40.555295236173194, -74.17079414786092, 40.555295236173194]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.244', 'geometry': {'type': 'Point', 'coordinates': [-74.15902208156601, 40.58913894875281]}, 'geometry_name': 'geom', 'properties': {'name': 'Heartland Village', 'stacked': 2, 'annoline1': 'Heartland', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.15902208156601, 40.58913894875281, -74.15902208156601, 40.58913894875281]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.245', 'geometry': {'type': 'Point', 'coordinates': [-74.1895604551969, 40.59472602746295]}, 'geometry_name': 'geom', 'properties': {'name': 'Chelsea', 'stacked': 1, 'annoline1': 'Chelsea', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.1895604551969, 40.59472602746295, -74.1895604551969, 40.59472602746295]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.246', 'geometry': {'type': 'Point', 'coordinates': [-74.18725638381567, 40.60577868452358]}, 'geometry_name': 'geom', 'properties': {'name': 'Bloomfield', 'stacked': 1, 'annoline1': 'Bloomfield', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.18725638381567, 40.60577868452358, -74.18725638381567, 40.60577868452358]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.247', 'geometry': {'type': 'Point', 'coordinates': [-74.15940948657122, 40.6095918004203]}, 'geometry_name': 'geom', 'properties': {'name': 'Bulls Head', 'stacked': 2, 'annoline1': 'Bulls', 'annoline2': 'Head', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.15940948657122, 40.6095918004203, -74.15940948657122, 40.6095918004203]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.248', 'geometry': {'type': 'Point', 'coordinates': [-73.95325646837112, 40.7826825671257]}, 'geometry_name': 'geom', 'properties': {'name': 'Carnegie Hill', 'stacked': 2, 'annoline1': 'Carnegie', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.95325646837112, 40.7826825671257, -73.95325646837112, 40.7826825671257]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.249', 'geometry': {'type': 'Point', 'coordinates': [-73.98843368023597, 40.72325901885768]}, 'geometry_name': 'geom', 'properties': {'name': 'Noho', 'stacked': 1, 'annoline1': 'Noho', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.98843368023597, 40.72325901885768, -73.98843368023597, 40.72325901885768]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.250', 'geometry': {'type': 'Point', 'coordinates': [-74.00541529873355, 40.71522892046282]}, 'geometry_name': 'geom', 'properties': {'name': 'Civic Center', 'stacked': 2, 'annoline1': 'Civic', 'annoline2': 'Center', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-74.00541529873355, 40.71522892046282, -74.00541529873355, 40.71522892046282]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.251', 'geometry': {'type': 'Point', 'coordinates': [-73.98871313285247, 40.7485096643122]}, 'geometry_name': 'geom', 'properties': {'name': 'Midtown South', 'stacked': 2, 'annoline1': 'Midtown', 'annoline2': 'South', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.98871313285247, 40.7485096643122, -73.98871313285247, 40.7485096643122]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.252', 'geometry': {'type': 'Point', 'coordinates': [-74.1340572986257, 40.56960594275505]}, 'geometry_name': 'geom', 'properties': {'name': 'Richmond Town', 'stacked': 2, 'annoline1': 'Richmond', 'annoline2': 'Town', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.1340572986257, 40.56960594275505, -74.1340572986257, 40.56960594275505]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.253', 'geometry': {'type': 'Point', 'coordinates': [-74.06667766061771, 40.60971934079284]}, 'geometry_name': 'geom', 'properties': {'name': 'Shore Acres', 'stacked': 2, 'annoline1': 'Shore', 'annoline2': 'Acres', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.06667766061771, 40.60971934079284, -74.06667766061771, 40.60971934079284]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.254', 'geometry': {'type': 'Point', 'coordinates': [-74.072642445484, 40.61917845202843]}, 'geometry_name': 'geom', 'properties': {'name': 'Clifton', 'stacked': 1, 'annoline1': 'Clifton', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.072642445484, 40.61917845202843, -74.072642445484, 40.61917845202843]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.255', 'geometry': {'type': 'Point', 'coordinates': [-74.08402364740358, 40.6044731896879]}, 'geometry_name': 'geom', 'properties': {'name': 'Concord', 'stacked': 1, 'annoline1': 'Concord', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.08402364740358, 40.6044731896879, -74.08402364740358, 40.6044731896879]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.256', 'geometry': {'type': 'Point', 'coordinates': [-74.09776206972522, 40.606794394801]}, 'geometry_name': 'geom', 'properties': {'name': 'Emerson Hill', 'stacked': 2, 'annoline1': 'Emerson', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.09776206972522, 40.606794394801, -74.09776206972522, 40.606794394801]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.257', 'geometry': {'type': 'Point', 'coordinates': [-74.09805062373887, 40.63563000681151]}, 'geometry_name': 'geom', 'properties': {'name': 'Randall Manor', 'stacked': 2, 'annoline1': 'Randall', 'annoline2': 'Manor', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.09805062373887, 40.63563000681151, -74.09805062373887, 40.63563000681151]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.258', 'geometry': {'type': 'Point', 'coordinates': [-74.18622331749823, 40.63843283794795]}, 'geometry_name': 'geom', 'properties': {'name': 'Howland Hook', 'stacked': 2, 'annoline1': 'Howland', 'annoline2': 'Hook', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.18622331749823, 40.63843283794795, -74.18622331749823, 40.63843283794795]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.259', 'geometry': {'type': 'Point', 'coordinates': [-74.1418167896889, 40.630146741193826]}, 'geometry_name': 'geom', 'properties': {'name': 'Elm Park', 'stacked': 2, 'annoline1': 'Elm', 'annoline2': 'Park', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.1418167896889, 40.630146741193826, -74.1418167896889, 40.630146741193826]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.260', 'geometry': {'type': 'Point', 'coordinates': [-73.91665331978048, 40.652117451793494]}, 'geometry_name': 'geom', 'properties': {'name': 'Remsen Village', 'stacked': 2, 'annoline1': 'Remsen', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.91665331978048, 40.652117451793494, -73.91665331978048, 40.652117451793494]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.261', 'geometry': {'type': 'Point', 'coordinates': [-73.88511776379292, 40.6627442796966]}, 'geometry_name': 'geom', 'properties': {'name': 'New Lots', 'stacked': 2, 'annoline1': 'New', 'annoline2': 'Lots', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.88511776379292, 40.6627442796966, -73.88511776379292, 40.6627442796966]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.262', 'geometry': {'type': 'Point', 'coordinates': [-73.90233474295836, 40.63131755039667]}, 'geometry_name': 'geom', 'properties': {'name': 'Paerdegat Basin', 'stacked': 2, 'annoline1': 'Paerdegat', 'annoline2': 'Basin', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.90233474295836, 40.63131755039667, -73.90233474295836, 40.63131755039667]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.263', 'geometry': {'type': 'Point', 'coordinates': [-73.91515391550404, 40.61597423962336]}, 'geometry_name': 'geom', 'properties': {'name': 'Mill Basin', 'stacked': 2, 'annoline1': 'Mill', 'annoline2': 'Basin', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.91515391550404, 40.61597423962336, -73.91515391550404, 40.61597423962336]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.264', 'geometry': {'type': 'Point', 'coordinates': [-73.79646462081593, 40.71145964370482]}, 'geometry_name': 'geom', 'properties': {'name': 'Jamaica Hills', 'stacked': 2, 'annoline1': 'Jamaica', 'annoline2': 'Hills', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.79646462081593, 40.71145964370482, -73.79646462081593, 40.71145964370482]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.265', 'geometry': {'type': 'Point', 'coordinates': [-73.79671678028349, 40.73350025429757]}, 'geometry_name': 'geom', 'properties': {'name': 'Utopia', 'stacked': 1, 'annoline1': 'Utopia', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.79671678028349, 40.73350025429757, -73.79671678028349, 40.73350025429757]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.266', 'geometry': {'type': 'Point', 'coordinates': [-73.80486120040537, 40.73493618075478]}, 'geometry_name': 'geom', 'properties': {'name': 'Pomonok', 'stacked': 1, 'annoline1': 'Pomonok', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.80486120040537, 40.73493618075478, -73.80486120040537, 40.73493618075478]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.267', 'geometry': {'type': 'Point', 'coordinates': [-73.89467996270574, 40.7703173929982]}, 'geometry_name': 'geom', 'properties': {'name': 'Astoria Heights', 'stacked': 2, 'annoline1': 'Astoria', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.89467996270574, 40.7703173929982, -73.89467996270574, 40.7703173929982]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.268', 'geometry': {'type': 'Point', 'coordinates': [-73.90119903387667, 40.83142834161548]}, 'geometry_name': 'geom', 'properties': {'name': 'Claremont Village', 'stacked': 2, 'annoline1': 'Claremont', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.90119903387667, 40.83142834161548, -73.90119903387667, 40.83142834161548]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.269', 'geometry': {'type': 'Point', 'coordinates': [-73.91584652759009, 40.824780490842905]}, 'geometry_name': 'geom', 'properties': {'name': 'Concourse Village', 'stacked': 2, 'annoline1': 'Concourse', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.91584652759009, 40.824780490842905, -73.91584652759009, 40.824780490842905]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.270', 'geometry': {'type': 'Point', 'coordinates': [-73.91655551964419, 40.84382617671654]}, 'geometry_name': 'geom', 'properties': {'name': 'Mount Eden', 'stacked': 2, 'annoline1': 'Mount', 'annoline2': 'Eden', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.91655551964419, 40.84382617671654, -73.91655551964419, 40.84382617671654]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.271', 'geometry': {'type': 'Point', 'coordinates': [-73.90829930881988, 40.84884160724665]}, 'geometry_name': 'geom', 'properties': {'name': 'Mount Hope', 'stacked': 2, 'annoline1': 'Mount', 'annoline2': 'Hope', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.90829930881988, 40.84884160724665, -73.90829930881988, 40.84884160724665]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.272', 'geometry': {'type': 'Point', 'coordinates': [-73.96355614094303, 40.76028033131374]}, 'geometry_name': 'geom', 'properties': {'name': 'Sutton Place', 'stacked': 2, 'annoline1': 'Sutton', 'annoline2': 'Place', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.96355614094303, 40.76028033131374, -73.96355614094303, 40.76028033131374]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.273', 'geometry': {'type': 'Point', 'coordinates': [-73.95386782130745, 40.743414090073536]}, 'geometry_name': 'geom', 'properties': {'name': 'Hunters Point', 'stacked': 2, 'annoline1': 'Hunters', 'annoline2': 'Point', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.95386782130745, 40.743414090073536, -73.95386782130745, 40.743414090073536]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.274', 'geometry': {'type': 'Point', 'coordinates': [-73.96770824581834, 40.75204236950722]}, 'geometry_name': 'geom', 'properties': {'name': 'Turtle Bay', 'stacked': 2, 'annoline1': 'Turtle', 'annoline2': 'Bay', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.96770824581834, 40.75204236950722, -73.96770824581834, 40.75204236950722]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.275', 'geometry': {'type': 'Point', 'coordinates': [-73.97121928722265, 40.746917410740195]}, 'geometry_name': 'geom', 'properties': {'name': 'Tudor City', 'stacked': 2, 'annoline1': 'Tudor', 'annoline2': 'City', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.97121928722265, 40.746917410740195, -73.97121928722265, 40.746917410740195]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.276', 'geometry': {'type': 'Point', 'coordinates': [-73.97405170469203, 40.73099955477061]}, 'geometry_name': 'geom', 'properties': {'name': 'Stuyvesant Town', 'stacked': 2, 'annoline1': 'Stuyvesant', 'annoline2': 'Town', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.97405170469203, 40.73099955477061, -73.97405170469203, 40.73099955477061]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.277', 'geometry': {'type': 'Point', 'coordinates': [-73.9909471052826, 40.739673047638426]}, 'geometry_name': 'geom', 'properties': {'name': 'Flatiron', 'stacked': 1, 'annoline1': 'Flatiron', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-73.9909471052826, 40.739673047638426, -73.9909471052826, 40.739673047638426]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.278', 'geometry': {'type': 'Point', 'coordinates': [-73.91819286431682, 40.74565180608076]}, 'geometry_name': 'geom', 'properties': {'name': 'Sunnyside Gardens', 'stacked': 2, 'annoline1': 'Sunnyside', 'annoline2': 'Gardens', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.91819286431682, 40.74565180608076, -73.91819286431682, 40.74565180608076]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.279', 'geometry': {'type': 'Point', 'coordinates': [-73.93244235260178, 40.73725071694497]}, 'geometry_name': 'geom', 'properties': {'name': 'Blissville', 'stacked': 1, 'annoline1': 'Blissville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.93244235260178, 40.73725071694497, -73.93244235260178, 40.73725071694497]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.280', 'geometry': {'type': 'Point', 'coordinates': [-73.99550751888415, 40.70328109093014]}, 'geometry_name': 'geom', 'properties': {'name': 'Fulton Ferry', 'stacked': 2, 'annoline1': 'Fulton', 'annoline2': 'Ferry', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.99550751888415, 40.70328109093014, -73.99550751888415, 40.70328109093014]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.281', 'geometry': {'type': 'Point', 'coordinates': [-73.98111603592393, 40.70332149882874]}, 'geometry_name': 'geom', 'properties': {'name': 'Vinegar Hill', 'stacked': 2, 'annoline1': 'Vinegar', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.98111603592393, 40.70332149882874, -73.98111603592393, 40.70332149882874]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.282', 'geometry': {'type': 'Point', 'coordinates': [-73.93053108817338, 40.67503986503237]}, 'geometry_name': 'geom', 'properties': {'name': 'Weeksville', 'stacked': 1, 'annoline1': 'Weeksville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.93053108817338, 40.67503986503237, -73.93053108817338, 40.67503986503237]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.283', 'geometry': {'type': 'Point', 'coordinates': [-73.90331684852599, 40.67786104769531]}, 'geometry_name': 'geom', 'properties': {'name': 'Broadway Junction', 'stacked': 2, 'annoline1': 'Broadway', 'annoline2': 'Junction', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.90331684852599, 40.67786104769531, -73.90331684852599, 40.67786104769531]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.284', 'geometry': {'type': 'Point', 'coordinates': [-73.9887528074504, 40.70317632822692]}, 'geometry_name': 'geom', 'properties': {'name': 'Dumbo', 'stacked': 1, 'annoline1': 'Dumbo', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.9887528074504, 40.70317632822692, -73.9887528074504, 40.70317632822692]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.285', 'geometry': {'type': 'Point', 'coordinates': [-74.12059399718001, 40.60180957631444]}, 'geometry_name': 'geom', 'properties': {'name': 'Manor Heights', 'stacked': 2, 'annoline1': 'Manor', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.12059399718001, 40.60180957631444, -74.12059399718001, 40.60180957631444]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.286', 'geometry': {'type': 'Point', 'coordinates': [-74.13208447484298, 40.60370692627371]}, 'geometry_name': 'geom', 'properties': {'name': 'Willowbrook', 'stacked': 1, 'annoline1': 'Willowbrook', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.13208447484298, 40.60370692627371, -74.13208447484298, 40.60370692627371]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.287', 'geometry': {'type': 'Point', 'coordinates': [-74.21776636068567, 40.541139922091766]}, 'geometry_name': 'geom', 'properties': {'name': 'Sandy Ground', 'stacked': 2, 'annoline1': 'Sandy', 'annoline2': 'Ground', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.21776636068567, 40.541139922091766, -74.21776636068567, 40.541139922091766]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.288', 'geometry': {'type': 'Point', 'coordinates': [-74.12727240604946, 40.579118742961214]}, 'geometry_name': 'geom', 'properties': {'name': 'Egbertville', 'stacked': 1, 'annoline1': 'Egbertville', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.12727240604946, 40.579118742961214, -74.12727240604946, 40.579118742961214]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.289', 'geometry': {'type': 'Point', 'coordinates': [-73.89213760232822, 40.56737588957032]}, 'geometry_name': 'geom', 'properties': {'name': 'Roxbury', 'stacked': 1, 'annoline1': 'Roxbury', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.89213760232822, 40.56737588957032, -73.89213760232822, 40.56737588957032]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.290', 'geometry': {'type': 'Point', 'coordinates': [-73.95918459428702, 40.598525095137255]}, 'geometry_name': 'geom', 'properties': {'name': 'Homecrest', 'stacked': 1, 'annoline1': 'Homecrest', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.95918459428702, 40.598525095137255, -73.95918459428702, 40.598525095137255]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.291', 'geometry': {'type': 'Point', 'coordinates': [-73.88114319200604, 40.716414511158185]}, 'geometry_name': 'geom', 'properties': {'name': 'Middle Village', 'stacked': 2, 'annoline1': 'Middle', 'annoline2': 'Village', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.88114319200604, 40.716414511158185, -73.88114319200604, 40.716414511158185]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.292', 'geometry': {'type': 'Point', 'coordinates': [-74.20152556457658, 40.52626406734812]}, 'geometry_name': 'geom', 'properties': {'name': "Prince's Bay", 'stacked': 2, 'annoline1': "Prince's", 'annoline2': 'Bay', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.20152556457658, 40.52626406734812, -74.20152556457658, 40.52626406734812]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.293', 'geometry': {'type': 'Point', 'coordinates': [-74.13792663771568, 40.57650629379489]}, 'geometry_name': 'geom', 'properties': {'name': 'Lighthouse Hill', 'stacked': 2, 'annoline1': 'Lighthouse', 'annoline2': 'Hill', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.13792663771568, 40.57650629379489, -74.13792663771568, 40.57650629379489]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.294', 'geometry': {'type': 'Point', 'coordinates': [-74.22957080626941, 40.51954145748909]}, 'geometry_name': 'geom', 'properties': {'name': 'Richmond Valley', 'stacked': 2, 'annoline1': 'Richmond', 'annoline2': 'Valley', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.22957080626941, 40.51954145748909, -74.22957080626941, 40.51954145748909]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.295', 'geometry': {'type': 'Point', 'coordinates': [-73.82667757138641, 40.79060155670148]}, 'geometry_name': 'geom', 'properties': {'name': 'Malba', 'stacked': 1, 'annoline1': 'Malba', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.82667757138641, 40.79060155670148, -73.82667757138641, 40.79060155670148]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.296', 'geometry': {'type': 'Point', 'coordinates': [-73.890345709872, 40.6819989345173]}, 'geometry_name': 'geom', 'properties': {'name': 'Highland Park', 'stacked': 2, 'annoline1': 'Highland', 'annoline2': 'Park', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.890345709872, 40.6819989345173, -73.890345709872, 40.6819989345173]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.297', 'geometry': {'type': 'Point', 'coordinates': [-73.94841515328893, 40.60937770113766]}, 'geometry_name': 'geom', 'properties': {'name': 'Madison', 'stacked': 1, 'annoline1': 'Madison', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.94841515328893, 40.60937770113766, -73.94841515328893, 40.60937770113766]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.298', 'geometry': {'type': 'Point', 'coordinates': [-73.86172577555115, 40.85272297633017]}, 'geometry_name': 'geom', 'properties': {'name': 'Bronxdale', 'stacked': 1, 'annoline1': 'Bronxdale', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.86172577555115, 40.85272297633017, -73.86172577555115, 40.85272297633017]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.299', 'geometry': {'type': 'Point', 'coordinates': [-73.85931863221647, 40.86578787802982]}, 'geometry_name': 'geom', 'properties': {'name': 'Allerton', 'stacked': 1, 'annoline1': 'Allerton', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.85931863221647, 40.86578787802982, -73.85931863221647, 40.86578787802982]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.300', 'geometry': {'type': 'Point', 'coordinates': [-73.90152264513144, 40.8703923914147]}, 'geometry_name': 'geom', 'properties': {'name': 'Kingsbridge Heights', 'stacked': 2, 'annoline1': 'Kingsbridge', 'annoline2': 'Heights', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.90152264513144, 40.8703923914147, -73.90152264513144, 40.8703923914147]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.301', 'geometry': {'type': 'Point', 'coordinates': [-73.94817709920184, 40.64692606658579]}, 'geometry_name': 'geom', 'properties': {'name': 'Erasmus', 'stacked': 1, 'annoline1': 'Erasmus', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Brooklyn', 'bbox': [-73.94817709920184, 40.64692606658579, -73.94817709920184, 40.64692606658579]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.302', 'geometry': {'type': 'Point', 'coordinates': [-74.00011136202637, 40.75665808227519]}, 'geometry_name': 'geom', 'properties': {'name': 'Hudson Yards', 'stacked': 2, 'annoline1': 'Hudson', 'annoline2': 'Yards', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Manhattan', 'bbox': [-74.00011136202637, 40.75665808227519, -74.00011136202637, 40.75665808227519]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.303', 'geometry': {'type': 'Point', 'coordinates': [-73.80553002968718, 40.58733774018741]}, 'geometry_name': 'geom', 'properties': {'name': 'Hammels', 'stacked': 1, 'annoline1': 'Hammels', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.80553002968718, 40.58733774018741, -73.80553002968718, 40.58733774018741]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.304', 'geometry': {'type': 'Point', 'coordinates': [-73.76596781445627, 40.611321691283834]}, 'geometry_name': 'geom', 'properties': {'name': 'Bayswater', 'stacked': 1, 'annoline1': 'Bayswater', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.76596781445627, 40.611321691283834, -73.76596781445627, 40.611321691283834]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.305', 'geometry': {'type': 'Point', 'coordinates': [-73.94563070334091, 40.756091297094706]}, 'geometry_name': 'geom', 'properties': {'name': 'Queensbridge', 'stacked': 1, 'annoline1': 'Queensbridge', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Queens', 'bbox': [-73.94563070334091, 40.756091297094706, -73.94563070334091, 40.756091297094706]}}, {'type': 'Feature', 'id': 'nyu_2451_34572.306', 'geometry': {'type': 'Point', 'coordinates': [-74.08173992211962, 40.61731079252983]}, 'geometry_name': 'geom', 'properties': {'name': 'Fox Hills', 'stacked': 2, 'annoline1': 'Fox', 'annoline2': 'Hills', 'annoline3': None, 'annoangle': 0.0, 'borough': 'Staten Island', 'bbox': [-74.08173992211962, 40.61731079252983, -74.08173992211962, 40.61731079252983]}}], 'crs': {'type': 'name', 'properties': {'name': 'urn:ogc:def:crs:EPSG::4326'}}, 'bbox': [-74.2492599487305, 40.5033187866211, -73.7061614990234, 40.9105606079102]}
Notice how all the relevant data is in the features key, which is basically a list of the neighborhoods. So, let's define a new variable that includes this data.
neighborhoods_data = newyork_data['features']
Let's take a look at the first item in this list.
neighborhoods_data[0]
{'type': 'Feature', 'id': 'nyu_2451_34572.1', 'geometry': {'type': 'Point', 'coordinates': [-73.84720052054902, 40.89470517661]}, 'geometry_name': 'geom', 'properties': {'name': 'Wakefield', 'stacked': 1, 'annoline1': 'Wakefield', 'annoline2': None, 'annoline3': None, 'annoangle': 0.0, 'borough': 'Bronx', 'bbox': [-73.84720052054902, 40.89470517661, -73.84720052054902, 40.89470517661]}}
The next task is essentially transforming this data of nested Python dictionaries into a pandas dataframe. So let's start by creating an empty dataframe.
# define the dataframe columns
column_names = ['Borough', 'Neighborhood', 'Latitude', 'Longitude']
# instantiate the dataframe
neighborhoods = pd.DataFrame(columns=column_names)
Take a look at the empty dataframe to confirm that the columns are as intended.
neighborhoods
Borough | Neighborhood | Latitude | Longitude |
---|
Then let's loop through the data and fill the dataframe one row at a time.
for data in neighborhoods_data:
borough = neighborhood_name = data['properties']['borough']
neighborhood_name = data['properties']['name']
neighborhood_latlon = data['geometry']['coordinates']
neighborhood_lat = neighborhood_latlon[1]
neighborhood_lon = neighborhood_latlon[0]
neighborhoods = neighborhoods.append({'Borough': borough,
'Neighborhood': neighborhood_name,
'Latitude': neighborhood_lat,
'Longitude': neighborhood_lon}, ignore_index=True)
Quickly examine the resulting dataframe.
neighborhoods.head()
Borough | Neighborhood | Latitude | Longitude | |
---|---|---|---|---|
0 | Bronx | Wakefield | 40.894705 | -73.847201 |
1 | Bronx | Co-op City | 40.874294 | -73.829939 |
2 | Bronx | Eastchester | 40.887556 | -73.827806 |
3 | Bronx | Fieldston | 40.895437 | -73.905643 |
4 | Bronx | Riverdale | 40.890834 | -73.912585 |
And make sure that the dataset has all 5 boroughs and 306 neighborhoods.
print('The dataframe has {} boroughs and {} neighborhoods.'.format(
len(neighborhoods['Borough'].unique()),
neighborhoods.shape[0]
)
)
The dataframe has 5 boroughs and 306 neighborhoods.
In order to define an instance of the geocoder, we need to define a user_agent. We will name our agent ny_explorer, as shown below.
address = 'New York City, NY'
geolocator = Nominatim(user_agent="ny_explorer")
location = geolocator.geocode(address)
latitude = location.latitude
longitude = location.longitude
print('The geograpical coordinate of New York City are {}, {}.'.format(latitude, longitude))
The geograpical coordinate of New York City are 40.7127281, -74.0060152.
# create map of New York using latitude and longitude values
map_newyork = folium.Map(location=[latitude, longitude], zoom_start=10)
# add markers to map
for lat, lng, borough, neighborhood in zip(neighborhoods['Latitude'], neighborhoods['Longitude'], neighborhoods['Borough'], neighborhoods['Neighborhood']):
label = '{}, {}'.format(neighborhood, borough)
label = folium.Popup(label, parse_html=True)
folium.CircleMarker(
[lat, lng],
radius=5,
popup=label,
color='blue',
fill=True,
fill_color='#3186cc',
fill_opacity=0.7,
parse_html=False).add_to(map_newyork)
map_newyork
Folium is a great visualization library. Feel free to zoom into the above map, and click on each circle mark to reveal the name of the neighborhood and its respective borough.
However, for illustration purposes, let's simplify the above map and segment and cluster only the neighborhoods in Manhattan. So let's slice the original dataframe and create a new dataframe of the Manhattan data.
manhattan_data = neighborhoods[neighborhoods['Borough'] == 'Manhattan'].reset_index(drop=True)
manhattan_data.head()
Borough | Neighborhood | Latitude | Longitude | |
---|---|---|---|---|
0 | Manhattan | Marble Hill | 40.876551 | -73.910660 |
1 | Manhattan | Chinatown | 40.715618 | -73.994279 |
2 | Manhattan | Washington Heights | 40.851903 | -73.936900 |
3 | Manhattan | Inwood | 40.867684 | -73.921210 |
4 | Manhattan | Hamilton Heights | 40.823604 | -73.949688 |
Let's get the geographical coordinates of Manhattan.
address = 'Manhattan, NY'
geolocator = Nominatim(user_agent="ny_explorer")
location = geolocator.geocode(address)
latitude = location.latitude
longitude = location.longitude
print('The geograpical coordinate of Manhattan are {}, {}.'.format(latitude, longitude))
The geograpical coordinate of Manhattan are 40.7900869, -73.9598295.
As we did with all of New York City, let's visualizat Manhattan the neighborhoods in it.
# create map of Manhattan using latitude and longitude values
map_manhattan = folium.Map(location=[latitude, longitude], zoom_start=11)
# add markers to map
for lat, lng, label in zip(manhattan_data['Latitude'], manhattan_data['Longitude'], manhattan_data['Neighborhood']):
label = folium.Popup(label, parse_html=True)
folium.CircleMarker(
[lat, lng],
radius=5,
popup=label,
color='blue',
fill=True,
fill_color='#3186cc',
fill_opacity=0.7,
parse_html=False).add_to(map_manhattan)
map_manhattan
Next, we are going to start utilizing the Foursquare API to explore the neighborhoods and segment them.
CLIENT_ID = 'your Foursquare ID' # your Foursquare ID
CLIENT_SECRET = 'your Foursquare Secret' # your Foursquare Secret
VERSION = '20180605' # Foursquare API version
print('Your credentails:')
print('CLIENT_ID: ' + CLIENT_ID)
print('CLIENT_SECRET:' + CLIENT_SECRET)
Your credentails: CLIENT_ID: BPAX1A44J1YTPYCUOCZXBY41JTWTHB3H2M2ISKZTYCO5LQMA CLIENT_SECRET:LSLUNFQNMUBH4KXC1S1O41RTPWP2J41IYQFMO44NU5GTJSER
Get the neighborhood's name.
manhattan_data.loc[0, 'Neighborhood']
'Marble Hill'
Get the neighborhood's latitude and longitude values.
neighborhood_latitude = manhattan_data.loc[0, 'Latitude'] # neighborhood latitude value
neighborhood_longitude = manhattan_data.loc[0, 'Longitude'] # neighborhood longitude value
neighborhood_name = manhattan_data.loc[0, 'Neighborhood'] # neighborhood name
print('Latitude and longitude values of {} are {}, {}.'.format(neighborhood_name,
neighborhood_latitude,
neighborhood_longitude))
Latitude and longitude values of Marble Hill are 40.87655077879964, -73.91065965862981.
First, let's create the GET request URL. Name your URL url.
# type your answer here
radius = 500 # define radius
LIMIT = 100 # limit of number of venues returned by Foursquare API
url = 'https://api.foursquare.com/v2/venues/explore?&client_id={}&client_secret={}&v={}&ll={},{}&radius={}&limit={}'.format(
CLIENT_ID,
CLIENT_SECRET,
VERSION,
neighborhood_latitude,
neighborhood_longitude,
radius,
LIMIT)
url
'https://api.foursquare.com/v2/venues/explore?&client_id=BPAX1A44J1YTPYCUOCZXBY41JTWTHB3H2M2ISKZTYCO5LQMA&client_secret=LSLUNFQNMUBH4KXC1S1O41RTPWP2J41IYQFMO44NU5GTJSER&v=20180605&ll=40.87655077879964,-73.91065965862981&radius=500&limit=100'
Double-click here for the solution.
Send the GET request and examine the resutls
results = requests.get(url).json()
results
{'meta': {'code': 200, 'requestId': '5cd0c1b49fb6b756cd95eed0'}, 'response': {'suggestedFilters': {'header': 'Tap to show:', 'filters': [{'name': 'Open now', 'key': 'openNow'}]}, 'headerLocation': 'Marble Hill', 'headerFullLocation': 'Marble Hill, New York', 'headerLocationGranularity': 'neighborhood', 'totalResults': 25, 'suggestedBounds': {'ne': {'lat': 40.88105078329964, 'lng': -73.90471933917806}, 'sw': {'lat': 40.87205077429964, 'lng': -73.91659997808156}}, 'groups': [{'type': 'Recommended Places', 'name': 'recommended', 'items': [{'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4b4429abf964a52037f225e3', 'name': "Arturo's", 'location': {'address': '5198 Broadway', 'crossStreet': 'at 225th St.', 'lat': 40.87441177110231, 'lng': -73.91027100981574, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87441177110231, 'lng': -73.91027100981574}], 'distance': 240, 'postalCode': '10463', 'cc': 'US', 'city': 'New York', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5198 Broadway (at 225th St.)', 'New York, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d1ca941735', 'name': 'Pizza Place', 'pluralName': 'Pizza Places', 'shortName': 'Pizza', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/pizza_', 'suffix': '.png'}, 'primary': True}], 'delivery': {'id': '72548', 'url': 'https://www.seamless.com/menu/arturos-pizza-5189-broadway-ave-new-york/72548?affiliate=1131&utm_source=foursquare-affiliate-network&utm_medium=affiliate&utm_campaign=1131&utm_content=72548', 'provider': {'name': 'seamless', 'icon': {'prefix': 'https://fastly.4sqi.net/img/general/cap/', 'sizes': [40, 50], 'name': '/delivery_provider_seamless_20180129.png'}}}, 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4b4429abf964a52037f225e3-0'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4baf59e8f964a520a6f93be3', 'name': 'Bikram Yoga', 'location': {'address': '5500 Broadway', 'crossStreet': '230th Street', 'lat': 40.876843690797934, 'lng': -73.90620384419528, 'labeledLatLngs': [{'label': 'display', 'lat': 40.876843690797934, 'lng': -73.90620384419528}], 'distance': 376, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5500 Broadway (230th Street)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d102941735', 'name': 'Yoga Studio', 'pluralName': 'Yoga Studios', 'shortName': 'Yoga Studio', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/gym_yogastudio_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4baf59e8f964a520a6f93be3-1'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4b79cc46f964a520c5122fe3', 'name': 'Tibbett Diner', 'location': {'address': '3033 Tibbett Ave', 'crossStreet': 'btwn 230th & 231st', 'lat': 40.8804044222466, 'lng': -73.90893738006402, 'labeledLatLngs': [{'label': 'display', 'lat': 40.8804044222466, 'lng': -73.90893738006402}], 'distance': 452, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['3033 Tibbett Ave (btwn 230th & 231st)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d147941735', 'name': 'Diner', 'pluralName': 'Diners', 'shortName': 'Diner', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/diner_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4b79cc46f964a520c5122fe3-2'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4b5357adf964a520319827e3', 'name': "Dunkin'", 'location': {'address': '5501 Broadway', 'crossStreet': 'W 230th St', 'lat': 40.87713584201589, 'lng': -73.90666550701411, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87713584201589, 'lng': -73.90666550701411}], 'distance': 342, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5501 Broadway (W 230th St)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d148941735', 'name': 'Donut Shop', 'pluralName': 'Donut Shops', 'shortName': 'Donuts', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/donuts_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4b5357adf964a520319827e3-3'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '55f81cd2498ee903149fcc64', 'name': 'Starbucks', 'location': {'address': '171 W 230th St', 'crossStreet': 'Kimberly Pl', 'lat': 40.87753134921497, 'lng': -73.90558216359267, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87753134921497, 'lng': -73.90558216359267}], 'distance': 441, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['171 W 230th St (Kimberly Pl)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d1e0931735', 'name': 'Coffee Shop', 'pluralName': 'Coffee Shops', 'shortName': 'Coffee Shop', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-55f81cd2498ee903149fcc64-4'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '55f751ca498eacc0307d1cfe', 'name': 'Blink Fitness Riverdale', 'location': {'address': '5520 Broadway', 'crossStreet': 'at W 230th St', 'lat': 40.87714687429521, 'lng': -73.90583697267095, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87714687429521, 'lng': -73.90583697267095}], 'distance': 411, 'postalCode': '10463', 'cc': 'US', 'neighborhood': 'Kingsbridge', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5520 Broadway (at W 230th St)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d176941735', 'name': 'Gym', 'pluralName': 'Gyms', 'shortName': 'Gym', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/building/gym_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-55f751ca498eacc0307d1cfe-5'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4a725fa1f964a520f6da1fe3', 'name': 'TCR The Club of Riverdale', 'location': {'address': '2600 Netherland Ave', 'lat': 40.8786283, 'lng': -73.9145678, 'labeledLatLngs': [{'label': 'display', 'lat': 40.8786283, 'lng': -73.9145678}], 'distance': 402, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['2600 Netherland Ave', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4e39a891bd410d7aed40cbc2', 'name': 'Tennis Stadium', 'pluralName': 'Tennis Stadiums', 'shortName': 'Tennis', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/arts_entertainment/stadium_tennis_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}, 'venuePage': {'id': '40358759'}}, 'referralId': 'e-0-4a725fa1f964a520f6da1fe3-6'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4b9c9c6af964a520b27236e3', 'name': 'Land & Sea Restaurant', 'location': {'address': '5535 Broadway', 'crossStreet': '231st St', 'lat': 40.87788463309788, 'lng': -73.90587282193539, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87788463309788, 'lng': -73.90587282193539}], 'distance': 429, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5535 Broadway (231st St)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d1ce941735', 'name': 'Seafood Restaurant', 'pluralName': 'Seafood Restaurants', 'shortName': 'Seafood', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/seafood_', 'suffix': '.png'}, 'primary': True}], 'delivery': {'id': '277380', 'url': 'https://www.seamless.com/menu/land--sea-restaurant-5535-broadway-ave-bronx/277380?affiliate=1131&utm_source=foursquare-affiliate-network&utm_medium=affiliate&utm_campaign=1131&utm_content=277380', 'provider': {'name': 'seamless', 'icon': {'prefix': 'https://fastly.4sqi.net/img/general/cap/', 'sizes': [40, 50], 'name': '/delivery_provider_seamless_20180129.png'}}}, 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4b9c9c6af964a520b27236e3-7'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '57655be738faa66160da7527', 'name': 'Starbucks', 'location': {'address': '50 W 225th St', 'lat': 40.873754554218515, 'lng': -73.90861305343668, 'labeledLatLngs': [{'label': 'display', 'lat': 40.873754554218515, 'lng': -73.90861305343668}], 'distance': 355, 'postalCode': '10463', 'cc': 'US', 'city': 'New York', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['50 W 225th St', 'New York, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d1e0931735', 'name': 'Coffee Shop', 'pluralName': 'Coffee Shops', 'shortName': 'Coffee Shop', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/coffeeshop_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-57655be738faa66160da7527-8'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '546d31ca498e561c698a0320', 'name': 'T.J. Maxx', 'location': {'lat': 40.87723198343352, 'lng': -73.90504239962168, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87723198343352, 'lng': -73.90504239962168}], 'distance': 478, 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['Bronx, NY', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d1f6941735', 'name': 'Department Store', 'pluralName': 'Department Stores', 'shortName': 'Department Store', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/departmentstore_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-546d31ca498e561c698a0320-9'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4b9f030af964a520eb0f37e3', 'name': 'GameStop', 'location': {'address': '90 W 225th St Ste A-B', 'crossStreet': 'btw Broadway & Exterior St.', 'lat': 40.874266802124836, 'lng': -73.90934218062803, 'labeledLatLngs': [{'label': 'display', 'lat': 40.874266802124836, 'lng': -73.90934218062803}], 'distance': 277, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['90 W 225th St Ste A-B (btw Broadway & Exterior St.)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d10b951735', 'name': 'Video Game Store', 'pluralName': 'Video Game Stores', 'shortName': 'Video Games', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/videogames_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4b9f030af964a520eb0f37e3-10'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4b9c9c43f964a520ac7236e3', 'name': 'Lot Less Closeouts', 'location': {'address': '5545 Broadway', 'crossStreet': '231st St', 'lat': 40.878270422202085, 'lng': -73.9052646742604, 'labeledLatLngs': [{'label': 'display', 'lat': 40.878270422202085, 'lng': -73.9052646742604}], 'distance': 492, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5545 Broadway (231st St)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '52dea92d3cf9994f4e043dbb', 'name': 'Discount Store', 'pluralName': 'Discount Stores', 'shortName': 'Discount Store', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/discountstore_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4b9c9c43f964a520ac7236e3-11'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4b88e053f964a5208a1132e3', 'name': 'Rite Aid', 'location': {'address': '5237 Broadway', 'crossStreet': '228th Street', 'lat': 40.875466574434704, 'lng': -73.90890629016033, 'labeledLatLngs': [{'label': 'display', 'lat': 40.875466574434704, 'lng': -73.90890629016033}], 'distance': 190, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5237 Broadway (228th Street)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d10f951735', 'name': 'Pharmacy', 'pluralName': 'Pharmacies', 'shortName': 'Pharmacy', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/pharmacy_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4b88e053f964a5208a1132e3-12'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '5631194e498e2de074de661c', 'name': 'Vitamin Shoppe', 'location': {'address': '5510 Broadway', 'lat': 40.87716, 'lng': -73.905632, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87716, 'lng': -73.905632}], 'distance': 428, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5510 Broadway', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '5744ccdfe4b0c0459246b4cd', 'name': 'Supplement Shop', 'pluralName': 'Supplement Shops', 'shortName': 'Supplement Shop', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/education/lab_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-5631194e498e2de074de661c-13'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4dfe40df8877333e195b68fc', 'name': 'Parrilla Latina', 'location': {'address': '230th St & Broadway', 'lat': 40.87747294351472, 'lng': -73.90607346968568, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87747294351472, 'lng': -73.90607346968568}], 'distance': 399, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['230th St & Broadway', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d1cc941735', 'name': 'Steakhouse', 'pluralName': 'Steakhouses', 'shortName': 'Steakhouse', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/steakhouse_', 'suffix': '.png'}, 'primary': True}], 'delivery': {'id': '330981', 'url': 'https://www.seamless.com/menu/parrilla-latina-5523-broadway-bronx/330981?affiliate=1131&utm_source=foursquare-affiliate-network&utm_medium=affiliate&utm_campaign=1131&utm_content=330981', 'provider': {'name': 'seamless', 'icon': {'prefix': 'https://fastly.4sqi.net/img/general/cap/', 'sizes': [40, 50], 'name': '/delivery_provider_seamless_20180129.png'}}}, 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4dfe40df8877333e195b68fc-14'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4c7e760d0b2a9eb0fb73651f', 'name': 'Payless ShoeSource', 'location': {'address': '60 W 225th St', 'lat': 40.87372764344239, 'lng': -73.90848340039689, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87372764344239, 'lng': -73.90848340039689}], 'distance': 363, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['60 W 225th St', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d107951735', 'name': 'Shoe Store', 'pluralName': 'Shoe Stores', 'shortName': 'Shoes', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/apparel_shoestore_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4c7e760d0b2a9eb0fb73651f-15'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '56229ff8498e2abb44b6f12b', 'name': 'Five Below', 'location': {'address': '171 W 230th St Fl 2', 'lat': 40.87763977050781, 'lng': -73.90499114990234, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87763977050781, 'lng': -73.90499114990234}], 'distance': 492, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['171 W 230th St Fl 2', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '52dea92d3cf9994f4e043dbb', 'name': 'Discount Store', 'pluralName': 'Discount Stores', 'shortName': 'Discount Store', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/discountstore_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-56229ff8498e2abb44b6f12b-16'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4ec68016cc21b428e1d2060a', 'name': 'TD Bank', 'location': {'address': '281 W 230th St', 'lat': 40.8794958, 'lng': -73.9092856, 'labeledLatLngs': [{'label': 'display', 'lat': 40.8794958, 'lng': -73.9092856}], 'distance': 347, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['281 W 230th St', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d10a951735', 'name': 'Bank', 'pluralName': 'Banks', 'shortName': 'Bank', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/financial_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4ec68016cc21b428e1d2060a-17'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4e4e4517bd4101d0d7a67568', 'name': 'Baskin-Robbins', 'location': {'address': '5501 Broadway', 'lat': 40.8769755336728, 'lng': -73.90675193198494, 'labeledLatLngs': [{'label': 'display', 'lat': 40.8769755336728, 'lng': -73.90675193198494}], 'distance': 332, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5501 Broadway', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d1c9941735', 'name': 'Ice Cream Shop', 'pluralName': 'Ice Cream Shops', 'shortName': 'Ice Cream', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/icecream_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4e4e4517bd4101d0d7a67568-18'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '585c205665e7c70a2f1055ea', 'name': 'Boston Market', 'location': {'address': '5520 Broadway', 'lat': 40.87743, 'lng': -73.9054121, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87743, 'lng': -73.9054121}], 'distance': 452, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5520 Broadway', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d14e941735', 'name': 'American Restaurant', 'pluralName': 'American Restaurants', 'shortName': 'American', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/default_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-585c205665e7c70a2f1055ea-19'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '5802a20c38fa8638a305e241', 'name': "Auntie Anne's", 'location': {'address': '5532 Broadway W230th Str', 'lat': 40.8773995, 'lng': -73.9049467, 'labeledLatLngs': [{'label': 'display', 'lat': 40.8773995, 'lng': -73.9049467}], 'distance': 490, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5532 Broadway W230th Str', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d16a941735', 'name': 'Bakery', 'pluralName': 'Bakeries', 'shortName': 'Bakery', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/bakery_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-5802a20c38fa8638a305e241-20'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4e4ce4debd413c4cc66d05d0', 'name': 'SUBWAY', 'location': {'address': '5549 Broadway', 'lat': 40.87849271667849, 'lng': -73.90538547211088, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87849271667849, 'lng': -73.90538547211088}], 'distance': 493, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['5549 Broadway', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d1c5941735', 'name': 'Sandwich Place', 'pluralName': 'Sandwich Places', 'shortName': 'Sandwiches', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/deli_', 'suffix': '.png'}, 'primary': True}], 'delivery': {'id': '774886', 'url': 'https://www.seamless.com/menu/subway-5549-broadway-bronx/774886?affiliate=1131&utm_source=foursquare-affiliate-network&utm_medium=affiliate&utm_campaign=1131&utm_content=774886', 'provider': {'name': 'seamless', 'icon': {'prefix': 'https://fastly.4sqi.net/img/general/cap/', 'sizes': [40, 50], 'name': '/delivery_provider_seamless_20180129.png'}}}, 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4e4ce4debd413c4cc66d05d0-21'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4c852173dc018cfa2bc3e56c', 'name': "The Children's Place", 'location': {'address': '44 W 225th St', 'lat': 40.873671591133125, 'lng': -73.90815619608166, 'labeledLatLngs': [{'label': 'display', 'lat': 40.873671591133125, 'lng': -73.90815619608166}], 'distance': 383, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['44 W 225th St', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d105951735', 'name': 'Kids Store', 'pluralName': 'Kids Stores', 'shortName': 'Kids Store', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/apparel_kids_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4c852173dc018cfa2bc3e56c-22'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4a0eb511f964a520ea751fe3', 'name': 'Target', 'location': {'address': '40 W 225th St', 'crossStreet': 'at Exterior St', 'lat': 40.873437410462145, 'lng': -73.90772557370363, 'labeledLatLngs': [{'label': 'display', 'lat': 40.873437410462145, 'lng': -73.90772557370363}], 'distance': 425, 'postalCode': '10463', 'cc': 'US', 'city': 'Bronx', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['40 W 225th St (at Exterior St)', 'Bronx, NY 10463', 'United States']}, 'categories': [{'id': '52f2ab2ebcbc57f1066b8b42', 'name': 'Big Box Store', 'pluralName': 'Big Box Stores', 'shortName': 'Big Box Store', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/shops/default_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4a0eb511f964a520ea751fe3-23'}, {'reasons': {'count': 0, 'items': [{'summary': 'This spot is popular', 'type': 'general', 'reasonName': 'globalInteractionReason'}]}, 'venue': {'id': '4ed7956b8b81b2bf28adc714', 'name': 'Terrace View Delicatessen', 'location': {'address': '135 Terrace View Ave.', 'lat': 40.87647647652852, 'lng': -73.91274586964578, 'labeledLatLngs': [{'label': 'display', 'lat': 40.87647647652852, 'lng': -73.91274586964578}], 'distance': 175, 'postalCode': '10034', 'cc': 'US', 'city': 'New York', 'state': 'NY', 'country': 'United States', 'formattedAddress': ['135 Terrace View Ave.', 'New York, NY 10034', 'United States']}, 'categories': [{'id': '4bf58dd8d48988d146941735', 'name': 'Deli / Bodega', 'pluralName': 'Delis / Bodegas', 'shortName': 'Deli / Bodega', 'icon': {'prefix': 'https://ss3.4sqi.net/img/categories_v2/food/deli_', 'suffix': '.png'}, 'primary': True}], 'photos': {'count': 0, 'groups': []}}, 'referralId': 'e-0-4ed7956b8b81b2bf28adc714-24'}]}]}}
From the Foursquare lab in the previous module, we know that all the information is in the items key. Before we proceed, let's borrow the get_category_type function from the Foursquare lab.
# function that extracts the category of the venue
def get_category_type(row):
try:
categories_list = row['categories']
except:
categories_list = row['venue.categories']
if len(categories_list) == 0:
return None
else:
return categories_list[0]['name']
Now we are ready to clean the json and structure it into a pandas dataframe.
venues = results['response']['groups'][0]['items']
nearby_venues = json_normalize(venues) # flatten JSON
# filter columns
filtered_columns = ['venue.name', 'venue.categories', 'venue.location.lat', 'venue.location.lng']
nearby_venues =nearby_venues.loc[:, filtered_columns]
# filter the category for each row
nearby_venues['venue.categories'] = nearby_venues.apply(get_category_type, axis=1)
# clean columns
nearby_venues.columns = [col.split(".")[-1] for col in nearby_venues.columns]
nearby_venues.head()
name | categories | lat | lng | |
---|---|---|---|---|
0 | Arturo's | Pizza Place | 40.874412 | -73.910271 |
1 | Bikram Yoga | Yoga Studio | 40.876844 | -73.906204 |
2 | Tibbett Diner | Diner | 40.880404 | -73.908937 |
3 | Dunkin' | Donut Shop | 40.877136 | -73.906666 |
4 | Starbucks | Coffee Shop | 40.877531 | -73.905582 |
And how many venues were returned by Foursquare?
print('{} venues were returned by Foursquare.'.format(nearby_venues.shape[0]))
25 venues were returned by Foursquare.
def getNearbyVenues(names, latitudes, longitudes, radius=500):
venues_list=[]
for name, lat, lng in zip(names, latitudes, longitudes):
print(name)
# create the API request URL
url = 'https://api.foursquare.com/v2/venues/explore?&client_id={}&client_secret={}&v={}&ll={},{}&radius={}&limit={}'.format(
CLIENT_ID,
CLIENT_SECRET,
VERSION,
lat,
lng,
radius,
LIMIT)
# make the GET request
results = requests.get(url).json()["response"]['groups'][0]['items']
# return only relevant information for each nearby venue
venues_list.append([(
name,
lat,
lng,
v['venue']['name'],
v['venue']['location']['lat'],
v['venue']['location']['lng'],
v['venue']['categories'][0]['name']) for v in results])
nearby_venues = pd.DataFrame([item for venue_list in venues_list for item in venue_list])
nearby_venues.columns = ['Neighborhood',
'Neighborhood Latitude',
'Neighborhood Longitude',
'Venue',
'Venue Latitude',
'Venue Longitude',
'Venue Category']
return(nearby_venues)
# type your answer here
manhattan_venues = getNearbyVenues(names=manhattan_data['Neighborhood'],
latitudes=manhattan_data['Latitude'],
longitudes=manhattan_data['Longitude']
)
Marble Hill Chinatown Washington Heights Inwood Hamilton Heights Manhattanville Central Harlem East Harlem Upper East Side Yorkville Lenox Hill Roosevelt Island Upper West Side Lincoln Square Clinton Midtown Murray Hill Chelsea Greenwich Village East Village Lower East Side Tribeca Little Italy Soho West Village Manhattan Valley Morningside Heights Gramercy Battery Park City Financial District Carnegie Hill Noho Civic Center Midtown South Sutton Place Turtle Bay Tudor City Stuyvesant Town Flatiron Hudson Yards
Double-click here for the solution.
print(manhattan_venues.shape)
manhattan_venues.head()
(3317, 7)
Neighborhood | Neighborhood Latitude | Neighborhood Longitude | Venue | Venue Latitude | Venue Longitude | Venue Category | |
---|---|---|---|---|---|---|---|
0 | Marble Hill | 40.876551 | -73.91066 | Arturo's | 40.874412 | -73.910271 | Pizza Place |
1 | Marble Hill | 40.876551 | -73.91066 | Bikram Yoga | 40.876844 | -73.906204 | Yoga Studio |
2 | Marble Hill | 40.876551 | -73.91066 | Tibbett Diner | 40.880404 | -73.908937 | Diner |
3 | Marble Hill | 40.876551 | -73.91066 | Dunkin' | 40.877136 | -73.906666 | Donut Shop |
4 | Marble Hill | 40.876551 | -73.91066 | Starbucks | 40.877531 | -73.905582 | Coffee Shop |
Let's check how many venues were returned for each neighborhood
manhattan_venues.groupby('Neighborhood').count()
Neighborhood Latitude | Neighborhood Longitude | Venue | Venue Latitude | Venue Longitude | Venue Category | |
---|---|---|---|---|---|---|
Neighborhood | ||||||
Battery Park City | 100 | 100 | 100 | 100 | 100 | 100 |
Carnegie Hill | 100 | 100 | 100 | 100 | 100 | 100 |
Central Harlem | 43 | 43 | 43 | 43 | 43 | 43 |
Chelsea | 100 | 100 | 100 | 100 | 100 | 100 |
Chinatown | 100 | 100 | 100 | 100 | 100 | 100 |
Civic Center | 100 | 100 | 100 | 100 | 100 | 100 |
Clinton | 100 | 100 | 100 | 100 | 100 | 100 |
East Harlem | 41 | 41 | 41 | 41 | 41 | 41 |
East Village | 100 | 100 | 100 | 100 | 100 | 100 |
Financial District | 100 | 100 | 100 | 100 | 100 | 100 |
Flatiron | 100 | 100 | 100 | 100 | 100 | 100 |
Gramercy | 100 | 100 | 100 | 100 | 100 | 100 |
Greenwich Village | 100 | 100 | 100 | 100 | 100 | 100 |
Hamilton Heights | 60 | 60 | 60 | 60 | 60 | 60 |
Hudson Yards | 73 | 73 | 73 | 73 | 73 | 73 |
Inwood | 57 | 57 | 57 | 57 | 57 | 57 |
Lenox Hill | 100 | 100 | 100 | 100 | 100 | 100 |
Lincoln Square | 100 | 100 | 100 | 100 | 100 | 100 |
Little Italy | 100 | 100 | 100 | 100 | 100 | 100 |
Lower East Side | 63 | 63 | 63 | 63 | 63 | 63 |
Manhattan Valley | 60 | 60 | 60 | 60 | 60 | 60 |
Manhattanville | 41 | 41 | 41 | 41 | 41 | 41 |
Marble Hill | 25 | 25 | 25 | 25 | 25 | 25 |
Midtown | 100 | 100 | 100 | 100 | 100 | 100 |
Midtown South | 100 | 100 | 100 | 100 | 100 | 100 |
Morningside Heights | 42 | 42 | 42 | 42 | 42 | 42 |
Murray Hill | 100 | 100 | 100 | 100 | 100 | 100 |
Noho | 100 | 100 | 100 | 100 | 100 | 100 |
Roosevelt Island | 26 | 26 | 26 | 26 | 26 | 26 |
Soho | 100 | 100 | 100 | 100 | 100 | 100 |
Stuyvesant Town | 19 | 19 | 19 | 19 | 19 | 19 |
Sutton Place | 100 | 100 | 100 | 100 | 100 | 100 |
Tribeca | 100 | 100 | 100 | 100 | 100 | 100 |
Tudor City | 82 | 82 | 82 | 82 | 82 | 82 |
Turtle Bay | 100 | 100 | 100 | 100 | 100 | 100 |
Upper East Side | 100 | 100 | 100 | 100 | 100 | 100 |
Upper West Side | 100 | 100 | 100 | 100 | 100 | 100 |
Washington Heights | 85 | 85 | 85 | 85 | 85 | 85 |
West Village | 100 | 100 | 100 | 100 | 100 | 100 |
Yorkville | 100 | 100 | 100 | 100 | 100 | 100 |
print('There are {} uniques categories.'.format(len(manhattan_venues['Venue Category'].unique())))
There are 332 uniques categories.
# one hot encoding
manhattan_onehot = pd.get_dummies(manhattan_venues[['Venue Category']], prefix="", prefix_sep="")
# add neighborhood column back to dataframe
manhattan_onehot['Neighborhood'] = manhattan_venues['Neighborhood']
# move neighborhood column to the first column
fixed_columns = [manhattan_onehot.columns[-1]] + list(manhattan_onehot.columns[:-1])
manhattan_onehot = manhattan_onehot[fixed_columns]
manhattan_onehot.head()
Neighborhood | Accessories Store | Adult Boutique | Afghan Restaurant | African Restaurant | American Restaurant | Antique Shop | Arcade | Arepa Restaurant | Argentinian Restaurant | Art Gallery | Art Museum | Arts & Crafts Store | Asian Restaurant | Athletics & Sports | Auditorium | Australian Restaurant | Austrian Restaurant | Auto Workshop | BBQ Joint | Baby Store | Bagel Shop | Bakery | Bank | Bar | Baseball Field | Basketball Court | Beer Bar | Beer Garden | Beer Store | Big Box Store | Bike Rental / Bike Share | Bike Shop | Bike Trail | Bistro | Board Shop | Boat or Ferry | Bookstore | Boutique | Boxing Gym | Brazilian Restaurant | Breakfast Spot | Bridal Shop | Bubble Tea Shop | Building | Burger Joint | Burrito Place | Bus Station | Bus Stop | Business Service | Butcher | Cafeteria | Café | Cajun / Creole Restaurant | Cambodian Restaurant | Camera Store | Candy Store | Cantonese Restaurant | Caribbean Restaurant | Caucasian Restaurant | Cheese Shop | Chinese Restaurant | Chocolate Shop | Church | Circus | Climbing Gym | Clothing Store | Club House | Cocktail Bar | Coffee Shop | College Academic Building | College Bookstore | College Cafeteria | College Gym | College Theater | Comedy Club | Community Center | Concert Hall | Convenience Store | Cosmetics Shop | Coworking Space | Creperie | Cuban Restaurant | Cultural Center | Cupcake Shop | Cycle Studio | Czech Restaurant | Dance Studio | Daycare | Deli / Bodega | Department Store | Design Studio | Dessert Shop | Dim Sum Restaurant | Diner | Discount Store | Dive Bar | Dog Run | Donut Shop | Drugstore | Dry Cleaner | Dumpling Restaurant | Duty-free Shop | Eastern European Restaurant | Electronics Store | Empanada Restaurant | English Restaurant | Ethiopian Restaurant | Event Space | Exhibit | Falafel Restaurant | Farmers Market | Fast Food Restaurant | Filipino Restaurant | Fish Market | Flea Market | Flower Shop | Food & Drink Shop | Food Court | Food Truck | Fountain | French Restaurant | Fried Chicken Joint | Frozen Yogurt Shop | Furniture / Home Store | Gaming Cafe | Garden | Garden Center | Gas Station | Gastropub | Gay Bar | General College & University | General Entertainment | German Restaurant | Gift Shop | Golf Course | Gourmet Shop | Greek Restaurant | Grocery Store | Gym | Gym / Fitness Center | Gym Pool | Gymnastics Gym | Harbor / Marina | Hardware Store | Hawaiian Restaurant | Health & Beauty Service | Health Food Store | Heliport | Herbs & Spices Store | High School | Himalayan Restaurant | Historic Site | History Museum | Hobby Shop | Hookah Bar | Hostel | Hot Dog Joint | Hotel | Hotel Bar | Hotpot Restaurant | Ice Cream Shop | Indian Restaurant | Indie Movie Theater | Indie Theater | Intersection | Irish Pub | Israeli Restaurant | Italian Restaurant | Japanese Curry Restaurant | Japanese Restaurant | Jazz Club | Jewelry Store | Jewish Restaurant | Juice Bar | Karaoke Bar | Kebab Restaurant | Kids Store | Korean Restaurant | Kosher Restaurant | Latin American Restaurant | Laundry Service | Lebanese Restaurant | Library | Lingerie Store | Liquor Store | Lounge | Malay Restaurant | Market | Martial Arts Dojo | Massage Studio | Medical Center | Mediterranean Restaurant | Memorial Site | Men's Store | Metro Station | Mexican Restaurant | Middle Eastern Restaurant | Mini Golf | Miscellaneous Shop | Mobile Phone Shop | Modern European Restaurant | Molecular Gastronomy Restaurant | Monument / Landmark | Moroccan Restaurant | Movie Theater | Museum | Music School | Music Venue | Nail Salon | New American Restaurant | Newsstand | Nightclub | Non-Profit | Noodle House | North Indian Restaurant | Office | Opera House | Optical Shop | Organic Grocery | Other Nightlife | Outdoor Sculpture | Outdoors & Recreation | Paella Restaurant | Pakistani Restaurant | Paper / Office Supplies Store | Park | Pastry Shop | Performing Arts Venue | Persian Restaurant | Peruvian Restaurant | Pet Café | Pet Service | Pet Store | Pharmacy | Photography Studio | Piano Bar | Pie Shop | Pilates Studio | Pizza Place | Playground | Plaza | Poke Place | Pool | Portuguese Restaurant | Pub | Public Art | Ramen Restaurant | Record Shop | Rental Car Location | Residential Building (Apartment / Condo) | Resort | Rest Area | Restaurant | Rock Climbing Spot | Rock Club | Roof Deck | Russian Restaurant | Sake Bar | Salad Place | Salon / Barbershop | Sandwich Place | Scenic Lookout | School | Sculpture Garden | Seafood Restaurant | Shanghai Restaurant | Shipping Store | Shoe Repair | Shoe Store | Shopping Mall | Skate Park | Ski Shop | Smoke Shop | Snack Place | Soba Restaurant | Social Club | Soup Place | South American Restaurant | South Indian Restaurant | Southern / Soul Food Restaurant | Spa | Spanish Restaurant | Speakeasy | Spiritual Center | Sporting Goods Shop | Sports Bar | Sports Club | Steakhouse | Street Art | Strip Club | Supermarket | Supplement Shop | Sushi Restaurant | Swiss Restaurant | Szechuan Restaurant | Taco Place | Tailor Shop | Taiwanese Restaurant | Tapas Restaurant | Tattoo Parlor | Tea Room | Tech Startup | Tennis Court | Tennis Stadium | Thai Restaurant | Theater | Theme Park Ride / Attraction | Thrift / Vintage Store | Tiki Bar | Tourist Information Center | Toy / Game Store | Trail | Tree | Turkish Restaurant | Udon Restaurant | Used Bookstore | Vegetarian / Vegan Restaurant | Venezuelan Restaurant | Veterinarian | Video Game Store | Video Store | Vietnamese Restaurant | Volleyball Court | Watch Shop | Waterfront | Weight Loss Center | Whisky Bar | Wine Bar | Wine Shop | Wings Joint | Women's Store | Yoga Studio | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Marble Hill | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
1 | Marble Hill | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
2 | Marble Hill | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
3 | Marble Hill | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
4 | Marble Hill | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
And let's examine the new dataframe size.
manhattan_onehot.shape
(3317, 333)
manhattan_grouped = manhattan_onehot.groupby('Neighborhood').mean().reset_index()
manhattan_grouped
Neighborhood | Accessories Store | Adult Boutique | Afghan Restaurant | African Restaurant | American Restaurant | Antique Shop | Arcade | Arepa Restaurant | Argentinian Restaurant | Art Gallery | Art Museum | Arts & Crafts Store | Asian Restaurant | Athletics & Sports | Auditorium | Australian Restaurant | Austrian Restaurant | Auto Workshop | BBQ Joint | Baby Store | Bagel Shop | Bakery | Bank | Bar | Baseball Field | Basketball Court | Beer Bar | Beer Garden | Beer Store | Big Box Store | Bike Rental / Bike Share | Bike Shop | Bike Trail | Bistro | Board Shop | Boat or Ferry | Bookstore | Boutique | Boxing Gym | Brazilian Restaurant | Breakfast Spot | Bridal Shop | Bubble Tea Shop | Building | Burger Joint | Burrito Place | Bus Station | Bus Stop | Business Service | Butcher | Cafeteria | Café | Cajun / Creole Restaurant | Cambodian Restaurant | Camera Store | Candy Store | Cantonese Restaurant | Caribbean Restaurant | Caucasian Restaurant | Cheese Shop | Chinese Restaurant | Chocolate Shop | Church | Circus | Climbing Gym | Clothing Store | Club House | Cocktail Bar | Coffee Shop | College Academic Building | College Bookstore | College Cafeteria | College Gym | College Theater | Comedy Club | Community Center | Concert Hall | Convenience Store | Cosmetics Shop | Coworking Space | Creperie | Cuban Restaurant | Cultural Center | Cupcake Shop | Cycle Studio | Czech Restaurant | Dance Studio | Daycare | Deli / Bodega | Department Store | Design Studio | Dessert Shop | Dim Sum Restaurant | Diner | Discount Store | Dive Bar | Dog Run | Donut Shop | Drugstore | Dry Cleaner | Dumpling Restaurant | Duty-free Shop | Eastern European Restaurant | Electronics Store | Empanada Restaurant | English Restaurant | Ethiopian Restaurant | Event Space | Exhibit | Falafel Restaurant | Farmers Market | Fast Food Restaurant | Filipino Restaurant | Fish Market | Flea Market | Flower Shop | Food & Drink Shop | Food Court | Food Truck | Fountain | French Restaurant | Fried Chicken Joint | Frozen Yogurt Shop | Furniture / Home Store | Gaming Cafe | Garden | Garden Center | Gas Station | Gastropub | Gay Bar | General College & University | General Entertainment | German Restaurant | Gift Shop | Golf Course | Gourmet Shop | Greek Restaurant | Grocery Store | Gym | Gym / Fitness Center | Gym Pool | Gymnastics Gym | Harbor / Marina | Hardware Store | Hawaiian Restaurant | Health & Beauty Service | Health Food Store | Heliport | Herbs & Spices Store | High School | Himalayan Restaurant | Historic Site | History Museum | Hobby Shop | Hookah Bar | Hostel | Hot Dog Joint | Hotel | Hotel Bar | Hotpot Restaurant | Ice Cream Shop | Indian Restaurant | Indie Movie Theater | Indie Theater | Intersection | Irish Pub | Israeli Restaurant | Italian Restaurant | Japanese Curry Restaurant | Japanese Restaurant | Jazz Club | Jewelry Store | Jewish Restaurant | Juice Bar | Karaoke Bar | Kebab Restaurant | Kids Store | Korean Restaurant | Kosher Restaurant | Latin American Restaurant | Laundry Service | Lebanese Restaurant | Library | Lingerie Store | Liquor Store | Lounge | Malay Restaurant | Market | Martial Arts Dojo | Massage Studio | Medical Center | Mediterranean Restaurant | Memorial Site | Men's Store | Metro Station | Mexican Restaurant | Middle Eastern Restaurant | Mini Golf | Miscellaneous Shop | Mobile Phone Shop | Modern European Restaurant | Molecular Gastronomy Restaurant | Monument / Landmark | Moroccan Restaurant | Movie Theater | Museum | Music School | Music Venue | Nail Salon | New American Restaurant | Newsstand | Nightclub | Non-Profit | Noodle House | North Indian Restaurant | Office | Opera House | Optical Shop | Organic Grocery | Other Nightlife | Outdoor Sculpture | Outdoors & Recreation | Paella Restaurant | Pakistani Restaurant | Paper / Office Supplies Store | Park | Pastry Shop | Performing Arts Venue | Persian Restaurant | Peruvian Restaurant | Pet Café | Pet Service | Pet Store | Pharmacy | Photography Studio | Piano Bar | Pie Shop | Pilates Studio | Pizza Place | Playground | Plaza | Poke Place | Pool | Portuguese Restaurant | Pub | Public Art | Ramen Restaurant | Record Shop | Rental Car Location | Residential Building (Apartment / Condo) | Resort | Rest Area | Restaurant | Rock Climbing Spot | Rock Club | Roof Deck | Russian Restaurant | Sake Bar | Salad Place | Salon / Barbershop | Sandwich Place | Scenic Lookout | School | Sculpture Garden | Seafood Restaurant | Shanghai Restaurant | Shipping Store | Shoe Repair | Shoe Store | Shopping Mall | Skate Park | Ski Shop | Smoke Shop | Snack Place | Soba Restaurant | Social Club | Soup Place | South American Restaurant | South Indian Restaurant | Southern / Soul Food Restaurant | Spa | Spanish Restaurant | Speakeasy | Spiritual Center | Sporting Goods Shop | Sports Bar | Sports Club | Steakhouse | Street Art | Strip Club | Supermarket | Supplement Shop | Sushi Restaurant | Swiss Restaurant | Szechuan Restaurant | Taco Place | Tailor Shop | Taiwanese Restaurant | Tapas Restaurant | Tattoo Parlor | Tea Room | Tech Startup | Tennis Court | Tennis Stadium | Thai Restaurant | Theater | Theme Park Ride / Attraction | Thrift / Vintage Store | Tiki Bar | Tourist Information Center | Toy / Game Store | Trail | Tree | Turkish Restaurant | Udon Restaurant | Used Bookstore | Vegetarian / Vegan Restaurant | Venezuelan Restaurant | Veterinarian | Video Game Store | Video Store | Vietnamese Restaurant | Volleyball Court | Watch Shop | Waterfront | Weight Loss Center | Whisky Bar | Wine Bar | Wine Shop | Wings Joint | Women's Store | Yoga Studio | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Battery Park City | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.01000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.010000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.020000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.030000 | 0.00 | 0.000000 | 0.070000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.02 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.020000 | 0.010000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.000000 | 0.010000 | 0.040000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.050000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.030000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.02 | 0.01 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.080000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.020000 | 0.020000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.020000 | 0.010000 | 0.000000 | 0.01 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.02 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.020000 | 0.000000 |
1 | Carnegie Hill | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.020000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.010000 | 0.00 | 0.010000 | 0.050000 | 0.00 | 0.00 | 0.00000 | 0.01 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.010000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.000000 | 0.030000 | 0.030000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.00000 | 0.030000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.060000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.020000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.030000 | 0.000000 | 0.010000 | 0.030000 |
2 | Central Harlem | 0.000000 | 0.00 | 0.00 | 0.069767 | 0.046512 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.023256 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.023256 | 0.00 | 0.023256 | 0.000000 | 0.000000 | 0.023256 | 0.000000 | 0.000000 | 0.023256 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.023256 | 0.023256 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.023256 | 0.023256 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.023256 | 0.000000 | 0.00 | 0.046512 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.046512 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.023256 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.023256 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.023256 | 0.023256 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.046512 | 0.023256 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.023256 | 0.046512 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.023256 | 0.00 | 0.000000 | 0.023256 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.023256 | 0.000000 | 0.023256 | 0.000000 | 0.000000 | 0.023256 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.023256 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.023256 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.023256 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.046512 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.046512 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.023256 | 0.023256 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
3 | Chelsea | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.040000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.010000 | 0.060000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00000 | 0.00 | 0.02 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.01 | 0.01 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.02 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.000000 | 0.00 | 0.050000 | 0.010000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.01 | 0.050000 | 0.00000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.040000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.00 | 0.030000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.010000 | 0.000000 |
4 | Chinatown | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.100000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.040000 | 0.010000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.02 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.03000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.010000 | 0.010000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.02 | 0.030000 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00000 | 0.000000 | 0.000000 | 0.02 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.02 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.03 | 0.00 | 0.00 | 0.00 | 0.02 | 0.01 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
5 | Civic Center | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.040000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.010000 | 0.00 | 0.030000 | 0.040000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.01000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.040000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.020000 | 0.050000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.020000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.060000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.01 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.01 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.01 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.010000 | 0.010000 | 0.000000 | 0.030000 |
6 | Clinton | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.030000 | 0.020000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.01 | 0.020000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.020000 | 0.000000 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.020000 | 0.050000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.010000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.02 | 0.000000 | 0.00 | 0.00 | 0.040000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.010000 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.01 | 0.00 | 0.010000 | 0.00000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.130000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 |
7 | East Harlem | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.097561 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.024390 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.024390 | 0.00 | 0.024390 | 0.024390 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.024390 | 0.000000 | 0.00 | 0.00 | 0.02439 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.024390 | 0.00 | 0.073171 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.024390 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.024390 | 0.024390 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.024390 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.073171 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.121951 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.024390 | 0.024390 | 0.00 | 0.00 | 0.00 | 0.00 | 0.024390 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.024390 | 0.024390 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.024390 | 0.02439 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.024390 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.048780 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
8 | East Village | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.01 | 0.00 | 0.020000 | 0.010000 | 0.010000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.010000 | 0.000000 | 0.060000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.01 | 0.040000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.030000 | 0.030000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.01 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.00000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.040000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.02 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.010000 | 0.02 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.03 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.050000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 |
9 | Financial District | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.010000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.010000 | 0.080000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.01 | 0.00 | 0.01000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.020000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.010000 | 0.020000 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.040000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.000000 | 0.00 | 0.010000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.030000 | 0.01000 | 0.020000 | 0.000000 | 0.02 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.02 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.030000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.040000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.040000 | 0.000000 | 0.010000 | 0.000000 |
10 | Flatiron | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.030000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.01000 | 0.00 | 0.00 | 0.030000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.000000 | 0.010000 | 0.040000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.010000 | 0.00000 | 0.040000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.01 | 0.00 | 0.010000 | 0.030000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.010000 | 0.00 | 0.030000 | 0.00 | 0.01 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.02 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.020000 | 0.040000 |
11 | Gramercy | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.010000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.010000 | 0.00000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.040000 | 0.030000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.030000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.010000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.01 | 0.050000 | 0.00000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.01 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.040000 | 0.020000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.030000 | 0.000000 | 0.00 | 0.04 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.010000 |
12 | Greenwich Village | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.020000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.040000 | 0.00 | 0.020000 | 0.020000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.01 | 0.01000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.01 | 0.02 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.040000 | 0.000000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.02 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.020000 | 0.030000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.100000 | 0.00000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.010000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 |
13 | Hamilton Heights | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.033333 | 0.016667 | 0.016667 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.016667 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.066667 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.033333 | 0.000000 | 0.00 | 0.033333 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.033333 | 0.066667 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.016667 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.033333 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.016667 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.016667 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.016667 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.016667 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.016667 | 0.000000 | 0.00 | 0.016667 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.033333 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.016667 | 0.00000 | 0.016667 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.016667 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.033333 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.016667 | 0.00 | 0.00 | 0.000000 | 0.083333 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.016667 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.066667 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.016667 | 0.000000 | 0.000000 | 0.00 | 0.016667 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.033333 | 0.000000 | 0.033333 | 0.00 | 0.016667 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.016667 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.016667 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.033333 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.016667 | 0.000000 | 0.000000 | 0.000000 | 0.033333 |
14 | Hudson Yards | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.068493 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.013699 | 0.00 | 0.000000 | 0.013699 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.013699 | 0.000000 | 0.013699 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.013699 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.013699 | 0.027397 | 0.00 | 0.013699 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.041096 | 0.00 | 0.00 | 0.013699 | 0.00 | 0.00 | 0.000000 | 0.013699 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.013699 | 0.054795 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.013699 | 0.000000 | 0.013699 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.013699 | 0.013699 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.027397 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.013699 | 0.013699 | 0.000000 | 0.000000 | 0.013699 | 0.000000 | 0.013699 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.013699 | 0.000000 | 0.027397 | 0.041096 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.013699 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.041096 | 0.013699 | 0.00 | 0.013699 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.054795 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.013699 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.013699 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.013699 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.013699 | 0.000000 | 0.027397 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.013699 | 0.000000 | 0.00 | 0.000000 | 0.013699 | 0.00 | 0.000000 | 0.027397 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.013699 | 0.000000 | 0.013699 | 0.013699 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.013699 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.013699 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.013699 | 0.00000 | 0.00 | 0.013699 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.027397 | 0.041096 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.013699 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
15 | Inwood | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.035088 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.035088 | 0.000000 | 0.017544 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.017544 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.017544 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.070175 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.017544 | 0.000000 | 0.00 | 0.035088 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.017544 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.035088 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.017544 | 0.00 | 0.00 | 0.017544 | 0.017544 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.017544 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.017544 | 0.017544 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.035088 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.017544 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.017544 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.017544 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.017544 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.017544 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.070175 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.070175 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.035088 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.017544 | 0.017544 | 0.00 | 0.00 | 0.00 | 0.00 | 0.052632 | 0.017544 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.017544 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.017544 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.017544 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.017544 | 0.00000 | 0.00 | 0.017544 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.017544 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.017544 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.035088 | 0.017544 | 0.000000 | 0.000000 | 0.017544 |
16 | Lenox Hill | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.010000 | 0.020000 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.01 | 0.020000 | 0.060000 | 0.01 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.01000 | 0.00 | 0.00 | 0.020000 | 0.01 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.010000 | 0.010000 | 0.030000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.060000 | 0.00000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.040000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.020000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.030000 | 0.00 | 0.00 | 0.010000 | 0.00000 | 0.00 | 0.000000 | 0.010000 | 0.050000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.02 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.020000 | 0.000000 | 0.010000 | 0.000000 |
17 | Lincoln Square | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.050000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.01000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.050000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.010000 | 0.010000 | 0.040000 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.020000 | 0.060000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.03 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.050000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.02 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.04 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.040000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.050000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.060000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.020000 | 0.000000 | 0.000000 | 0.010000 |
18 | Little Italy | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.050000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.01 | 0.00 | 0.00 | 0.00000 | 0.030000 | 0.00 | 0.020000 | 0.010000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.030000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.030000 | 0.00000 | 0.020000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.010000 | 0.02 | 0.00 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.01 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.030000 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.010000 | 0.000000 | 0.020000 | 0.020000 |
19 | Lower East Side | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.015873 | 0.00 | 0.00 | 0.000000 | 0.015873 | 0.031746 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.015873 | 0.000000 | 0.00 | 0.015873 | 0.031746 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.015873 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.015873 | 0.000000 | 0.047619 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.047619 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.015873 | 0.00 | 0.031746 | 0.047619 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.015873 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.015873 | 0.00 | 0.015873 | 0.000000 | 0.00 | 0.015873 | 0.00 | 0.015873 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.015873 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.015873 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.015873 | 0.015873 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.015873 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.015873 | 0.00000 | 0.031746 | 0.000000 | 0.00 | 0.000000 | 0.015873 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.015873 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.015873 | 0.00 | 0.00 | 0.000000 | 0.015873 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.015873 | 0.00 | 0.000000 | 0.00 | 0.015873 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.015873 | 0.00 | 0.015873 | 0.00 | 0.000000 | 0.015873 | 0.000000 | 0.000000 | 0.015873 | 0.00 | 0.00 | 0.00 | 0.00 | 0.031746 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.047619 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.015873 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.031746 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.031746 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.015873 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.015873 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.015873 | 0.00 | 0.015873 | 0.015873 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.015873 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.015873 | 0.015873 |
20 | Manhattan Valley | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.016667 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.016667 | 0.000000 | 0.033333 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.016667 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.016667 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.033333 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.016667 | 0.000000 | 0.00 | 0.016667 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.016667 | 0.00 | 0.000000 | 0.050000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.016667 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.033333 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.016667 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.016667 | 0.000000 | 0.00 | 0.016667 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.016667 | 0.016667 | 0.000000 | 0.016667 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.016667 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.016667 | 0.000000 | 0.016667 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.016667 | 0.00 | 0.016667 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.016667 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.016667 | 0.050000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.016667 | 0.00000 | 0.016667 | 0.000000 | 0.00 | 0.000000 | 0.016667 | 0.00 | 0.00 | 0.000000 | 0.016667 | 0.00 | 0.016667 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.016667 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.033333 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.016667 | 0.00 | 0.000000 | 0.00 | 0.016667 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.050000 | 0.033333 | 0.016667 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.033333 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.016667 | 0.00 | 0.016667 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.033333 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.016667 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.016667 | 0.016667 | 0.000000 | 0.033333 |
21 | Manhattanville | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.024390 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.024390 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.024390 | 0.000000 | 0.000000 | 0.000000 | 0.02439 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.02439 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.00 | 0.024390 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.048780 | 0.00 | 0.00 | 0.00 | 0.02439 | 0.000000 | 0.00 | 0.000000 | 0.073171 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.02439 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.024390 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.024390 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.02439 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.02439 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.024390 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.024390 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.048780 | 0.02439 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.024390 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.024390 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.048780 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.024390 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.02439 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.048780 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.048780 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.024390 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
22 | Marble Hill | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.040000 | 0.040000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.04 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.080000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.040000 | 0.040000 | 0.00 | 0.000000 | 0.00 | 0.040000 | 0.08 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.040000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.040000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.040000 | 0.00000 | 0.00 | 0.000000 | 0.040000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.04 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.040000 |
23 | Midtown | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.01 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.01 | 0.00 | 0.00 | 0.00000 | 0.050000 | 0.00 | 0.040000 | 0.030000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.01000 | 0.00 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.040000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.020000 | 0.010000 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.080000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.020000 | 0.000000 | 0.01 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.02 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.00 | 0.00 | 0.040000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.040000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.010000 |
24 | Midtown South | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.020000 | 0.00 | 0.030000 | 0.050000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.00000 | 0.020000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.01 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.060000 | 0.050000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.030000 | 0.00000 | 0.040000 | 0.000000 | 0.01 | 0.000000 | 0.010000 | 0.01 | 0.00 | 0.000000 | 0.150000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.010000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 |
25 | Morningside Heights | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.071429 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.023810 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.071429 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.047619 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.047619 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.095238 | 0.00 | 0.00 | 0.02381 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.047619 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.023810 | 0.000000 | 0.00 | 0.000000 | 0.023810 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.047619 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.023810 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.023810 | 0.023810 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.023810 | 0.023810 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.047619 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.02381 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.071429 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.023810 | 0.00 | 0.00 | 0.00 | 0.00 | 0.023810 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.023810 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.023810 | 0.000000 | 0.023810 | 0.000000 | 0.000000 | 0.00 | 0.023810 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.023810 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.047619 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
26 | Murray Hill | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.020000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.020000 | 0.040000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.02000 | 0.01 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.010000 | 0.000000 | 0.030000 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.030000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.030000 | 0.00000 | 0.040000 | 0.010000 | 0.00 | 0.020000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.01 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.040000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
27 | Noho | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.030000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.050000 | 0.030000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.050000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.01 | 0.010000 | 0.030000 | 0.010000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.010000 | 0.00 | 0.020000 | 0.010000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.060000 | 0.00000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.02 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.01000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.010000 | 0.020000 | 0.010000 | 0.000000 | 0.010000 |
28 | Roosevelt Island | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.038462 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.038462 | 0.00 | 0.000000 | 0.000000 | 0.038462 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.076923 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.076923 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.038462 | 0.000000 | 0.00 | 0.038462 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.038462 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.038462 | 0.000000 | 0.038462 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.038462 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.038462 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.038462 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.038462 | 0.00 | 0.000000 | 0.000000 | 0.038462 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.038462 | 0.038462 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.038462 | 0.038462 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.076923 | 0.000000 | 0.038462 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.038462 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.038462 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
29 | Soho | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.01 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.060000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.100000 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.01 | 0.010000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.02 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.030000 | 0.00000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.030000 | 0.00 | 0.04 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.040000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.01 | 0.02 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.02 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.060000 | 0.020000 |
30 | Stuyvesant Town | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.210526 | 0.052632 | 0.052632 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.052632 | 0.052632 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.052632 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.052632 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.052632 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.052632 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.052632 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.052632 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.105263 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.052632 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.105263 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
31 | Sutton Place | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.010000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.010000 | 0.02000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.02 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.020000 | 0.01 | 0.030000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.040000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.010000 | 0.020000 | 0.030000 | 0.060000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.020000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.050000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.01 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.02 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.00 | 0.010000 | 0.00000 | 0.01 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.010000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.020000 |
32 | Tribeca | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.050000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.010000 | 0.00 | 0.020000 | 0.030000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.030000 | 0.000000 | 0.030000 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.01 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.050000 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.02 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.050000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.020000 | 0.000000 | 0.02 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.020000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.030000 | 0.030000 | 0.000000 | 0.000000 | 0.010000 |
33 | Tudor City | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.012195 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.036585 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.012195 | 0.000000 | 0.012195 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.048780 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.012195 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.012195 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.036585 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.024390 | 0.00 | 0.00 | 0.036585 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.012195 | 0.000000 | 0.012195 | 0.000000 | 0.00 | 0.012195 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.012195 | 0.00 | 0.00 | 0.048780 | 0.000000 | 0.012195 | 0.012195 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.012195 | 0.00 | 0.000000 | 0.012195 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.036585 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.012195 | 0.00000 | 0.012195 | 0.000000 | 0.00 | 0.012195 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.012195 | 0.00 | 0.00 | 0.000000 | 0.012195 | 0.012195 | 0.012195 | 0.000000 | 0.000000 | 0.012195 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.060976 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.060976 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.012195 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.036585 | 0.000000 | 0.012195 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.024390 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.012195 | 0.024390 | 0.000000 | 0.000000 | 0.00 | 0.012195 | 0.012195 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.024390 | 0.024390 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.036585 | 0.00 | 0.000000 | 0.012195 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.012195 | 0.00 | 0.024390 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.012195 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.024390 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.012195 |
34 | Turtle Bay | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.010000 | 0.040000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.010000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.020000 | 0.00 | 0.00 | 0.020000 | 0.010000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.050000 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.060000 | 0.01000 | 0.030000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.02 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.02 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.050000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.050000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.040000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
35 | Upper East Side | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.01 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.040000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.010000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.01 | 0.00 | 0.00 | 0.00000 | 0.010000 | 0.00 | 0.030000 | 0.050000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.07 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.020000 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.080000 | 0.00000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.020000 | 0.010000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.02 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.010000 | 0.020000 |
36 | Upper West Side | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.030000 | 0.000000 | 0.040000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.010000 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.01 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.01000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.060000 | 0.00000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.030000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.02 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.01 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.01000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.020000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.01 | 0.010000 | 0.00 | 0.01 | 0.00 | 0.01 | 0.03 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.040000 | 0.010000 | 0.000000 | 0.000000 | 0.010000 |
37 | Washington Heights | 0.011765 | 0.00 | 0.00 | 0.000000 | 0.011765 | 0.00 | 0.00 | 0.011765 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.047059 | 0.000000 | 0.011765 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.011765 | 0.00 | 0.000000 | 0.000000 | 0.011765 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.058824 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.011765 | 0.000000 | 0.00 | 0.023529 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.011765 | 0.00 | 0.011765 | 0.011765 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.023529 | 0.011765 | 0.00 | 0.000000 | 0.00 | 0.011765 | 0.00 | 0.00 | 0.000000 | 0.011765 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.011765 | 0.011765 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.035294 | 0.023529 | 0.011765 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.011765 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.011765 | 0.00000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.011765 | 0.000000 | 0.00 | 0.023529 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.011765 | 0.011765 | 0.000000 | 0.011765 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.023529 | 0.00 | 0.00 | 0.00 | 0.035294 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.023529 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.011765 | 0.023529 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.011765 | 0.011765 | 0.00 | 0.00 | 0.00 | 0.00 | 0.023529 | 0.000000 | 0.011765 | 0.00 | 0.011765 | 0.00 | 0.000000 | 0.000000 | 0.011765 | 0.00 | 0.011765 | 0.000000 | 0.00 | 0.011765 | 0.011765 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.023529 | 0.011765 | 0.000000 | 0.00 | 0.011765 | 0.000000 | 0.011765 | 0.00 | 0.023529 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.023529 | 0.000000 | 0.00 | 0.011765 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.023529 | 0.023529 | 0.011765 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.023529 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.011765 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.011765 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.011765 | 0.023529 | 0.000000 | 0.011765 | 0.000000 |
38 | West Village | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.040000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.000000 | 0.01 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.01 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.010000 | 0.00 | 0.020000 | 0.020000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.050000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01000 | 0.000000 | 0.000000 | 0.000000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.040000 | 0.02 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.02 | 0.000000 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.100000 | 0.00000 | 0.020000 | 0.040000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.050000 | 0.01 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.030000 | 0.00 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.020000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.010000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.01 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.040000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
39 | Yorkville | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.020000 | 0.010000 | 0.010000 | 0.060000 | 0.000000 | 0.000000 | 0.000000 | 0.00000 | 0.01 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.050000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.030000 | 0.000000 | 0.00 | 0.020000 | 0.00 | 0.030000 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.010000 | 0.000000 | 0.00 | 0.01 | 0.000000 | 0.000000 | 0.060000 | 0.010000 | 0.00 | 0.01 | 0.000000 | 0.00 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.01 | 0.000000 | 0.000000 | 0.00 | 0.030000 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.060000 | 0.00000 | 0.030000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.010000 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.00 | 0.00 | 0.000000 | 0.030000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.01 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.010000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00000 | 0.00000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.020000 | 0.00 | 0.000000 | 0.00 | 0.010000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.040000 | 0.000000 | 0.000000 | 0.00 | 0.010000 | 0.00 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.010000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.020000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.000000 | 0.00000 | 0.00 | 0.000000 | 0.000000 | 0.040000 | 0.00 | 0.000000 | 0.000000 | 0.000000 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.020000 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.00 | 0.000000 | 0.000000 | 0.01 | 0.020000 | 0.00 | 0.00 | 0.000000 | 0.00 | 0.00 | 0.010000 | 0.030000 | 0.000000 | 0.000000 | 0.000000 |
manhattan_grouped.shape
(40, 333)
num_top_venues = 5
for hood in manhattan_grouped['Neighborhood']:
print("----"+hood+"----")
temp = manhattan_grouped[manhattan_grouped['Neighborhood'] == hood].T.reset_index()
temp.columns = ['venue','freq']
temp = temp.iloc[1:]
temp['freq'] = temp['freq'].astype(float)
temp = temp.round({'freq': 2})
print(temp.sort_values('freq', ascending=False).reset_index(drop=True).head(num_top_venues))
print('\n')
----Battery Park City---- venue freq 0 Park 0.08 1 Coffee Shop 0.07 2 Hotel 0.05 3 Gym 0.04 4 Italian Restaurant 0.03 ----Carnegie Hill---- venue freq 0 Pizza Place 0.06 1 Coffee Shop 0.05 2 Café 0.04 3 Cosmetics Shop 0.04 4 Yoga Studio 0.03 ----Central Harlem---- venue freq 0 African Restaurant 0.07 1 French Restaurant 0.05 2 Chinese Restaurant 0.05 3 American Restaurant 0.05 4 Seafood Restaurant 0.05 ----Chelsea---- venue freq 0 Coffee Shop 0.06 1 Italian Restaurant 0.05 2 Ice Cream Shop 0.05 3 Nightclub 0.04 4 Bakery 0.04 ----Chinatown---- venue freq 0 Chinese Restaurant 0.10 1 Cocktail Bar 0.04 2 American Restaurant 0.04 3 Vietnamese Restaurant 0.04 4 Ice Cream Shop 0.03 ----Civic Center---- venue freq 0 Italian Restaurant 0.06 1 Gym / Fitness Center 0.05 2 Coffee Shop 0.04 3 French Restaurant 0.04 4 Sandwich Place 0.04 ----Clinton---- venue freq 0 Theater 0.13 1 Gym / Fitness Center 0.05 2 Hotel 0.04 3 Italian Restaurant 0.04 4 American Restaurant 0.04 ----East Harlem---- venue freq 0 Mexican Restaurant 0.12 1 Bakery 0.10 2 Deli / Bodega 0.07 3 Latin American Restaurant 0.07 4 Thai Restaurant 0.05 ----East Village---- venue freq 0 Bar 0.06 1 Wine Bar 0.05 2 Ice Cream Shop 0.04 3 Mexican Restaurant 0.04 4 Pizza Place 0.04 ----Financial District---- venue freq 0 Coffee Shop 0.08 1 Steakhouse 0.04 2 Wine Shop 0.04 3 Hotel 0.04 4 Gym 0.04 ----Flatiron---- venue freq 0 Yoga Studio 0.04 1 American Restaurant 0.04 2 Japanese Restaurant 0.04 3 Gym / Fitness Center 0.04 4 Gym 0.04 ----Gramercy---- venue freq 0 Italian Restaurant 0.05 1 Cocktail Bar 0.04 2 American Restaurant 0.04 3 Thrift / Vintage Store 0.04 4 Pizza Place 0.04 ----Greenwich Village---- venue freq 0 Italian Restaurant 0.10 1 Clothing Store 0.04 2 French Restaurant 0.04 3 Sushi Restaurant 0.04 4 Seafood Restaurant 0.03 ----Hamilton Heights---- venue freq 0 Mexican Restaurant 0.08 1 Pizza Place 0.07 2 Coffee Shop 0.07 3 Café 0.07 4 Yoga Studio 0.03 ----Hudson Yards---- venue freq 0 American Restaurant 0.07 1 Coffee Shop 0.05 2 Italian Restaurant 0.05 3 Hotel 0.04 4 Theater 0.04 ----Inwood---- venue freq 0 Mexican Restaurant 0.07 1 Café 0.07 2 Lounge 0.07 3 Pizza Place 0.05 4 Deli / Bodega 0.04 ----Lenox Hill---- venue freq 0 Italian Restaurant 0.06 1 Coffee Shop 0.06 2 Sushi Restaurant 0.05 3 Pizza Place 0.04 4 Burger Joint 0.03 ----Lincoln Square---- venue freq 0 Gym / Fitness Center 0.06 1 Theater 0.06 2 Italian Restaurant 0.05 3 Plaza 0.05 4 Café 0.05 ----Little Italy---- venue freq 0 Bakery 0.05 1 Café 0.04 2 Ice Cream Shop 0.03 3 Salon / Barbershop 0.03 4 Sandwich Place 0.03 ----Lower East Side---- venue freq 0 Ramen Restaurant 0.05 1 Coffee Shop 0.05 2 Chinese Restaurant 0.05 3 Café 0.05 4 Japanese Restaurant 0.03 ----Manhattan Valley---- venue freq 0 Coffee Shop 0.05 1 Indian Restaurant 0.05 2 Pizza Place 0.05 3 Yoga Studio 0.03 4 Playground 0.03 ----Manhattanville---- venue freq 0 Coffee Shop 0.07 1 Chinese Restaurant 0.05 2 Park 0.05 3 Seafood Restaurant 0.05 4 Italian Restaurant 0.05 ----Marble Hill---- venue freq 0 Discount Store 0.08 1 Coffee Shop 0.08 2 Bakery 0.04 3 Big Box Store 0.04 4 Tennis Stadium 0.04 ----Midtown---- venue freq 0 Hotel 0.08 1 Clothing Store 0.05 2 Steakhouse 0.04 3 Theater 0.04 4 Food Truck 0.04 ----Midtown South---- venue freq 0 Korean Restaurant 0.15 1 Hotel 0.06 2 Hotel Bar 0.05 3 Coffee Shop 0.05 4 Japanese Restaurant 0.04 ----Morningside Heights---- venue freq 0 Coffee Shop 0.10 1 Park 0.07 2 American Restaurant 0.07 3 Bookstore 0.07 4 Café 0.05 ----Murray Hill---- venue freq 0 Coffee Shop 0.04 1 Hotel 0.04 2 Sandwich Place 0.04 3 Japanese Restaurant 0.04 4 Italian Restaurant 0.03 ----Noho---- venue freq 0 Italian Restaurant 0.06 1 French Restaurant 0.05 2 Cocktail Bar 0.05 3 Gift Shop 0.03 4 Boutique 0.03 ----Roosevelt Island---- venue freq 0 Deli / Bodega 0.08 1 Coffee Shop 0.08 2 Sandwich Place 0.08 3 Metro Station 0.04 4 Liquor Store 0.04 ----Soho---- venue freq 0 Clothing Store 0.10 1 Women's Store 0.06 2 Boutique 0.06 3 Men's Store 0.04 4 Shoe Store 0.04 ----Stuyvesant Town---- venue freq 0 Bar 0.21 1 Park 0.11 2 Playground 0.11 3 Heliport 0.05 4 Basketball Court 0.05 ----Sutton Place---- venue freq 0 Gym / Fitness Center 0.06 1 Italian Restaurant 0.05 2 Furniture / Home Store 0.04 3 Indian Restaurant 0.04 4 American Restaurant 0.03 ----Tribeca---- venue freq 0 Italian Restaurant 0.05 1 Café 0.05 2 Park 0.05 3 Boutique 0.04 4 American Restaurant 0.04 ----Tudor City---- venue freq 0 Mexican Restaurant 0.06 1 Park 0.06 2 Greek Restaurant 0.05 3 Café 0.05 4 Sushi Restaurant 0.04 ----Turtle Bay---- venue freq 0 Italian Restaurant 0.06 1 Hotel 0.05 2 Steakhouse 0.05 3 Sushi Restaurant 0.05 4 Coffee Shop 0.04 ----Upper East Side---- venue freq 0 Italian Restaurant 0.08 1 Exhibit 0.07 2 Coffee Shop 0.05 3 Gym / Fitness Center 0.04 4 Juice Bar 0.04 ----Upper West Side---- venue freq 0 Italian Restaurant 0.06 1 Wine Bar 0.04 2 Bar 0.04 3 Coffee Shop 0.03 4 Mediterranean Restaurant 0.03 ----Washington Heights---- venue freq 0 Café 0.06 1 Bakery 0.05 2 Grocery Store 0.04 3 Mobile Phone Shop 0.04 4 Latin American Restaurant 0.02 ----West Village---- venue freq 0 Italian Restaurant 0.10 1 New American Restaurant 0.05 2 Cosmetics Shop 0.05 3 Wine Bar 0.04 4 Jazz Club 0.04 ----Yorkville---- venue freq 0 Gym 0.06 1 Italian Restaurant 0.06 2 Bar 0.06 3 Coffee Shop 0.05 4 Pizza Place 0.04
First, let's write a function to sort the venues in descending order.
def return_most_common_venues(row, num_top_venues):
row_categories = row.iloc[1:]
row_categories_sorted = row_categories.sort_values(ascending=False)
return row_categories_sorted.index.values[0:num_top_venues]
Now let's create the new dataframe and display the top 10 venues for each neighborhood.
num_top_venues = 10
indicators = ['st', 'nd', 'rd']
# create columns according to number of top venues
columns = ['Neighborhood']
for ind in np.arange(num_top_venues):
try:
columns.append('{}{} Most Common Venue'.format(ind+1, indicators[ind]))
except:
columns.append('{}th Most Common Venue'.format(ind+1))
# create a new dataframe
neighborhoods_venues_sorted = pd.DataFrame(columns=columns)
neighborhoods_venues_sorted['Neighborhood'] = manhattan_grouped['Neighborhood']
for ind in np.arange(manhattan_grouped.shape[0]):
neighborhoods_venues_sorted.iloc[ind, 1:] = return_most_common_venues(manhattan_grouped.iloc[ind, :], num_top_venues)
neighborhoods_venues_sorted.head()
Neighborhood | 1st Most Common Venue | 2nd Most Common Venue | 3rd Most Common Venue | 4th Most Common Venue | 5th Most Common Venue | 6th Most Common Venue | 7th Most Common Venue | 8th Most Common Venue | 9th Most Common Venue | 10th Most Common Venue | |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | Battery Park City | Park | Coffee Shop | Hotel | Gym | Wine Shop | Italian Restaurant | Clothing Store | Plaza | Memorial Site | Burger Joint |
1 | Carnegie Hill | Pizza Place | Coffee Shop | Café | Cosmetics Shop | Grocery Store | Bar | Spa | French Restaurant | Japanese Restaurant | Yoga Studio |
2 | Central Harlem | African Restaurant | Public Art | Cosmetics Shop | French Restaurant | Chinese Restaurant | Seafood Restaurant | Gym / Fitness Center | American Restaurant | Park | Southern / Soul Food Restaurant |
3 | Chelsea | Coffee Shop | Italian Restaurant | Ice Cream Shop | Nightclub | Bakery | American Restaurant | Hotel | Seafood Restaurant | Theater | Cupcake Shop |
4 | Chinatown | Chinese Restaurant | Cocktail Bar | American Restaurant | Vietnamese Restaurant | Bubble Tea Shop | Noodle House | Bar | Dumpling Restaurant | Ice Cream Shop | Hotpot Restaurant |
Run k-means to cluster the neighborhood into 5 clusters.
# set number of clusters
kclusters = 5
manhattan_grouped_clustering = manhattan_grouped.drop('Neighborhood', 1)
# run k-means clustering
kmeans = KMeans(n_clusters=kclusters, random_state=0).fit(manhattan_grouped_clustering)
# check cluster labels generated for each row in the dataframe
kmeans.labels_[0:10]
array([3, 1, 1, 3, 1, 0, 0, 4, 1, 3], dtype=int32)
Let's create a new dataframe that includes the cluster as well as the top 10 venues for each neighborhood.
# add clustering labels
neighborhoods_venues_sorted.insert(0, 'Cluster Labels', kmeans.labels_)
manhattan_merged = manhattan_data
# merge toronto_grouped with toronto_data to add latitude/longitude for each neighborhood
manhattan_merged = manhattan_merged.join(neighborhoods_venues_sorted.set_index('Neighborhood'), on='Neighborhood')
manhattan_merged.head() # check the last columns!
Borough | Neighborhood | Latitude | Longitude | Cluster Labels | 1st Most Common Venue | 2nd Most Common Venue | 3rd Most Common Venue | 4th Most Common Venue | 5th Most Common Venue | 6th Most Common Venue | 7th Most Common Venue | 8th Most Common Venue | 9th Most Common Venue | 10th Most Common Venue | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Manhattan | Marble Hill | 40.876551 | -73.910660 | 4 | Discount Store | Coffee Shop | Yoga Studio | Seafood Restaurant | Gym | Tennis Stadium | Big Box Store | Supplement Shop | Steakhouse | Shoe Store |
1 | Manhattan | Chinatown | 40.715618 | -73.994279 | 1 | Chinese Restaurant | Cocktail Bar | American Restaurant | Vietnamese Restaurant | Bubble Tea Shop | Noodle House | Bar | Dumpling Restaurant | Ice Cream Shop | Hotpot Restaurant |
2 | Manhattan | Washington Heights | 40.851903 | -73.936900 | 4 | Café | Bakery | Mobile Phone Shop | Grocery Store | Pizza Place | Chinese Restaurant | Latin American Restaurant | Mexican Restaurant | Tapas Restaurant | Shoe Store |
3 | Manhattan | Inwood | 40.867684 | -73.921210 | 4 | Lounge | Mexican Restaurant | Café | Pizza Place | Wine Bar | Deli / Bodega | Park | American Restaurant | Frozen Yogurt Shop | Chinese Restaurant |
4 | Manhattan | Hamilton Heights | 40.823604 | -73.949688 | 4 | Mexican Restaurant | Café | Coffee Shop | Pizza Place | Yoga Studio | Sushi Restaurant | Caribbean Restaurant | Chinese Restaurant | School | Bakery |
Finally, let's visualize the resulting clusters
# create map
map_clusters = folium.Map(location=[latitude, longitude], zoom_start=11)
# set color scheme for the clusters
x = np.arange(kclusters)
ys = [i + x + (i*x)**2 for i in range(kclusters)]
colors_array = cm.rainbow(np.linspace(0, 1, len(ys)))
rainbow = [colors.rgb2hex(i) for i in colors_array]
# add markers to the map
markers_colors = []
for lat, lon, poi, cluster in zip(manhattan_merged['Latitude'], manhattan_merged['Longitude'], manhattan_merged['Neighborhood'], manhattan_merged['Cluster Labels']):
label = folium.Popup(str(poi) + ' Cluster ' + str(cluster), parse_html=True)
folium.CircleMarker(
[lat, lon],
radius=5,
popup=label,
color=rainbow[cluster-1],
fill=True,
fill_color=rainbow[cluster-1],
fill_opacity=0.7).add_to(map_clusters)
map_clusters
Now, you can examine each cluster and determine the discriminating venue categories that distinguish each cluster. Based on the defining categories, you can then assign a name to each cluster. I will leave this exercise to you.
manhattan_merged.loc[manhattan_merged['Cluster Labels'] == 0, manhattan_merged.columns[[1] + list(range(5, manhattan_merged.shape[1]))]]
Neighborhood | 1st Most Common Venue | 2nd Most Common Venue | 3rd Most Common Venue | 4th Most Common Venue | 5th Most Common Venue | 6th Most Common Venue | 7th Most Common Venue | 8th Most Common Venue | 9th Most Common Venue | 10th Most Common Venue | |
---|---|---|---|---|---|---|---|---|---|---|---|
8 | Upper East Side | Italian Restaurant | Exhibit | Coffee Shop | Bakery | Gym / Fitness Center | Art Gallery | Juice Bar | Hotel | Spa | Cocktail Bar |
13 | Lincoln Square | Gym / Fitness Center | Theater | Café | Concert Hall | Plaza | Italian Restaurant | Opera House | Performing Arts Venue | French Restaurant | Indie Movie Theater |
14 | Clinton | Theater | Gym / Fitness Center | Italian Restaurant | American Restaurant | Hotel | Cocktail Bar | Wine Shop | Spa | Indie Theater | Lounge |
18 | Greenwich Village | Italian Restaurant | Sushi Restaurant | French Restaurant | Clothing Store | Seafood Restaurant | Indian Restaurant | Café | Gourmet Shop | Cosmetics Shop | Bakery |
21 | Tribeca | Park | Italian Restaurant | Café | Spa | American Restaurant | Boutique | Wine Shop | Wine Bar | Gym | Coffee Shop |
24 | West Village | Italian Restaurant | Cosmetics Shop | New American Restaurant | Gastropub | Wine Bar | Jazz Club | American Restaurant | Bakery | French Restaurant | Park |
27 | Gramercy | Italian Restaurant | American Restaurant | Bagel Shop | Thrift / Vintage Store | Pizza Place | Cocktail Bar | Hotel | Mexican Restaurant | Thai Restaurant | Grocery Store |
31 | Noho | Italian Restaurant | Cocktail Bar | French Restaurant | Boutique | Grocery Store | Art Gallery | Gift Shop | Hotel | Rock Club | Coffee Shop |
32 | Civic Center | Italian Restaurant | Gym / Fitness Center | French Restaurant | Hotel | Sandwich Place | Coffee Shop | Bakery | Yoga Studio | Spa | Cocktail Bar |
35 | Turtle Bay | Italian Restaurant | Sushi Restaurant | Hotel | Steakhouse | Wine Bar | Coffee Shop | French Restaurant | Park | Café | Japanese Restaurant |
39 | Hudson Yards | American Restaurant | Coffee Shop | Italian Restaurant | Gym / Fitness Center | Theater | Café | Hotel | Dog Run | Gym | Park |
manhattan_merged.loc[manhattan_merged['Cluster Labels'] == 1, manhattan_merged.columns[[1] + list(range(5, manhattan_merged.shape[1]))]]
Neighborhood | 1st Most Common Venue | 2nd Most Common Venue | 3rd Most Common Venue | 4th Most Common Venue | 5th Most Common Venue | 6th Most Common Venue | 7th Most Common Venue | 8th Most Common Venue | 9th Most Common Venue | 10th Most Common Venue | |
---|---|---|---|---|---|---|---|---|---|---|---|
1 | Chinatown | Chinese Restaurant | Cocktail Bar | American Restaurant | Vietnamese Restaurant | Bubble Tea Shop | Noodle House | Bar | Dumpling Restaurant | Ice Cream Shop | Hotpot Restaurant |
6 | Central Harlem | African Restaurant | Public Art | Cosmetics Shop | French Restaurant | Chinese Restaurant | Seafood Restaurant | Gym / Fitness Center | American Restaurant | Park | Southern / Soul Food Restaurant |
10 | Lenox Hill | Coffee Shop | Italian Restaurant | Sushi Restaurant | Pizza Place | Cosmetics Shop | Burger Joint | Gym | Gym / Fitness Center | Sporting Goods Shop | Deli / Bodega |
12 | Upper West Side | Italian Restaurant | Bar | Wine Bar | Coffee Shop | Mediterranean Restaurant | Vegetarian / Vegan Restaurant | Burger Joint | Indian Restaurant | Bakery | Bookstore |
15 | Midtown | Hotel | Clothing Store | Steakhouse | Theater | Cocktail Bar | Food Truck | Spa | American Restaurant | Coffee Shop | Bookstore |
16 | Murray Hill | Sandwich Place | Japanese Restaurant | Coffee Shop | Hotel | French Restaurant | Gym | Bar | Italian Restaurant | Jewish Restaurant | Juice Bar |
19 | East Village | Bar | Wine Bar | Chinese Restaurant | Ice Cream Shop | Mexican Restaurant | Pizza Place | Ramen Restaurant | Coffee Shop | Cocktail Bar | Vegetarian / Vegan Restaurant |
22 | Little Italy | Bakery | Café | Clothing Store | Italian Restaurant | Sandwich Place | Mediterranean Restaurant | Ice Cream Shop | Seafood Restaurant | Salon / Barbershop | Massage Studio |
23 | Soho | Clothing Store | Boutique | Women's Store | Shoe Store | Men's Store | Art Gallery | Mediterranean Restaurant | Italian Restaurant | Furniture / Home Store | Yoga Studio |
30 | Carnegie Hill | Pizza Place | Coffee Shop | Café | Cosmetics Shop | Grocery Store | Bar | Spa | French Restaurant | Japanese Restaurant | Yoga Studio |
33 | Midtown South | Korean Restaurant | Hotel | Hotel Bar | Coffee Shop | Japanese Restaurant | Cosmetics Shop | Italian Restaurant | Gym / Fitness Center | Bakery | Cocktail Bar |
34 | Sutton Place | Gym / Fitness Center | Italian Restaurant | Indian Restaurant | Furniture / Home Store | American Restaurant | Gym | Juice Bar | Dessert Shop | Yoga Studio | Cupcake Shop |
38 | Flatiron | Yoga Studio | Japanese Restaurant | Gym | Gym / Fitness Center | American Restaurant | Cosmetics Shop | Clothing Store | New American Restaurant | Salon / Barbershop | Sporting Goods Shop |
manhattan_merged.loc[manhattan_merged['Cluster Labels'] == 2, manhattan_merged.columns[[1] + list(range(5, manhattan_merged.shape[1]))]]
Neighborhood | 1st Most Common Venue | 2nd Most Common Venue | 3rd Most Common Venue | 4th Most Common Venue | 5th Most Common Venue | 6th Most Common Venue | 7th Most Common Venue | 8th Most Common Venue | 9th Most Common Venue | 10th Most Common Venue | |
---|---|---|---|---|---|---|---|---|---|---|---|
37 | Stuyvesant Town | Bar | Park | Playground | German Restaurant | Basketball Court | Baseball Field | Fountain | Harbor / Marina | Cocktail Bar | Coffee Shop |
manhattan_merged.loc[manhattan_merged['Cluster Labels'] == 3, manhattan_merged.columns[[1] + list(range(5, manhattan_merged.shape[1]))]]
Neighborhood | 1st Most Common Venue | 2nd Most Common Venue | 3rd Most Common Venue | 4th Most Common Venue | 5th Most Common Venue | 6th Most Common Venue | 7th Most Common Venue | 8th Most Common Venue | 9th Most Common Venue | 10th Most Common Venue | |
---|---|---|---|---|---|---|---|---|---|---|---|
5 | Manhattanville | Coffee Shop | Mexican Restaurant | Italian Restaurant | Park | Chinese Restaurant | Seafood Restaurant | Dumpling Restaurant | Bar | Bus Station | Burger Joint |
17 | Chelsea | Coffee Shop | Italian Restaurant | Ice Cream Shop | Nightclub | Bakery | American Restaurant | Hotel | Seafood Restaurant | Theater | Cupcake Shop |
26 | Morningside Heights | Coffee Shop | American Restaurant | Park | Bookstore | Café | Food Truck | Deli / Bodega | Burger Joint | New American Restaurant | Tennis Court |
28 | Battery Park City | Park | Coffee Shop | Hotel | Gym | Wine Shop | Italian Restaurant | Clothing Store | Plaza | Memorial Site | Burger Joint |
29 | Financial District | Coffee Shop | Gym | Wine Shop | Hotel | Steakhouse | Pizza Place | Café | Bar | American Restaurant | Park |
manhattan_merged.loc[manhattan_merged['Cluster Labels'] == 4, manhattan_merged.columns[[1] + list(range(5, manhattan_merged.shape[1]))]]
Neighborhood | 1st Most Common Venue | 2nd Most Common Venue | 3rd Most Common Venue | 4th Most Common Venue | 5th Most Common Venue | 6th Most Common Venue | 7th Most Common Venue | 8th Most Common Venue | 9th Most Common Venue | 10th Most Common Venue | |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | Marble Hill | Discount Store | Coffee Shop | Yoga Studio | Seafood Restaurant | Gym | Tennis Stadium | Big Box Store | Supplement Shop | Steakhouse | Shoe Store |
2 | Washington Heights | Café | Bakery | Mobile Phone Shop | Grocery Store | Pizza Place | Chinese Restaurant | Latin American Restaurant | Mexican Restaurant | Tapas Restaurant | Shoe Store |
3 | Inwood | Lounge | Mexican Restaurant | Café | Pizza Place | Wine Bar | Deli / Bodega | Park | American Restaurant | Frozen Yogurt Shop | Chinese Restaurant |
4 | Hamilton Heights | Mexican Restaurant | Café | Coffee Shop | Pizza Place | Yoga Studio | Sushi Restaurant | Caribbean Restaurant | Chinese Restaurant | School | Bakery |
7 | East Harlem | Mexican Restaurant | Bakery | Latin American Restaurant | Deli / Bodega | Thai Restaurant | Convenience Store | Café | Taco Place | Street Art | Steakhouse |
9 | Yorkville | Gym | Italian Restaurant | Bar | Coffee Shop | Pizza Place | Sushi Restaurant | Deli / Bodega | Japanese Restaurant | Ice Cream Shop | Diner |
11 | Roosevelt Island | Sandwich Place | Deli / Bodega | Coffee Shop | Dog Run | Café | Farmers Market | Supermarket | Metro Station | Outdoors & Recreation | Dry Cleaner |
20 | Lower East Side | Café | Chinese Restaurant | Coffee Shop | Ramen Restaurant | Japanese Restaurant | Cocktail Bar | Shoe Store | Bakery | Art Gallery | Sandwich Place |
25 | Manhattan Valley | Indian Restaurant | Coffee Shop | Pizza Place | Yoga Studio | Playground | Spa | Café | Mexican Restaurant | Deli / Bodega | Bar |
36 | Tudor City | Park | Mexican Restaurant | Greek Restaurant | Café | Sushi Restaurant | Deli / Bodega | Pizza Place | Hotel | Dog Run | Asian Restaurant |
This notebook was created by Alex Aklson and Polong Lin. I hope you found this lab interesting and educational. Feel free to contact us if you have any questions!
This notebook is part of a course on Coursera called Applied Data Science Capstone. If you accessed this notebook outside the course, you can take this course online by clicking here.
Copyright © 2018 Cognitive Class. This notebook and its source code are released under the terms of the MIT License.