Skip to content

Instantly share code, notes, and snippets.

@ddnn55
Created December 5, 2012 21:14
Show Gist options
  • Save ddnn55/4219555 to your computer and use it in GitHub Desktop.
Save ddnn55/4219555 to your computer and use it in GitHub Desktop.
geo, anchored, collision layout
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<script src="http://d3js.org/d3.v2.min.js"></script>
<link type="text/css" rel="stylesheet" href="style.css"/>
<style type="text/css">
circle {
stroke: #000;
stroke-opacity: .5;
}
#counties {
fill: none;
stroke: #000;
stroke-opacity: .5;
}
</style>
</head>
<body>
<div id="body">
<div id="footer">
</div>
</div>
<script type="text/javascript">
var w = 1280,
h = 800,
spacing = 2,
scale = 0.4;
var nodes;
var svg = d3.select("#body").append("svg:svg")
.attr("width", window.width)
.attr("height", window.height);
d3.json("tile.json", function(json) {
var nodes = json.map(function(cluster) { return {
radius: spacing + scale * Math.sqrt(cluster.count),
x: cluster.center[1], y: cluster.center[0],
anchor: cluster.center.reverse(),
cluster: cluster
};}),
color = d3.scale.category10();
var llbounds = new Bounds({
left: nodes.map(function(d) { return d.anchor[0]; }).reduce(function(a, b){ return Math.min(a, b); }),
right: nodes.map(function(d) { return d.anchor[0]; }).reduce(function(a, b){ return Math.max(a, b); }),
bottom: nodes.map(function(d) { return d.anchor[1]; }).reduce(function(a, b){ return Math.min(a, b); }),
top: nodes.map(function(d) { return d.anchor[1]; }).reduce(function(a, b){ return Math.max(a, b); })
});
var nyc = d3.geo.albers();
nyc.origin(llbounds.center());
nyc.scale(400000);
d3.json("us.counties.500k.json", function(counties) {
console.log('features', counties.features);
var g = svg.append("g").attr("id", "counties");
g.selectAll("path")
.data(counties.features)
.enter().append("path")
.attr("d", d3.geo.path().projection(nyc));
});
nodes.forEach(function(d){
var xy = nyc([d.x, d.y]);
d.x = xy[0];
d.y = xy[1];
});
var force = d3.layout.force()
.gravity(0.00)
//.charge(function(d, i) { return i ? 0 : -2000; })
//.charge(function(d, i) { return i ? 0 : -2000; })
.nodes(nodes)
.size([w, h]);
//var root = nodes[0];
//root.radius = 0;
//root.fixed = true;
force.start();
svg.selectAll("circle")
.data(nodes)
.enter().append("svg:circle")
.attr("r", function(d) { return d.radius - spacing; })
.style("fill", function(d, i) { return color(i % 3); })
.on("mouseover", function(d) { console.log(d); });
var tick = function(e) {
var q = d3.geom.quadtree(nodes),
i = 0,
n = nodes.length;
var k = 1.0 * e.alpha;
nodes.forEach(function(o, i) {
var anchorXY = nyc(o.anchor);
o.y += (anchorXY[1] - o.y) * k;
o.x += (anchorXY[0] - o.x) * k;
});
while (++i < n) {
q.visit(collide(nodes[i]));
}
svg.selectAll("circle")
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
};
//tick();
force.on("tick", tick);
svg.on("mousewheel", function(e) {
console.log(e);
});
});
function collide(node) {
var r = node.radius + 16,
nx1 = node.x - r,
nx2 = node.x + r,
ny1 = node.y - r,
ny2 = node.y + r;
return function(quad, x1, y1, x2, y2) {
if (quad.point && (quad.point !== node)) {
var x = node.x - quad.point.x,
y = node.y - quad.point.y,
l = Math.sqrt(x * x + y * y),
r = node.radius + quad.point.radius;
if (l < r) {
l = (l - r) / l * .5;
node.x -= x *= l;
node.y -= y *= l;
quad.point.x += x;
quad.point.y += y;
}
}
return x1 > nx2
|| x2 < nx1
|| y1 > ny2
|| y2 < ny1;
};
}
function Bounds(params)
{
for(key in params)
{
this[key] = params[key];
}
}
Bounds.prototype.center = function()
{
return [
(this.right + this.left) / 2.0,
(this.top + this.bottom) / 2.0
];
}
</script>
</body>
</html>
body {
background: url(texture-noise.png);
overflow: hidden;
margin: 0;
font-size: 14px;
font-family: "Helvetica Neue", Helvetica;
}
#chart, #header, #footer {
position: absolute;
top: 0;
}
#header, #footer {
z-index: 1;
display: block;
font-size: 36px;
font-weight: 300;
text-shadow: 0 1px 0 #fff;
}
#header.inverted, #footer.inverted {
color: #fff;
text-shadow: 0 1px 4px #000;
}
#header {
top: 80px;
left: 140px;
width: 1000px;
}
#footer {
top: 680px;
right: 140px;
text-align: right;
}
rect {
fill: none;
pointer-events: all;
}
pre {
font-size: 18px;
}
line {
stroke: #000;
stroke-width: 1.5px;
}
.string, .regexp {
color: #f39;
}
.keyword {
color: #00c;
}
.comment {
color: #777;
font-style: oblique;
}
.number {
color: #369;
}
.class, .special {
color: #1181B8;
}
a:link, a:visited {
color: #000;
text-decoration: none;
}
a:hover {
color: #666;
}
.hint {
position: absolute;
right: 0;
width: 1280px;
font-size: 12px;
color: #999;
}
[
{
"count": 2919,
"center": [
40.70356562533108,
-74.01553106465276
],
"representative_images": {},
"label": 19,
"convex_hull": [
[
40.697151,
-74.013
],
[
40.697396,
-74.011545
],
[
40.69848,
-74.010778
],
[
40.699983,
-74.01027
],
[
40.701991,
-74.009659
],
[
40.704485,
-74.009066
],
[
40.70531,
-74.009571
],
[
40.706032,
-74.010935
],
[
40.706619,
-74.0121
],
[
40.7075,
-74.014
],
[
40.708454,
-74.016174
],
[
40.708523,
-74.017413
],
[
40.707838,
-74.018187
],
[
40.706945,
-74.019169
],
[
40.705981,
-74.01943
],
[
40.703228,
-74.019345
],
[
40.698867,
-74.017433
]
],
"_id": "507095ab9ba8492ea7cece66"
},
{
"count": 489,
"center": [
40.75776112181308,
-74.00223485835681
],
"representative_images": {},
"label": 62,
"convex_hull": [
[
40.754189,
-73.999569
],
[
40.754258,
-73.999239
],
[
40.754406,
-73.998874
],
[
40.754894,
-73.997741
],
[
40.757221,
-73.995659
],
[
40.759,
-73.994333
],
[
40.7605,
-73.999167
],
[
40.761333,
-74.0025
],
[
40.760878,
-74.003409
],
[
40.759721,
-74.004236
],
[
40.757461,
-74.005839
],
[
40.756666,
-74.0055
],
[
40.756351,
-74.005317
],
[
40.754666,
-74.003167
],
[
40.754604,
-74.003069
]
],
"_id": "507095ab9ba8492ea7cece91"
},
{
"count": 495,
"center": [
40.76971183809522,
-73.99421651746023
],
"representative_images": {},
"label": 67,
"convex_hull": [
[
40.762444,
-73.991954
],
[
40.764333,
-73.989
],
[
40.766558,
-73.98843
],
[
40.76928,
-73.988606
],
[
40.770749,
-73.988879
],
[
40.771883,
-73.989182
],
[
40.772833,
-73.9895
],
[
40.775187,
-73.993155
],
[
40.775175,
-73.993391
],
[
40.77069,
-73.99897
],
[
40.768581,
-73.998413
],
[
40.762832,
-73.993424
],
[
40.76262,
-73.99322
]
],
"_id": "507095ab9ba8492ea7cece96"
},
{
"count": 276,
"center": [
40.71859440000016,
-73.9434336981132
],
"representative_images": {},
"label": 72,
"convex_hull": [
[
40.714801,
-73.940864
],
[
40.719791,
-73.939201
],
[
40.7215,
-73.941833
],
[
40.719166,
-73.946666
],
[
40.717468,
-73.945053
]
],
"_id": "507095ab9ba8492ea7cece9b"
},
{
"count": 269,
"center": [
40.74389663008141,
-73.953501069106
],
"representative_images": {},
"label": 73,
"convex_hull": [
[
40.741166,
-73.949667
],
[
40.741166,
-73.949167
],
[
40.742497,
-73.949147
],
[
40.743833,
-73.949417
],
[
40.745826,
-73.951367
],
[
40.747002,
-73.952798
],
[
40.747238,
-73.955122
],
[
40.744196,
-73.956136
],
[
40.741847,
-73.954073
],
[
40.7415,
-73.953
]
],
"_id": "507095ab9ba8492ea7cece9c"
},
{
"count": 55,
"center": [
40.731347680000006,
-73.97360881333333
],
"representative_images": {},
"label": 142,
"convex_hull": [
[
40.729681,
-73.975517
],
[
40.730486,
-73.972696
],
[
40.733833,
-73.974
],
[
40.733,
-73.974833
],
[
40.731506,
-73.975775
]
],
"_id": "507095ab9ba8492ea7cecee1"
},
{
"count": 58,
"center": [
40.70060669090907,
-73.9605291454546
],
"representative_images": {},
"label": 161,
"convex_hull": [
[
40.697221,
-73.96172
],
[
40.697999,
-73.953167
],
[
40.701511,
-73.956246
],
[
40.702166,
-73.959167
],
[
40.702037,
-73.960851
],
[
40.7,
-73.9625
]
],
"_id": "507095ab9ba8492ea7cecef4"
},
{
"count": 26,
"center": [
40.80729407692308,
-73.93016234615382
],
"representative_images": {},
"label": 216,
"convex_hull": [
[
40.804519,
-73.931289
],
[
40.804661,
-73.93022
],
[
40.807594,
-73.928903
],
[
40.807876,
-73.928825
],
[
40.808409,
-73.930402
],
[
40.807547,
-73.932914
]
],
"_id": "507095ab9ba8492ea7cecf2b"
},
{
"count": 18,
"center": [
40.841491000000005,
-73.92162299999998
],
"representative_images": {},
"label": 236,
"convex_hull": [
[
40.841491,
-73.921623
]
],
"_id": "507095ab9ba8492ea7cecf3f"
},
{
"count": 19,
"center": [
40.761539294117654,
-74.00684770588235
],
"representative_images": {},
"label": 238,
"convex_hull": [
[
40.75805,
-74.006567
],
[
40.760622,
-74.003816
],
[
40.763454,
-74.003761
],
[
40.763901,
-74.003906
],
[
40.760658,
-74.007704
],
[
40.75883,
-74.008712
]
],
"_id": "507095ab9ba8492ea7cecf41"
},
{
"count": 18,
"center": [
40.755775533333335,
-74.01318026666665
],
"representative_images": {},
"label": 245,
"convex_hull": [
[
40.752235,
-74.01104
],
[
40.754333,
-74.010667
],
[
40.755262,
-74.010515
],
[
40.757322,
-74.012537
],
[
40.7575,
-74.013
],
[
40.757836,
-74.014198
],
[
40.758102,
-74.017181
],
[
40.753627,
-74.017092
]
],
"_id": "507095ab9ba8492ea7cecf48"
},
{
"count": 26,
"center": [
40.7084794,
-73.97987046666665
],
"representative_images": {},
"label": 250,
"convex_hull": [
[
40.70357,
-73.983178
],
[
40.703833,
-73.9775
],
[
40.708167,
-73.978
],
[
40.710888,
-73.979784
],
[
40.710833,
-73.982334
],
[
40.707444,
-73.983314
],
[
40.704208,
-73.98401
]
],
"_id": "507095ab9ba8492ea7cecf4d"
},
{
"count": 14,
"center": [
40.86204761538461,
-73.92346884615384
],
"representative_images": {},
"label": 258,
"convex_hull": [
[
40.859833,
-73.921833
],
[
40.860669,
-73.921519
],
[
40.862591,
-73.921158
],
[
40.866758,
-73.924024
],
[
40.867318,
-73.925188
],
[
40.863357,
-73.925872
],
[
40.861175,
-73.925818
]
],
"_id": "507095ab9ba8492ea7cecf55"
},
{
"count": 8,
"center": [
40.703443,
-74.046289
],
"representative_images": {},
"label": 300,
"convex_hull": [
[
40.7008,
-74.0502
],
[
40.702667,
-74.044833
],
[
40.705,
-74.044833
],
[
40.702934,
-74.048023
]
],
"_id": "507095ab9ba8492ea7cecf7f"
},
{
"count": 6,
"center": [
40.876847000000005,
-73.94674683333334
],
"representative_images": {},
"label": 303,
"convex_hull": [
[
40.875853,
-73.946562
],
[
40.876166,
-73.946334
],
[
40.876731,
-73.946583
],
[
40.878166,
-73.947334
],
[
40.878,
-73.947334
]
],
"_id": "507095ab9ba8492ea7cecf82"
},
{
"count": 8,
"center": [
40.7094118,
-73.917002
],
"representative_images": {},
"label": 316,
"convex_hull": [
[
40.709,
-73.915666
],
[
40.712155,
-73.919189
],
[
40.711466,
-73.919845
],
[
40.709836,
-73.918664
],
[
40.709666,
-73.918337
]
],
"_id": "507095ab9ba8492ea7cecf8f"
},
{
"count": 5,
"center": [
40.731878,
-73.9324086
],
"representative_images": {},
"label": 317,
"convex_hull": [
[
40.729535,
-73.932151
],
[
40.732958,
-73.932033
],
[
40.732238,
-73.932709
]
],
"_id": "507095ab9ba8492ea7cecf90"
},
{
"count": 10,
"center": [
40.7800862,
-73.91461319999999
],
"representative_images": {},
"label": 320,
"convex_hull": [
[
40.777169,
-73.915479
],
[
40.781964,
-73.909299
],
[
40.784736,
-73.916934
],
[
40.784688,
-73.916991
],
[
40.784404,
-73.917045
],
[
40.77864,
-73.916079
]
],
"_id": "507095ab9ba8492ea7cecf93"
},
{
"count": 3,
"center": [
40.8489625,
-73.9207915
],
"representative_images": {},
"label": 321,
"convex_hull": [
[
40.848891,
-73.922112
],
[
40.849863,
-73.920387
],
[
40.846544,
-73.920897
]
],
"_id": "507095ab9ba8492ea7cecf94"
},
{
"count": 3,
"center": [
40.81025366666666,
-73.912865
],
"representative_images": {},
"label": 335,
"convex_hull": [
[
40.810053,
-73.913043
],
[
40.811097,
-73.911575
],
[
40.809611,
-73.913977
]
],
"_id": "507095ab9ba8492ea7cecfa2"
},
{
"count": 7,
"center": [
40.795870888888885,
-73.920206
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/62387294@N00/5740868758",
"image_url": "static/flickr/6/5270/5740868758_356c7fa684/b.jpg"
}
},
"label": 284,
"convex_hull": [
[
40.794333,
-73.922667
],
[
40.794948,
-73.921811
],
[
40.79713,
-73.919709
],
[
40.79604,
-73.923439
]
],
"_id": "507095ab9ba8492ea7cecf6f"
},
{
"count": 103,
"center": [
40.79078696999996,
-73.94827798
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/20468500@N08/5737648549",
"image_url": "static/flickr/4/3190/5737648549_9d0183b2f1/b.jpg"
}
},
"label": 126,
"convex_hull": [
[
40.787414,
-73.94464
],
[
40.792583,
-73.946044
],
[
40.793683,
-73.947864
],
[
40.788859,
-73.950119
],
[
40.788344,
-73.949024
]
],
"_id": "507095ab9ba8492ea7ceced1"
},
{
"count": 3,
"center": [
40.822555666666666,
-73.99044433333334
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/20674378@N00/6090232939",
"image_url": "static/flickr/7/6079/6090232939_599c24aab9/b.jpg"
}
},
"label": 327,
"convex_hull": [
[
40.822667,
-73.990333
],
[
40.8225,
-73.9905
]
],
"_id": "507095ab9ba8492ea7cecf9a"
},
{
"count": 134,
"center": [
40.79344335483869,
-73.97881844354839
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/94982604@N00/5796346435",
"image_url": "static/flickr/6/5188/5796346435_06a8df5ed7/b.jpg"
}
},
"label": 112,
"convex_hull": [
[
40.790269,
-73.975045
],
[
40.790919,
-73.974675
],
[
40.794464,
-73.975474
],
[
40.795277,
-73.975833
],
[
40.796631,
-73.977302
],
[
40.795166,
-73.978667
],
[
40.792333,
-73.980667
],
[
40.79145,
-73.979835
],
[
40.7905,
-73.976
]
],
"_id": "507095ab9ba8492ea7cecec3"
},
{
"count": 4,
"center": [
40.826933,
-73.91722
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/30556283@N04/5783548251",
"image_url": "static/flickr/3/2390/5783548251_1861d6334a/b.jpg"
}
},
"label": 352,
"convex_hull": [
[
40.825169,
-73.921337
],
[
40.82663,
-73.915559
],
[
40.827236,
-73.918881
],
[
40.826333,
-73.9215
]
],
"_id": "507095ab9ba8492ea7cecfb3"
},
{
"count": 2,
"center": [
40.845167,
-73.958333
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/37884040@N07/5796749426",
"image_url": "static/flickr/4/3633/5796749426_1ae02fb484/b.jpg"
}
},
"label": 355,
"convex_hull": [
[
40.845167,
-73.958333
]
],
"_id": "507095ab9ba8492ea7cecfb6"
},
{
"count": 1,
"center": [
40.867833,
-73.976
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/14678786@N00/5847144351",
"image_url": "static/flickr/3/2681/5847144351_d33930af62/b.jpg"
}
},
"label": 365,
"convex_hull": [
[
40.867833,
-73.976
]
],
"_id": "507095ab9ba8492ea7cecfc0"
},
{
"count": 2,
"center": [
40.8637235,
-73.9861765
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/67066124@N05/6162981557",
"image_url": "static/flickr/7/6177/6162981557_5a49937ff3/b.jpg"
}
},
"label": 342,
"convex_hull": [
[
40.863833,
-73.98615
],
[
40.863614,
-73.986203
]
],
"_id": "507095ab9ba8492ea7cecfa9"
},
{
"count": 46,
"center": [
40.83600666666666,
-73.96825379999999
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/5882434115",
"image_url": "static/flickr/6/5188/5882434115_560161d8c8/b.jpg"
}
},
"label": 172,
"convex_hull": [
[
40.833671,
-73.968393
],
[
40.834556,
-73.966848
],
[
40.836309,
-73.9682
],
[
40.836326,
-73.968222
],
[
40.836496,
-73.968522
],
[
40.83648,
-73.968694
],
[
40.835027,
-73.972048
]
],
"_id": "507095ab9ba8492ea7ceceff"
},
{
"count": 1,
"center": [
40.828943,
-73.967009
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/6063269779",
"image_url": "static/flickr/7/6197/6063269779_f101c92e08/b.jpg"
}
},
"label": 360,
"convex_hull": [
[
40.828943,
-73.967009
]
],
"_id": "507095ab9ba8492ea7cecfbb"
},
{
"count": 9028,
"center": [
40.75718354064183,
-73.98616700563666
],
"representative_images": {},
"label": 0,
"convex_hull": [
[
40.753,
-73.9875
],
[
40.754588,
-73.985656
],
[
40.756246,
-73.983779
],
[
40.757683,
-73.982173
],
[
40.757844,
-73.982089
],
[
40.761398,
-73.983167
],
[
40.761906,
-73.983478
],
[
40.762184,
-73.983772
],
[
40.762454,
-73.984186
],
[
40.764315,
-73.988243
],
[
40.764354,
-73.988421
],
[
40.762951,
-73.990688
],
[
40.761676,
-73.992576
],
[
40.759167,
-73.994
],
[
40.758386,
-73.993395
],
[
40.755844,
-73.99122
],
[
40.755425,
-73.990853
],
[
40.75334,
-73.988982
],
[
40.75328,
-73.988832
]
],
"_id": "507095ab9ba8492ea7cece53"
},
{
"count": 6785,
"center": [
40.759635984994226,
-73.97829761705495
],
"representative_images": {},
"label": 1,
"convex_hull": [
[
40.755841,
-73.979181
],
[
40.755852,
-73.978922
],
[
40.756502,
-73.974295
],
[
40.756802,
-73.973286
],
[
40.759,
-73.973334
],
[
40.759132,
-73.973449
],
[
40.761154,
-73.975249
],
[
40.76258,
-73.976575
],
[
40.764173,
-73.978101
],
[
40.76408,
-73.978489
],
[
40.763769,
-73.979306
],
[
40.76271,
-73.981906
],
[
40.76238,
-73.982712
],
[
40.762167,
-73.983
],
[
40.761795,
-73.983269
],
[
40.76091,
-73.982995
],
[
40.759333,
-73.9825
],
[
40.758372,
-73.982184
],
[
40.757833,
-73.982
],
[
40.757777,
-73.981965
],
[
40.7575,
-73.981667
],
[
40.756879,
-73.980903
],
[
40.756632,
-73.980592
],
[
40.756086,
-73.979831
]
],
"_id": "507095ab9ba8492ea7cece54"
},
{
"count": 6354,
"center": [
40.71119561294012,
-74.0117119951994
],
"representative_images": {},
"label": 2,
"convex_hull": [
[
40.7055,
-74.0095
],
[
40.7081,
-74.009056
],
[
40.711067,
-74.008571
],
[
40.711351,
-74.008563
],
[
40.711398,
-74.008573
],
[
40.713075,
-74.009314
],
[
40.715333,
-74.010334
],
[
40.715666,
-74.0105
],
[
40.7157,
-74.0108
],
[
40.714167,
-74.014833
],
[
40.713508,
-74.016494
],
[
40.713333,
-74.016667
],
[
40.712836,
-74.016942
],
[
40.709335,
-74.016783
],
[
40.708446,
-74.015521
],
[
40.708333,
-74.015334
],
[
40.707,
-74.012834
],
[
40.70665,
-74.012157
],
[
40.706237,
-74.011314
]
],
"_id": "507095ab9ba8492ea7cece55"
},
{
"count": 3947,
"center": [
40.74108139513668,
-74.0073313268658
],
"representative_images": {},
"label": 3,
"convex_hull": [
[
40.735625,
-74.007551
],
[
40.735648,
-74.007196
],
[
40.737167,
-74.006167
],
[
40.742038,
-74.003723
],
[
40.742439,
-74.003851
],
[
40.742538,
-74.004094
],
[
40.743416,
-74.008044
],
[
40.7435,
-74.008667
],
[
40.743,
-74.0115
],
[
40.74151,
-74.011555
],
[
40.738108,
-74.011103
],
[
40.737544,
-74.010595
],
[
40.7365,
-74.009
]
],
"_id": "507095ab9ba8492ea7cece56"
},
{
"count": 3796,
"center": [
40.74846500000089,
-73.9860557571213
],
"representative_images": {},
"label": 4,
"convex_hull": [
[
40.744,
-73.983667
],
[
40.744,
-73.9835
],
[
40.744141,
-73.983061
],
[
40.744667,
-73.982833
],
[
40.746185,
-73.982204
],
[
40.748793,
-73.981158
],
[
40.749444,
-73.981667
],
[
40.751151,
-73.98468
],
[
40.752791,
-73.987716
],
[
40.752523,
-73.988499
],
[
40.752044,
-73.988735
],
[
40.751111,
-73.989167
],
[
40.750841,
-73.989261
],
[
40.75,
-73.989445
],
[
40.748939,
-73.989669
],
[
40.746,
-73.988333
],
[
40.745696,
-73.988194
],
[
40.745191,
-73.986992
],
[
40.744833,
-73.986
]
],
"_id": "507095ab9ba8492ea7cece57"
},
{
"count": 3901,
"center": [
40.74211437263381,
-73.98845477815647
],
"representative_images": {},
"label": 5,
"convex_hull": [
[
40.7376,
-73.985264
],
[
40.737621,
-73.985115
],
[
40.737666,
-73.985
],
[
40.740233,
-73.982963
],
[
40.74231,
-73.982788
],
[
40.743833,
-73.9835
],
[
40.745127,
-73.986825
],
[
40.745594,
-73.988134
],
[
40.744969,
-73.988956
],
[
40.74286,
-73.99126
],
[
40.742351,
-73.991514
],
[
40.742286,
-73.991514
],
[
40.739666,
-73.991
],
[
40.739333,
-73.990333
],
[
40.739124,
-73.989851
],
[
40.738819,
-73.988995
]
],
"_id": "507095ab9ba8492ea7cece58"
},
{
"count": 3031,
"center": [
40.713607696764576,
-74.00628724671202
],
"representative_images": {},
"label": 6,
"convex_hull": [
[
40.711389,
-74.008225
],
[
40.711769,
-74.00645
],
[
40.712264,
-74.004249
],
[
40.71305,
-74.000856
],
[
40.713516,
-74.000033
],
[
40.71371,
-73.999867
],
[
40.713775,
-73.99985
],
[
40.715838,
-74.002239
],
[
40.718315,
-74.005416
],
[
40.719888,
-74.007809
],
[
40.719333,
-74.008334
],
[
40.717354,
-74.009506
],
[
40.7165,
-74.01
],
[
40.715833,
-74.010334
],
[
40.7155,
-74.010334
],
[
40.712833,
-74.009167
],
[
40.711446,
-74.008476
],
[
40.711438,
-74.008448
]
],
"_id": "507095ab9ba8492ea7cece59"
},
{
"count": 2955,
"center": [
40.719886596466154,
-73.98848802025157
],
"representative_images": {},
"label": 7,
"convex_hull": [
[
40.715333,
-73.988
],
[
40.715622,
-73.987115
],
[
40.717222,
-73.986111
],
[
40.717972,
-73.985664
],
[
40.718113,
-73.985587
],
[
40.718666,
-73.9855
],
[
40.723333,
-73.986833
],
[
40.724333,
-73.987167
],
[
40.724575,
-73.987365
],
[
40.72473,
-73.987544
],
[
40.724891,
-73.988037
],
[
40.72488,
-73.988296
],
[
40.72003,
-73.992229
],
[
40.719184,
-73.992887
],
[
40.717247,
-73.990731
],
[
40.716192,
-73.989518
]
],
"_id": "507095ab9ba8492ea7cece5a"
},
{
"count": 3049,
"center": [
40.77919832950344,
-73.96327006189692
],
"representative_images": {},
"label": 8,
"convex_hull": [
[
40.7737,
-73.965604
],
[
40.773941,
-73.963867
],
[
40.774204,
-73.96326
],
[
40.775609,
-73.960551
],
[
40.776235,
-73.959821
],
[
40.776901,
-73.959442
],
[
40.778331,
-73.959188
],
[
40.779166,
-73.959723
],
[
40.780833,
-73.961114
],
[
40.782353,
-73.962814
],
[
40.780767,
-73.965861
],
[
40.780305,
-73.966687
],
[
40.779436,
-73.9679
],
[
40.779241,
-73.968029
],
[
40.778611,
-73.968254
],
[
40.775686,
-73.967275
],
[
40.773741,
-73.966097
]
],
"_id": "507095ab9ba8492ea7cece5b"
},
{
"count": 2424,
"center": [
40.75376454479208,
-73.98312176725375
],
"representative_images": {},
"label": 9,
"convex_hull": [
[
40.749561,
-73.981322
],
[
40.749833,
-73.981001
],
[
40.754952,
-73.979714
],
[
40.755709,
-73.97953
],
[
40.757716,
-73.982003
],
[
40.757666,
-73.982167
],
[
40.757497,
-73.982362
],
[
40.754398,
-73.985847
],
[
40.752938,
-73.987351
],
[
40.752841,
-73.987345
],
[
40.752787,
-73.987303
],
[
40.752014,
-73.98616
],
[
40.750313,
-73.983135
],
[
40.749898,
-73.982276
]
],
"_id": "507095ab9ba8492ea7cece5c"
},
{
"count": 3177,
"center": [
40.773889175310465,
-73.9723094509218
],
"representative_images": {},
"label": 10,
"convex_hull": [
[
40.769,
-73.971834
],
[
40.769235,
-73.970689
],
[
40.769989,
-73.969757
],
[
40.771649,
-73.968039
],
[
40.7725,
-73.967167
],
[
40.773692,
-73.966467
],
[
40.774468,
-73.96658
],
[
40.775166,
-73.967
],
[
40.777333,
-73.968667
],
[
40.777502,
-73.969831
],
[
40.777563,
-73.971173
],
[
40.777161,
-73.973935
],
[
40.776943,
-73.975281
],
[
40.776897,
-73.975492
],
[
40.776552,
-73.976687
],
[
40.776371,
-73.976776
],
[
40.776294,
-73.976806
],
[
40.776077,
-73.97689
],
[
40.77491,
-73.976396
],
[
40.771181,
-73.973693
],
[
40.769012,
-73.972009
]
],
"_id": "507095ab9ba8492ea7cece5d"
},
{
"count": 2691,
"center": [
40.78082848498015,
-73.97326474227137
],
"representative_images": {},
"label": 11,
"convex_hull": [
[
40.777186,
-73.975217
],
[
40.77743,
-73.972353
],
[
40.777572,
-73.971435
],
[
40.777941,
-73.969917
],
[
40.778439,
-73.969153
],
[
40.778721,
-73.968887
],
[
40.779111,
-73.968533
],
[
40.780005,
-73.968908
],
[
40.783742,
-73.970603
],
[
40.786605,
-73.972099
],
[
40.786575,
-73.972277
],
[
40.785333,
-73.975834
],
[
40.784299,
-73.977384
],
[
40.784069,
-73.977638
],
[
40.781078,
-73.977325
],
[
40.779667,
-73.977165
],
[
40.778166,
-73.976667
]
],
"_id": "507095ab9ba8492ea7cece5e"
},
{
"count": 2182,
"center": [
40.7228756791109,
-73.99841844577816
],
"representative_images": {},
"label": 12,
"convex_hull": [
[
40.71843,
-73.996681
],
[
40.718667,
-73.996
],
[
40.718847,
-73.99572
],
[
40.719817,
-73.995355
],
[
40.721,
-73.9955
],
[
40.721702,
-73.995597
],
[
40.724658,
-73.996042
],
[
40.725311,
-73.996149
],
[
40.726333,
-73.996333
],
[
40.726333,
-73.998334
],
[
40.725996,
-74.001583
],
[
40.725605,
-74.003082
],
[
40.724833,
-74.002667
],
[
40.724364,
-74.002275
],
[
40.721762,
-73.999872
],
[
40.719062,
-73.997329
],
[
40.718558,
-73.99683
]
],
"_id": "507095ab9ba8492ea7cece5f"
},
{
"count": 2326,
"center": [
40.74524867201433,
-74.00640319162237
],
"representative_images": {},
"label": 13,
"convex_hull": [
[
40.7425,
-74.003667
],
[
40.742648,
-74.003391
],
[
40.745147,
-74.002071
],
[
40.745514,
-74.00229
],
[
40.747871,
-74.004318
],
[
40.748025,
-74.004571
],
[
40.748317,
-74.005064
],
[
40.749,
-74.007
],
[
40.749,
-74.00946
],
[
40.748602,
-74.009758
],
[
40.7465,
-74.010667
],
[
40.745667,
-74.011
],
[
40.744,
-74.01
],
[
40.743257,
-74.007242
],
[
40.742587,
-74.004201
]
],
"_id": "507095ab9ba8492ea7cece60"
},
{
"count": 2770,
"center": [
40.73582551109087,
-73.99050749298328
],
"representative_images": {},
"label": 14,
"convex_hull": [
[
40.732612,
-73.993874
],
[
40.732666,
-73.9915
],
[
40.733161,
-73.986778
],
[
40.733419,
-73.986414
],
[
40.733833,
-73.985833
],
[
40.734413,
-73.985409
],
[
40.734509,
-73.985382
],
[
40.737049,
-73.985092
],
[
40.737331,
-73.985259
],
[
40.737827,
-73.986144
],
[
40.738202,
-73.987159
],
[
40.739022,
-73.989641
],
[
40.739167,
-73.990095
],
[
40.739404,
-73.991117
],
[
40.737663,
-73.993445
],
[
40.736653,
-73.99469
],
[
40.7365,
-73.994833
],
[
40.735218,
-73.995224
],
[
40.734157,
-73.995419
],
[
40.733747,
-73.995376
],
[
40.733483,
-73.995228
],
[
40.73313,
-73.994789
]
],
"_id": "507095ab9ba8492ea7cece61"
},
{
"count": 2870,
"center": [
40.729723968372134,
-73.9991632851161
],
"representative_images": {},
"label": 15,
"convex_hull": [
[
40.726,
-74.004667
],
[
40.726,
-74.001833
],
[
40.726006,
-74.00161
],
[
40.726166,
-74.000167
],
[
40.726643,
-73.996694
],
[
40.726833,
-73.996333
],
[
40.727783,
-73.995223
],
[
40.728255,
-73.994728
],
[
40.728525,
-73.994495
],
[
40.72855,
-73.994478
],
[
40.731312,
-73.994464
],
[
40.731894,
-73.994462
],
[
40.733665,
-73.995494
],
[
40.734333,
-73.9965
],
[
40.734067,
-73.997082
],
[
40.733169,
-73.998112
],
[
40.7299,
-74.0017
],
[
40.7266,
-74.0052
]
],
"_id": "507095ab9ba8492ea7cece62"
},
{
"count": 1757,
"center": [
40.71016749489535,
-74.00552453232795
],
"representative_images": {},
"label": 16,
"convex_hull": [
[
40.704924,
-74.009077
],
[
40.704926,
-74.008933
],
[
40.705166,
-74.008333
],
[
40.705501,
-74.007657
],
[
40.708791,
-74.003323
],
[
40.710078,
-74.0017
],
[
40.711105,
-74.001095
],
[
40.713002,
-74.00062
],
[
40.713011,
-74.000798
],
[
40.711761,
-74.006448
],
[
40.711455,
-74.00779
],
[
40.711204,
-74.008509
],
[
40.707475,
-74.00915
],
[
40.706624,
-74.009292
],
[
40.706333,
-74.009334
],
[
40.70527,
-74.009428
]
],
"_id": "507095ab9ba8492ea7cece63"
},
{
"count": 2542,
"center": [
40.72365496952756,
-73.99320653885304
],
"representative_images": {},
"label": 17,
"convex_hull": [
[
40.71918,
-73.994814
],
[
40.719294,
-73.993252
],
[
40.719705,
-73.992592
],
[
40.720243,
-73.992132
],
[
40.724197,
-73.988922
],
[
40.7245,
-73.988834
],
[
40.725075,
-73.98873
],
[
40.726666,
-73.9915
],
[
40.72828,
-73.994341
],
[
40.727315,
-73.995376
],
[
40.7266,
-73.996087
],
[
40.726311,
-73.996198
],
[
40.726023,
-73.996176
],
[
40.724315,
-73.995956
],
[
40.7235,
-73.995833
],
[
40.721492,
-73.995521
],
[
40.719624,
-73.995031
]
],
"_id": "507095ab9ba8492ea7cece64"
},
{
"count": 2420,
"center": [
40.75232568097495,
-73.97723721621668
],
"representative_images": {},
"label": 18,
"convex_hull": [
[
40.748906,
-73.978065
],
[
40.748928,
-73.976364
],
[
40.749671,
-73.973396
],
[
40.749813,
-73.973342
],
[
40.7535,
-73.9725
],
[
40.755785,
-73.972637
],
[
40.756522,
-73.973296
],
[
40.756466,
-73.973878
],
[
40.755744,
-73.97924
],
[
40.755351,
-73.979542
],
[
40.755,
-73.9797
],
[
40.752333,
-73.980333
],
[
40.750114,
-73.980774
],
[
40.749229,
-73.980636
],
[
40.74913,
-73.980592
],
[
40.748936,
-73.979842
]
],
"_id": "507095ab9ba8492ea7cece65"
},
{
"count": 2685,
"center": [
40.7641099296456,
-73.97351343179369
],
"representative_images": {},
"label": 20,
"convex_hull": [
[
40.759166,
-73.973334
],
[
40.759167,
-73.973333
],
[
40.762667,
-73.9705
],
[
40.762991,
-73.97026
],
[
40.764614,
-73.969358
],
[
40.767769,
-73.970614
],
[
40.768297,
-73.970882
],
[
40.768618,
-73.97158
],
[
40.768667,
-73.972167
],
[
40.768667,
-73.972333
],
[
40.768634,
-73.972567
],
[
40.76694,
-73.975979
],
[
40.766067,
-73.977104
],
[
40.764566,
-73.977999
],
[
40.763757,
-73.977547
],
[
40.76026,
-73.97438
]
],
"_id": "507095ab9ba8492ea7cece67"
},
{
"count": 2674,
"center": [
40.75104344763482,
-73.9932922466218
],
"representative_images": {},
"label": 21,
"convex_hull": [
[
40.74785,
-73.99484
],
[
40.747863,
-73.994721
],
[
40.748433,
-73.992645
],
[
40.748797,
-73.991417
],
[
40.749167,
-73.9905
],
[
40.749875,
-73.989759
],
[
40.750735,
-73.989357
],
[
40.752015,
-73.98896
],
[
40.753149,
-73.988978
],
[
40.753279,
-73.989033
],
[
40.755538,
-73.990981
],
[
40.759113,
-73.9941
],
[
40.754166,
-73.997823
],
[
40.753327,
-73.998124
],
[
40.752048,
-73.998055
],
[
40.749771,
-73.997696
],
[
40.748611,
-73.996075
]
],
"_id": "507095ab9ba8492ea7cece68"
},
{
"count": 2652,
"center": [
40.767433778350444,
-73.98148507789283
],
"representative_images": {},
"label": 22,
"convex_hull": [
[
40.762219,
-73.983539
],
[
40.762568,
-73.982276
],
[
40.764124,
-73.978457
],
[
40.764315,
-73.97813
],
[
40.766196,
-73.977406
],
[
40.767255,
-73.97802
],
[
40.768003,
-73.978468
],
[
40.768772,
-73.978956
],
[
40.770588,
-73.980174
],
[
40.770333,
-73.981333
],
[
40.770109,
-73.982008
],
[
40.768492,
-73.986337
],
[
40.765833,
-73.988
],
[
40.764972,
-73.988276
],
[
40.764587,
-73.988317
],
[
40.764333,
-73.988
],
[
40.763833,
-73.987
],
[
40.763167,
-73.985667
],
[
40.762805,
-73.98487
],
[
40.762475,
-73.984133
]
],
"_id": "507095ab9ba8492ea7cece69"
},
{
"count": 2641,
"center": [
40.7296769272622,
-73.9897696838487
],
"representative_images": {},
"label": 23,
"convex_hull": [
[
40.724965,
-73.988006
],
[
40.725604,
-73.987689
],
[
40.726754,
-73.987201
],
[
40.728116,
-73.986632
],
[
40.728901,
-73.98631
],
[
40.729482,
-73.98608
],
[
40.732352,
-73.984987
],
[
40.732364,
-73.984996
],
[
40.732833,
-73.9855
],
[
40.732939,
-73.985628
],
[
40.733166,
-73.9865
],
[
40.733135,
-73.986778
],
[
40.732608,
-73.991233
],
[
40.732334,
-73.993362
],
[
40.732193,
-73.994336
],
[
40.731666,
-73.994445
],
[
40.730288,
-73.994456
],
[
40.729384,
-73.994454
],
[
40.728519,
-73.994425
],
[
40.728472,
-73.994398
],
[
40.728316,
-73.994279
],
[
40.728218,
-73.994164
],
[
40.725612,
-73.989626
]
],
"_id": "507095ab9ba8492ea7cece6a"
},
{
"count": 1781,
"center": [
40.703562259975854,
-73.99050783736382
],
"representative_images": {},
"label": 24,
"convex_hull": [
[
40.69736,
-73.990001
],
[
40.698097,
-73.988756
],
[
40.699548,
-73.987383
],
[
40.7025,
-73.984834
],
[
40.703741,
-73.984326
],
[
40.70399,
-73.984603
],
[
40.704741,
-73.986386
],
[
40.706241,
-73.990259
],
[
40.705756,
-73.991268
],
[
40.704611,
-73.992351
],
[
40.704562,
-73.992383
],
[
40.703797,
-73.992506
],
[
40.703322,
-73.992565
],
[
40.702372,
-73.992673
],
[
40.698994,
-73.992973
],
[
40.698167,
-73.993
],
[
40.698166,
-73.993
]
],
"_id": "507095ab9ba8492ea7cece6b"
},
{
"count": 1713,
"center": [
40.72129210834999,
-73.98359418674215
],
"representative_images": {},
"label": 25,
"convex_hull": [
[
40.7185,
-73.985334
],
[
40.7185,
-73.985
],
[
40.718667,
-73.984167
],
[
40.720077,
-73.978937
],
[
40.720167,
-73.978833
],
[
40.721333,
-73.9785
],
[
40.723333,
-73.9785
],
[
40.723883,
-73.978981
],
[
40.724299,
-73.984723
],
[
40.724166,
-73.986945
],
[
40.723486,
-73.986815
],
[
40.722218,
-73.986508
],
[
40.718833,
-73.9855
],
[
40.71853,
-73.985388
]
],
"_id": "507095ab9ba8492ea7cece6c"
},
{
"count": 2637,
"center": [
40.72037945825225,
-74.00108857216782
],
"representative_images": {},
"label": 27,
"convex_hull": [
[
40.714015,
-73.999679
],
[
40.716423,
-73.997915
],
[
40.717499,
-73.997169
],
[
40.718199,
-73.996738
],
[
40.7185,
-73.996833
],
[
40.724,
-74.002
],
[
40.72423,
-74.002221
],
[
40.725303,
-74.003418
],
[
40.72599,
-74.004839
],
[
40.726166,
-74.006167
],
[
40.725933,
-74.007164
],
[
40.725833,
-74.007333
],
[
40.725333,
-74.008
],
[
40.725144,
-74.008197
],
[
40.724861,
-74.008442
],
[
40.720453,
-74.007811
],
[
40.719599,
-74.006803
],
[
40.715309,
-74.001388
]
],
"_id": "507095ab9ba8492ea7cece6e"
},
{
"count": 1535,
"center": [
40.704011331108305,
-73.99452704606112
],
"representative_images": {},
"label": 28,
"convex_hull": [
[
40.697029,
-73.996938
],
[
40.697073,
-73.994889
],
[
40.697666,
-73.993334
],
[
40.7025,
-73.992667
],
[
40.702758,
-73.992637
],
[
40.703999,
-73.9925
],
[
40.704468,
-73.992453
],
[
40.705562,
-73.992404
],
[
40.706,
-73.9925
],
[
40.706185,
-73.992662
],
[
40.707016,
-73.995037
],
[
40.707,
-73.9955
],
[
40.705722,
-73.996384
],
[
40.702888,
-73.99805
],
[
40.701802,
-73.998664
],
[
40.699316,
-73.997898
],
[
40.697492,
-73.997271
]
],
"_id": "507095ab9ba8492ea7cece6f"
},
{
"count": 2091,
"center": [
40.732452631041454,
-74.00169120762375
],
"representative_images": {},
"label": 29,
"convex_hull": [
[
40.726185,
-74.006888
],
[
40.726208,
-74.005848
],
[
40.726295,
-74.005691
],
[
40.726356,
-74.005596
],
[
40.730754,
-74.000816
],
[
40.733112,
-73.998305
],
[
40.735193,
-73.996675
],
[
40.735669,
-73.99701
],
[
40.735833,
-73.9975
],
[
40.735833,
-73.998333
],
[
40.735096,
-74.005193
],
[
40.735,
-74.006
],
[
40.73488,
-74.006341
],
[
40.734397,
-74.006556
],
[
40.732994,
-74.006931
],
[
40.732925,
-74.006947
],
[
40.731922,
-74.007014
],
[
40.729305,
-74.007049
]
],
"_id": "507095ab9ba8492ea7cece70"
},
{
"count": 1470,
"center": [
40.750925715701136,
-74.00291345198187
],
"representative_images": {},
"label": 30,
"convex_hull": [
[
40.74673,
-74.001861
],
[
40.747333,
-74.001
],
[
40.749349,
-73.99897
],
[
40.75,
-73.998334
],
[
40.7505,
-73.998167
],
[
40.750593,
-73.998152
],
[
40.751991,
-73.998119
],
[
40.753752,
-73.998501
],
[
40.754,
-73.999667
],
[
40.75325,
-74.00383
],
[
40.749484,
-74.005762
],
[
40.749166,
-74.005834
],
[
40.748833,
-74.005833
],
[
40.748171,
-74.00478
],
[
40.748,
-74.0045
],
[
40.7476,
-74.003799
],
[
40.746783,
-74.002342
]
],
"_id": "507095ab9ba8492ea7cece71"
},
{
"count": 1515,
"center": [
40.71968609707914,
-73.96161546961352
],
"representative_images": {},
"label": 31,
"convex_hull": [
[
40.71596,
-73.9598
],
[
40.716333,
-73.959
],
[
40.717811,
-73.958727
],
[
40.721014,
-73.958249
],
[
40.723477,
-73.957911
],
[
40.72401,
-73.957922
],
[
40.725775,
-73.963603
],
[
40.725,
-73.965667
],
[
40.720798,
-73.965979
],
[
40.718457,
-73.964053
],
[
40.716798,
-73.962584
],
[
40.716111,
-73.961945
]
],
"_id": "507095ab9ba8492ea7cece72"
},
{
"count": 1022,
"center": [
40.70691509446822,
-73.99865203914878
],
"representative_images": {},
"label": 32,
"convex_hull": [
[
40.703025,
-73.999271
],
[
40.70322,
-73.998413
],
[
40.705684,
-73.996438
],
[
40.707775,
-73.995323
],
[
40.708612,
-73.995376
],
[
40.70953,
-73.995556
],
[
40.71,
-73.995834
],
[
40.711158,
-73.996868
],
[
40.712,
-73.997833
],
[
40.713333,
-73.999666
],
[
40.710263,
-74.001127
],
[
40.709531,
-74.0011
],
[
40.708438,
-74.000937
],
[
40.705167,
-74.000333
],
[
40.703166,
-73.999833
]
],
"_id": "507095ab9ba8492ea7cece73"
},
{
"count": 1486,
"center": [
40.73476515042725,
-73.9800294940175
],
"representative_images": {},
"label": 33,
"convex_hull": [
[
40.7315,
-73.9825
],
[
40.732166,
-73.979334
],
[
40.732631,
-73.977607
],
[
40.7345,
-73.976833
],
[
40.737726,
-73.978135
],
[
40.73916,
-73.979809
],
[
40.740567,
-73.981879
],
[
40.739759,
-73.982922
],
[
40.738152,
-73.984336
],
[
40.737226,
-73.984998
],
[
40.737075,
-73.985076
],
[
40.735,
-73.985167
],
[
40.733283,
-73.985227
],
[
40.7325,
-73.985
],
[
40.73234,
-73.984944
],
[
40.731594,
-73.983167
]
],
"_id": "507095ab9ba8492ea7cece74"
},
{
"count": 1353,
"center": [
40.72713216991125,
-73.98319981504447
],
"representative_images": {},
"label": 34,
"convex_hull": [
[
40.724,
-73.979
],
[
40.724,
-73.978833
],
[
40.731307,
-73.982652
],
[
40.731333,
-73.982667
],
[
40.731502,
-73.982958
],
[
40.732063,
-73.984422
],
[
40.731922,
-73.984878
],
[
40.730687,
-73.985475
],
[
40.729478,
-73.986048
],
[
40.7275,
-73.986834
],
[
40.725333,
-73.9875
],
[
40.724853,
-73.987625
],
[
40.724791,
-73.987587
],
[
40.724652,
-73.987383
],
[
40.7243,
-73.984695
],
[
40.724132,
-73.981997
]
],
"_id": "507095ab9ba8492ea7cece75"
},
{
"count": 1243,
"center": [
40.706221852212536,
-74.00256030707936
],
"representative_images": {},
"label": 35,
"convex_hull": [
[
40.703333,
-74.001112
],
[
40.704456,
-74.000301
],
[
40.709561,
-74.001137
],
[
40.709678,
-74.001181
],
[
40.71003,
-74.001553
],
[
40.705205,
-74.008015
],
[
40.704834,
-74.008499
],
[
40.704481,
-74.00882
],
[
40.704419,
-74.008737
],
[
40.704372,
-74.00857
],
[
40.703833,
-74.005833
]
],
"_id": "507095ab9ba8492ea7cece76"
},
{
"count": 1244,
"center": [
40.72940620959161,
-73.97887577086911
],
"representative_images": {},
"label": 36,
"convex_hull": [
[
40.723833,
-73.978334
],
[
40.724,
-73.978
],
[
40.724167,
-73.977667
],
[
40.726746,
-73.976429
],
[
40.728384,
-73.97571
],
[
40.728449,
-73.975721
],
[
40.732067,
-73.977333
],
[
40.732167,
-73.977833
],
[
40.7315,
-73.982
],
[
40.731394,
-73.982589
],
[
40.731166,
-73.9825
],
[
40.72599,
-73.97982
],
[
40.72417,
-73.978871
]
],
"_id": "507095ab9ba8492ea7cece77"
},
{
"count": 1195,
"center": [
40.77255911262477,
-73.98341880381463
],
"representative_images": {},
"label": 38,
"convex_hull": [
[
40.768602,
-73.987812
],
[
40.769212,
-73.984772
],
[
40.770167,
-73.982
],
[
40.771303,
-73.980313
],
[
40.774499,
-73.9795
],
[
40.775193,
-73.980544
],
[
40.775744,
-73.981621
],
[
40.776666,
-73.985
],
[
40.77376,
-73.988926
],
[
40.768977,
-73.988192
]
],
"_id": "507095ab9ba8492ea7cece79"
},
{
"count": 1115,
"center": [
40.68919768623479,
-74.04440797469651
],
"representative_images": {},
"label": 39,
"convex_hull": [
[
40.686305,
-74.045181
],
[
40.686333,
-74.043817
],
[
40.686667,
-74.041167
],
[
40.686788,
-74.040342
],
[
40.68719,
-74.039796
],
[
40.687833,
-74.039667
],
[
40.688902,
-74.039581
],
[
40.692533,
-74.04042
],
[
40.692613,
-74.042461
],
[
40.69027,
-74.048194
],
[
40.69001,
-74.048666
],
[
40.687732,
-74.048495
],
[
40.687114,
-74.048122
],
[
40.686666,
-74.046945
],
[
40.686333,
-74.045667
]
],
"_id": "507095ab9ba8492ea7cece7a"
},
{
"count": 1248,
"center": [
40.76454229796364,
-74.00014071061085
],
"representative_images": {},
"label": 40,
"convex_hull": [
[
40.759167,
-73.994167
],
[
40.759667,
-73.993833
],
[
40.761481,
-73.993185
],
[
40.762763,
-73.9935
],
[
40.763039,
-73.993724
],
[
40.765377,
-73.995698
],
[
40.767572,
-73.998142
],
[
40.768286,
-73.999228
],
[
40.76865,
-74.000067
],
[
40.764744,
-74.003139
],
[
40.764629,
-74.003194
],
[
40.76369,
-74.003562
],
[
40.762166,
-74.002834
],
[
40.761461,
-74.001825
],
[
40.759516,
-73.995879
],
[
40.759333,
-73.995166
]
],
"_id": "507095ab9ba8492ea7cece7b"
},
{
"count": 1193,
"center": [
40.74109807575784,
-73.99433912770554
],
"representative_images": {},
"label": 41,
"convex_hull": [
[
40.735833,
-73.996833
],
[
40.736003,
-73.995881
],
[
40.738705,
-73.992093
],
[
40.739166,
-73.9915
],
[
40.739483,
-73.991167
],
[
40.739664,
-73.991069
],
[
40.741841,
-73.991439
],
[
40.742166,
-73.9915
],
[
40.742424,
-73.991578
],
[
40.742833,
-73.992
],
[
40.7435,
-73.993167
],
[
40.744,
-73.994667
],
[
40.74084,
-73.99856
],
[
40.736549,
-73.997254
],
[
40.736333,
-73.997167
]
],
"_id": "507095ab9ba8492ea7cece7c"
},
{
"count": 1378,
"center": [
40.75983817410182,
-73.9683500043534
],
"representative_images": {},
"label": 42,
"convex_hull": [
[
40.755063,
-73.968629
],
[
40.755116,
-73.965514
],
[
40.755694,
-73.965439
],
[
40.759333,
-73.9655
],
[
40.762349,
-73.965861
],
[
40.762707,
-73.966
],
[
40.763547,
-73.967095
],
[
40.76375,
-73.967792
],
[
40.764,
-73.969167
],
[
40.761897,
-73.970987
],
[
40.759969,
-73.972587
],
[
40.759017,
-73.973281
],
[
40.756823,
-73.973264
],
[
40.756636,
-73.973253
],
[
40.755896,
-73.972631
],
[
40.755648,
-73.972286
],
[
40.755194,
-73.971137
],
[
40.755081,
-73.970647
]
],
"_id": "507095ab9ba8492ea7cece7d"
},
{
"count": 830,
"center": [
40.750150247787616,
-73.96867494985251
],
"representative_images": {},
"label": 44,
"convex_hull": [
[
40.74706,
-73.970958
],
[
40.748,
-73.967833
],
[
40.748422,
-73.966931
],
[
40.748988,
-73.966452
],
[
40.751333,
-73.9645
],
[
40.752667,
-73.964667
],
[
40.754856,
-73.965309
],
[
40.755023,
-73.970463
],
[
40.754958,
-73.971395
],
[
40.754833,
-73.971833
],
[
40.754718,
-73.971923
],
[
40.753666,
-73.972334
],
[
40.749538,
-73.973342
],
[
40.747166,
-73.971167
]
],
"_id": "507095ab9ba8492ea7cece7f"
},
{
"count": 886,
"center": [
40.770657682098964,
-73.97674264506149
],
"representative_images": {},
"label": 45,
"convex_hull": [
[
40.7665,
-73.977
],
[
40.76655,
-73.976823
],
[
40.768888,
-73.972223
],
[
40.770019,
-73.972914
],
[
40.770391,
-73.973178
],
[
40.771649,
-73.97408
],
[
40.772867,
-73.97502
],
[
40.775061,
-73.976891
],
[
40.775427,
-73.97835
],
[
40.774179,
-73.979187
],
[
40.773367,
-73.979476
],
[
40.77193,
-73.979901
],
[
40.771,
-73.979834
],
[
40.76968,
-73.979508
],
[
40.769483,
-73.979401
],
[
40.767005,
-73.977502
]
],
"_id": "507095ab9ba8492ea7cece80"
},
{
"count": 985,
"center": [
40.73852251740507,
-74.00229591930373
],
"representative_images": {},
"label": 47,
"convex_hull": [
[
40.735091,
-74.006262
],
[
40.735827,
-73.999217
],
[
40.735833,
-73.999167
],
[
40.736363,
-73.997481
],
[
40.736491,
-73.997395
],
[
40.736938,
-73.997503
],
[
40.737816,
-73.997775
],
[
40.74,
-73.9985
],
[
40.740027,
-73.99852
],
[
40.741746,
-74.000069
],
[
40.742106,
-74.000464
],
[
40.742229,
-74.000655
],
[
40.742833,
-74.001667
],
[
40.742347,
-74.003412
],
[
40.742,
-74.003667
],
[
40.738,
-74.005667
],
[
40.735667,
-74.006667
],
[
40.7355,
-74.006667
],
[
40.735143,
-74.006471
]
],
"_id": "507095ab9ba8492ea7cece82"
},
{
"count": 643,
"center": [
40.74587846666672,
-73.9917167499999
],
"representative_images": {},
"label": 48,
"convex_hull": [
[
40.743088,
-73.991262
],
[
40.743778,
-73.990345
],
[
40.745598,
-73.988285
],
[
40.745794,
-73.988285
],
[
40.747858,
-73.989228
],
[
40.748906,
-73.989808
],
[
40.749011,
-73.989948
],
[
40.749102,
-73.990151
],
[
40.74911,
-73.990345
],
[
40.748805,
-73.991364
],
[
40.748427,
-73.992555
],
[
40.748358,
-73.99275
],
[
40.747411,
-73.99492
],
[
40.745666,
-73.994667
],
[
40.744237,
-73.993874
],
[
40.743743,
-73.993164
],
[
40.743519,
-73.992639
],
[
40.74343,
-73.992381
]
],
"_id": "507095ab9ba8492ea7cece83"
},
{
"count": 777,
"center": [
40.779585022452366,
-73.98123419516398
],
"representative_images": {},
"label": 49,
"convex_hull": [
[
40.775555,
-73.980553
],
[
40.775569,
-73.978157
],
[
40.775618,
-73.978008
],
[
40.776597,
-73.97688
],
[
40.7815,
-73.9775
],
[
40.78351,
-73.978016
],
[
40.78392,
-73.978157
],
[
40.784119,
-73.979648
],
[
40.784094,
-73.980153
],
[
40.783774,
-73.980935
],
[
40.783166,
-73.981834
],
[
40.782698,
-73.982303
],
[
40.782373,
-73.982555
],
[
40.780419,
-73.983895
],
[
40.779333,
-73.984334
],
[
40.777086,
-73.983292
],
[
40.776844,
-73.98317
],
[
40.77658,
-73.982985
]
],
"_id": "507095ab9ba8492ea7cece84"
},
{
"count": 923,
"center": [
40.71876819584059,
-73.95535111091871
],
"representative_images": {},
"label": 50,
"convex_hull": [
[
40.714118,
-73.956398
],
[
40.714393,
-73.95605
],
[
40.716393,
-73.953909
],
[
40.718501,
-73.952836
],
[
40.719583,
-73.952654
],
[
40.72,
-73.952667
],
[
40.720351,
-73.952688
],
[
40.720644,
-73.95274
],
[
40.721963,
-73.95333
],
[
40.7231,
-73.9559
],
[
40.723424,
-73.95673
],
[
40.723331,
-73.957664
],
[
40.7217,
-73.958
],
[
40.720833,
-73.958167
],
[
40.719151,
-73.958473
],
[
40.716666,
-73.958834
],
[
40.716333,
-73.958834
],
[
40.715833,
-73.958833
],
[
40.714419,
-73.957431
],
[
40.714166,
-73.956833
]
],
"_id": "507095ab9ba8492ea7cece85"
},
{
"count": 658,
"center": [
40.74530690160993,
-73.9455313130594
],
"representative_images": {},
"label": 51,
"convex_hull": [
[
40.741166,
-73.946834
],
[
40.741166,
-73.946667
],
[
40.742119,
-73.945809
],
[
40.744166,
-73.944445
],
[
40.745988,
-73.943352
],
[
40.746333,
-73.943153
],
[
40.746712,
-73.94361
],
[
40.747834,
-73.945026
],
[
40.746797,
-73.948345
],
[
40.746166,
-73.949666
],
[
40.743741,
-73.949339
],
[
40.743127,
-73.949199
],
[
40.742333,
-73.949
],
[
40.741333,
-73.948001
]
],
"_id": "507095ab9ba8492ea7cece86"
},
{
"count": 722,
"center": [
40.714467691699504,
-73.9516195691702
],
"representative_images": {},
"label": 52,
"convex_hull": [
[
40.708333,
-73.955
],
[
40.710745,
-73.949308
],
[
40.711052,
-73.948674
],
[
40.7112,
-73.9484
],
[
40.712667,
-73.9485
],
[
40.714159,
-73.948695
],
[
40.715667,
-73.9495
],
[
40.715833,
-73.949667
],
[
40.7165,
-73.9505
],
[
40.716667,
-73.952667
],
[
40.716466,
-73.953601
],
[
40.716166,
-73.954001
],
[
40.714,
-73.9565
],
[
40.713118,
-73.95671
],
[
40.710572,
-73.955841
]
],
"_id": "507095ab9ba8492ea7cece87"
},
{
"count": 605,
"center": [
40.74495536997894,
-73.9975782262155
],
"representative_images": {},
"label": 53,
"convex_hull": [
[
40.741,
-73.998667
],
[
40.741547,
-73.997873
],
[
40.742192,
-73.996964
],
[
40.744069,
-73.995031
],
[
40.744404,
-73.994793
],
[
40.745166,
-73.994667
],
[
40.746333,
-73.994833
],
[
40.747122,
-73.99499
],
[
40.747833,
-73.995228
],
[
40.74911,
-73.99702
],
[
40.749435,
-73.997769
],
[
40.749419,
-73.997951
],
[
40.74785,
-74.000319
],
[
40.746606,
-74.001674
],
[
40.746333,
-74.001834
],
[
40.746188,
-74.001856
],
[
40.745107,
-74.001932
],
[
40.744099,
-74.001771
],
[
40.74356,
-74.001647
],
[
40.742184,
-74.000473
]
],
"_id": "507095ab9ba8492ea7cece88"
},
{
"count": 500,
"center": [
40.704997461864316,
-73.93284070127095
],
"representative_images": {},
"label": 54,
"convex_hull": [
[
40.702537,
-73.933629
],
[
40.70276,
-73.932301
],
[
40.703333,
-73.930167
],
[
40.704456,
-73.92889
],
[
40.705205,
-73.928214
],
[
40.70834,
-73.929051
],
[
40.708333,
-73.9325
],
[
40.705833,
-73.937
],
[
40.705666,
-73.937167
]
],
"_id": "507095ab9ba8492ea7cece89"
},
{
"count": 705,
"center": [
40.75275851193078,
-74.00636336225595
],
"representative_images": {},
"label": 55,
"convex_hull": [
[
40.7491,
-74.0091
],
[
40.749207,
-74.006094
],
[
40.7515,
-74.004834
],
[
40.753333,
-74.004
],
[
40.754333,
-74.004667
],
[
40.756619,
-74.006652
],
[
40.756896,
-74.008208
],
[
40.755059,
-74.009227
],
[
40.751068,
-74.010676
],
[
40.749203,
-74.009674
],
[
40.749102,
-74.009538
]
],
"_id": "507095ab9ba8492ea7cece8a"
},
{
"count": 831,
"center": [
40.7673133296702,
-73.96590768571434
],
"representative_images": {},
"label": 56,
"convex_hull": [
[
40.7635,
-73.966001
],
[
40.7635,
-73.965334
],
[
40.763524,
-73.965142
],
[
40.765526,
-73.963093
],
[
40.76698,
-73.962589
],
[
40.769,
-73.963167
],
[
40.769164,
-73.963239
],
[
40.771166,
-73.964167
],
[
40.772079,
-73.964721
],
[
40.77238,
-73.964917
],
[
40.772999,
-73.965834
],
[
40.773148,
-73.966473
],
[
40.772574,
-73.967073
],
[
40.769296,
-73.970432
],
[
40.769008,
-73.970679
],
[
40.768537,
-73.970882
],
[
40.7645,
-73.969167
],
[
40.764333,
-73.969001
],
[
40.76365,
-73.96731
]
],
"_id": "507095ab9ba8492ea7cece8b"
},
{
"count": 519,
"center": [
40.716137791666696,
-73.96569668518529
],
"representative_images": {},
"label": 58,
"convex_hull": [
[
40.712167,
-73.966
],
[
40.715833,
-73.9625
],
[
40.71616,
-73.962314
],
[
40.717335,
-73.963165
],
[
40.719791,
-73.965317
],
[
40.719822,
-73.9654
],
[
40.720469,
-73.96795
],
[
40.7205,
-73.9685
],
[
40.716667,
-73.969667
],
[
40.713333,
-73.9685
],
[
40.712679,
-73.967599
]
],
"_id": "507095ab9ba8492ea7cece8d"
},
{
"count": 416,
"center": [
40.73630004020108,
-73.94682940452262
],
"representative_images": {},
"label": 59,
"convex_hull": [
[
40.734,
-73.951667
],
[
40.734,
-73.95
],
[
40.736444,
-73.943681
],
[
40.738079,
-73.945112
],
[
40.740833,
-73.948834
],
[
40.73858,
-73.950045
]
],
"_id": "507095ab9ba8492ea7cece8e"
},
{
"count": 934,
"center": [
40.71471204675325,
-73.99313482857153
],
"representative_images": {},
"label": 60,
"convex_hull": [
[
40.711743,
-73.993284
],
[
40.711953,
-73.992148
],
[
40.712557,
-73.990087
],
[
40.713422,
-73.989039
],
[
40.714679,
-73.988177
],
[
40.717166,
-73.990667
],
[
40.717253,
-73.990763
],
[
40.718333,
-73.992
],
[
40.719066,
-73.992897
],
[
40.719166,
-73.994
],
[
40.718913,
-73.995562
],
[
40.718167,
-73.996667
],
[
40.715004,
-73.998917
],
[
40.714476,
-73.99926
],
[
40.713851,
-73.999374
],
[
40.713366,
-73.999287
],
[
40.712561,
-73.997925
],
[
40.712,
-73.9955
]
],
"_id": "507095ab9ba8492ea7cece8f"
},
{
"count": 365,
"center": [
40.69885413259668,
-74.0396179806632
],
"representative_images": {},
"label": 61,
"convex_hull": [
[
40.693761,
-74.040037
],
[
40.694281,
-74.039772
],
[
40.696167,
-74.039
],
[
40.697669,
-74.038445
],
[
40.698417,
-74.038195
],
[
40.69943,
-74.037884
],
[
40.699674,
-74.038195
],
[
40.699771,
-74.039611
],
[
40.699771,
-74.039697
],
[
40.699621,
-74.040421
],
[
40.699369,
-74.041489
],
[
40.693915,
-74.040298
]
],
"_id": "507095ab9ba8492ea7cece90"
},
{
"count": 333,
"center": [
40.864753517142894,
-73.9319250857144
],
"representative_images": {},
"label": 63,
"convex_hull": [
[
40.861833,
-73.9295
],
[
40.861833,
-73.929167
],
[
40.865464,
-73.927184
],
[
40.868093,
-73.927402
],
[
40.8705,
-73.932
],
[
40.868,
-73.936167
],
[
40.863957,
-73.934225
],
[
40.863166,
-73.933167
],
[
40.86301,
-73.932956
]
],
"_id": "507095ab9ba8492ea7cece92"
},
{
"count": 860,
"center": [
40.718478565217424,
-74.01449547536225
],
"representative_images": {},
"label": 64,
"convex_hull": [
[
40.713557,
-74.016791
],
[
40.713573,
-74.016501
],
[
40.71415,
-74.014914
],
[
40.7145,
-74.014
],
[
40.715379,
-74.011718
],
[
40.716305,
-74.01044
],
[
40.716635,
-74.010086
],
[
40.718517,
-74.008977
],
[
40.7198,
-74.0083
],
[
40.720058,
-74.008247
],
[
40.721388,
-74.00828
],
[
40.723648,
-74.008401
],
[
40.724833,
-74.008667
],
[
40.725091,
-74.010839
],
[
40.725,
-74.011833
],
[
40.723244,
-74.015398
],
[
40.721722,
-74.017712
],
[
40.717167,
-74.018837
],
[
40.714333,
-74.017667
],
[
40.714008,
-74.017392
],
[
40.713833,
-74.017167
]
],
"_id": "507095ab9ba8492ea7cece93"
},
{
"count": 346,
"center": [
40.71879207894739,
-73.94993678947353
],
"representative_images": {},
"label": 65,
"convex_hull": [
[
40.7165,
-73.949667
],
[
40.716822,
-73.948835
],
[
40.717152,
-73.948084
],
[
40.718166,
-73.947334
],
[
40.719444,
-73.946666
],
[
40.720833,
-73.946833
],
[
40.7225,
-73.9485
],
[
40.722333,
-73.949833
],
[
40.722033,
-73.951289
],
[
40.721882,
-73.951877
],
[
40.720627,
-73.95259
],
[
40.719802,
-73.952616
],
[
40.717666,
-73.9525
],
[
40.717346,
-73.952168
]
],
"_id": "507095ab9ba8492ea7cece94"
},
{
"count": 312,
"center": [
40.74690236688307,
-73.91968464935049
],
"representative_images": {},
"label": 68,
"convex_hull": [
[
40.743629,
-73.920944
],
[
40.7465,
-73.916667
],
[
40.747833,
-73.916667
],
[
40.749333,
-73.917667
],
[
40.74941,
-73.91815
],
[
40.7495,
-73.919159
],
[
40.748833,
-73.920334
],
[
40.748606,
-73.920387
],
[
40.7465,
-73.920833
],
[
40.745249,
-73.92109
]
],
"_id": "507095ab9ba8492ea7cece97"
},
{
"count": 292,
"center": [
40.74545993197269,
-73.92493128571418
],
"representative_images": {},
"label": 69,
"convex_hull": [
[
40.743352,
-73.922876
],
[
40.743369,
-73.921603
],
[
40.747167,
-73.924667
],
[
40.744105,
-73.927712
],
[
40.743631,
-73.925671
]
],
"_id": "507095ab9ba8492ea7cece98"
},
{
"count": 623,
"center": [
40.73271018213059,
-74.01230682817861
],
"representative_images": {},
"label": 70,
"convex_hull": [
[
40.725,
-74.009333
],
[
40.725791,
-74.007752
],
[
40.72627,
-74.007239
],
[
40.726348,
-74.0072
],
[
40.729124,
-74.007103
],
[
40.732666,
-74.007
],
[
40.732833,
-74.007
],
[
40.734754,
-74.00706
],
[
40.735722,
-74.008154
],
[
40.737,
-74.01
],
[
40.737169,
-74.010284
],
[
40.737172,
-74.010525
],
[
40.735164,
-74.01493
],
[
40.731,
-74.015667
],
[
40.726039,
-74.012542
],
[
40.725472,
-74.011645
],
[
40.725034,
-74.009701
]
],
"_id": "507095ab9ba8492ea7cece99"
},
{
"count": 350,
"center": [
40.72573548708507,
-73.95236815498181
],
"representative_images": {},
"label": 71,
"convex_hull": [
[
40.722,
-73.952833
],
[
40.72212,
-73.952085
],
[
40.722367,
-73.951433
],
[
40.723098,
-73.950386
],
[
40.724347,
-73.949028
],
[
40.726417,
-73.94831
],
[
40.728246,
-73.94893
],
[
40.730667,
-73.950333
],
[
40.731667,
-73.951
],
[
40.7315,
-73.9515
],
[
40.731167,
-73.952333
],
[
40.730653,
-73.95303
],
[
40.725913,
-73.957527
],
[
40.724128,
-73.957858
],
[
40.723386,
-73.956217
],
[
40.7232,
-73.9558
],
[
40.723,
-73.955333
]
],
"_id": "507095ab9ba8492ea7cece9a"
},
{
"count": 242,
"center": [
40.73399631836745,
-73.957092522449
],
"representative_images": {},
"label": 74,
"convex_hull": [
[
40.731421,
-73.954467
],
[
40.732085,
-73.95182
],
[
40.734,
-73.952833
],
[
40.736961,
-73.956881
],
[
40.736986,
-73.957085
],
[
40.73664,
-73.959188
],
[
40.736,
-73.9595
],
[
40.734388,
-73.95996
],
[
40.733852,
-73.959842
],
[
40.732833,
-73.958
],
[
40.732333,
-73.956834
]
],
"_id": "507095ab9ba8492ea7cece9d"
},
{
"count": 260,
"center": [
40.74476765975108,
-73.95878959336083
],
"representative_images": {},
"label": 75,
"convex_hull": [
[
40.739916,
-73.959478
],
[
40.740622,
-73.958425
],
[
40.743355,
-73.956699
],
[
40.745667,
-73.956
],
[
40.746537,
-73.956409
],
[
40.74711,
-73.956849
],
[
40.74724,
-73.958265
],
[
40.746738,
-73.960034
],
[
40.742166,
-73.961334
],
[
40.741747,
-73.961203
],
[
40.74101,
-73.960862
]
],
"_id": "507095ab9ba8492ea7cece9e"
},
{
"count": 263,
"center": [
40.718213987395025,
-73.92391560084043
],
"representative_images": {},
"label": 76,
"convex_hull": [
[
40.714167,
-73.924126
],
[
40.716033,
-73.921036
],
[
40.722244,
-73.925414
],
[
40.722613,
-73.926125
],
[
40.719427,
-73.92637
],
[
40.717851,
-73.926326
]
],
"_id": "507095ab9ba8492ea7cece9f"
},
{
"count": 261,
"center": [
40.71643252017939,
-73.98260124663678
],
"representative_images": {},
"label": 79,
"convex_hull": [
[
40.7125,
-73.983612
],
[
40.712654,
-73.981933
],
[
40.714237,
-73.980297
],
[
40.715833,
-73.979833
],
[
40.718944,
-73.979003
],
[
40.719575,
-73.978981
],
[
40.719461,
-73.980163
],
[
40.719041,
-73.982118
],
[
40.718333,
-73.985
],
[
40.718216,
-73.985452
],
[
40.717977,
-73.985623
],
[
40.71594,
-73.986825
],
[
40.715166,
-73.987
]
],
"_id": "507095ab9ba8492ea7cecea2"
},
{
"count": 187,
"center": [
40.744052626728134,
-73.97416505990793
],
"representative_images": {},
"label": 80,
"convex_hull": [
[
40.741663,
-73.970542
],
[
40.745098,
-73.970255
],
[
40.746833,
-73.971167
],
[
40.748161,
-73.973793
],
[
40.748384,
-73.974595
],
[
40.748175,
-73.974841
],
[
40.745024,
-73.975851
],
[
40.743833,
-73.975833
],
[
40.742682,
-73.974978
],
[
40.742152,
-73.97407
]
],
"_id": "507095ab9ba8492ea7cecea3"
},
{
"count": 495,
"center": [
40.712393421296255,
-73.96197842592589
],
"representative_images": {},
"label": 81,
"convex_hull": [
[
40.708503,
-73.958116
],
[
40.708506,
-73.958098
],
[
40.709,
-73.956334
],
[
40.710245,
-73.956275
],
[
40.7135,
-73.956834
],
[
40.714044,
-73.957291
],
[
40.715666,
-73.958833
],
[
40.715787,
-73.958993
],
[
40.715809,
-73.959065
],
[
40.715833,
-73.959167
],
[
40.715907,
-73.959617
],
[
40.715975,
-73.961962
],
[
40.715555,
-73.9625
],
[
40.712333,
-73.965334
],
[
40.711947,
-73.965652
],
[
40.710541,
-73.9645
],
[
40.708922,
-73.961566
]
],
"_id": "507095ab9ba8492ea7cecea4"
},
{
"count": 249,
"center": [
40.87386174271847,
-73.92202164077665
],
"representative_images": {},
"label": 83,
"convex_hull": [
[
40.870054,
-73.926104
],
[
40.872898,
-73.919811
],
[
40.87335,
-73.918923
],
[
40.875999,
-73.917664
],
[
40.878334,
-73.921669
],
[
40.877993,
-73.9224
],
[
40.87727,
-73.923743
],
[
40.874437,
-73.924984
],
[
40.870949,
-73.926057
]
],
"_id": "507095ab9ba8492ea7cecea6"
},
{
"count": 251,
"center": [
40.7311246585366,
-73.9582126292684
],
"representative_images": {},
"label": 84,
"convex_hull": [
[
40.726087,
-73.957525
],
[
40.726944,
-73.956667
],
[
40.730632,
-73.953287
],
[
40.733043,
-73.959746
],
[
40.733167,
-73.962667
],
[
40.729921,
-73.963233
],
[
40.727181,
-73.95966
]
],
"_id": "507095ab9ba8492ea7cecea7"
},
{
"count": 200,
"center": [
40.861030902061934,
-73.93343966494854
],
"representative_images": {},
"label": 86,
"convex_hull": [
[
40.855775,
-73.932639
],
[
40.856666,
-73.9315
],
[
40.857166,
-73.931001
],
[
40.859,
-73.929834
],
[
40.8615,
-73.9295
],
[
40.863,
-73.933
],
[
40.86308,
-73.933289
],
[
40.861166,
-73.939667
],
[
40.8595,
-73.938334
],
[
40.858497,
-73.937412
],
[
40.856819,
-73.93567
],
[
40.856242,
-73.934941
]
],
"_id": "507095ab9ba8492ea7cecea9"
},
{
"count": 218,
"center": [
40.73920788297874,
-73.9541322021278
],
"representative_images": {},
"label": 87,
"convex_hull": [
[
40.734922,
-73.951735
],
[
40.738486,
-73.950273
],
[
40.741038,
-73.950692
],
[
40.74128,
-73.95207
],
[
40.741534,
-73.953781
],
[
40.740427,
-73.957134
],
[
40.740347,
-73.957348
],
[
40.736785,
-73.955322
]
],
"_id": "507095ab9ba8492ea7ceceaa"
},
{
"count": 416,
"center": [
40.74516939247314,
-73.97779976344086
],
"representative_images": {},
"label": 88,
"convex_hull": [
[
40.740667,
-73.982
],
[
40.743038,
-73.977117
],
[
40.744058,
-73.976388
],
[
40.7447,
-73.97605
],
[
40.745667,
-73.975667
],
[
40.748501,
-73.974831
],
[
40.748905,
-73.979856
],
[
40.748352,
-73.9813
],
[
40.7445,
-73.982833
],
[
40.742909,
-73.982836
],
[
40.742167,
-73.982667
],
[
40.741666,
-73.9825
],
[
40.74155,
-73.982459
]
],
"_id": "507095ab9ba8492ea7ceceab"
},
{
"count": 198,
"center": [
40.70898377595628,
-73.99147519672125
],
"representative_images": {},
"label": 89,
"convex_hull": [
[
40.706258,
-73.991162
],
[
40.706473,
-73.990001
],
[
40.710072,
-73.989539
],
[
40.7115,
-73.989667
],
[
40.711833,
-73.992167
],
[
40.710285,
-73.995109
],
[
40.709096,
-73.995376
],
[
40.706347,
-73.991675
]
],
"_id": "507095ab9ba8492ea7ceceac"
},
{
"count": 154,
"center": [
40.74120237362643,
-73.97578359340662
],
"representative_images": {},
"label": 91,
"convex_hull": [
[
40.738883,
-73.977128
],
[
40.739095,
-73.975238
],
[
40.739778,
-73.972964
],
[
40.740176,
-73.972256
],
[
40.740335,
-73.972234
],
[
40.742,
-73.974
],
[
40.742336,
-73.974578
],
[
40.743167,
-73.9765
],
[
40.742721,
-73.977631
],
[
40.740571,
-73.981769
]
],
"_id": "507095ab9ba8492ea7ceceae"
},
{
"count": 181,
"center": [
40.767715988571375,
-73.93708579999992
],
"representative_images": {},
"label": 92,
"convex_hull": [
[
40.764282,
-73.933387
],
[
40.77,
-73.934667
],
[
40.770028,
-73.934769
],
[
40.769894,
-73.935134
],
[
40.769333,
-73.9365
],
[
40.769,
-73.937
],
[
40.766111,
-73.940906
]
],
"_id": "507095ab9ba8492ea7ceceaf"
},
{
"count": 183,
"center": [
40.77966664571423,
-73.98926509142859
],
"representative_images": {},
"label": 93,
"convex_hull": [
[
40.774008,
-73.989086
],
[
40.774352,
-73.988637
],
[
40.77568,
-73.986953
],
[
40.778333,
-73.986
],
[
40.785447,
-73.991709
],
[
40.782986,
-73.99405
],
[
40.775119,
-73.992539
]
],
"_id": "507095ab9ba8492ea7ceceb0"
},
{
"count": 168,
"center": [
40.704527614034994,
-73.92362181871358
],
"representative_images": {},
"label": 95,
"convex_hull": [
[
40.701247,
-73.922836
],
[
40.701333,
-73.922667
],
[
40.702891,
-73.920854
],
[
40.706327,
-73.9225
],
[
40.7065,
-73.9228
],
[
40.705369,
-73.925237
],
[
40.703922,
-73.927299
]
],
"_id": "507095ab9ba8492ea7ceceb2"
},
{
"count": 203,
"center": [
40.756280526627286,
-73.92419167455623
],
"representative_images": {},
"label": 96,
"convex_hull": [
[
40.752494,
-73.922312
],
[
40.755,
-73.920834
],
[
40.756,
-73.921167
],
[
40.758489,
-73.924201
],
[
40.756629,
-73.925248
],
[
40.754666,
-73.925834
],
[
40.753,
-73.926167
],
[
40.7525,
-73.924834
]
],
"_id": "507095ab9ba8492ea7ceceb3"
},
{
"count": 129,
"center": [
40.71386447798746,
-73.97303507547166
],
"representative_images": {},
"label": 97,
"convex_hull": [
[
40.711239,
-73.973189
],
[
40.71273,
-73.969023
],
[
40.712833,
-73.969
],
[
40.716818,
-73.970636
],
[
40.714261,
-73.974462
],
[
40.71243,
-73.974495
]
],
"_id": "507095ab9ba8492ea7ceceb4"
},
{
"count": 199,
"center": [
40.76040613333334,
-73.96267882666665
],
"representative_images": {},
"label": 98,
"convex_hull": [
[
40.755717,
-73.964767
],
[
40.7569,
-73.9606
],
[
40.757167,
-73.959833
],
[
40.757691,
-73.959348
],
[
40.758367,
-73.959027
],
[
40.758688,
-73.958888
],
[
40.759167,
-73.958832
],
[
40.76,
-73.959
],
[
40.762333,
-73.960167
],
[
40.763986,
-73.962562
],
[
40.764,
-73.962834
],
[
40.763974,
-73.963002
],
[
40.7625,
-73.9655
],
[
40.76194,
-73.96553
],
[
40.760114,
-73.965448
]
],
"_id": "507095ab9ba8492ea7ceceb5"
},
{
"count": 157,
"center": [
40.70887737414964,
-73.92305281632659
],
"representative_images": {},
"label": 99,
"convex_hull": [
[
40.706506,
-73.921766
],
[
40.707489,
-73.920738
],
[
40.709416,
-73.920511
],
[
40.711333,
-73.920667
],
[
40.71115,
-73.923156
],
[
40.711133,
-73.923225
],
[
40.711086,
-73.923317
],
[
40.70847,
-73.928021
],
[
40.7075,
-73.925334
],
[
40.706746,
-73.923096
],
[
40.706666,
-73.922667
]
],
"_id": "507095ab9ba8492ea7ceceb6"
},
{
"count": 146,
"center": [
40.71603384246573,
-73.92948586301368
],
"representative_images": {},
"label": 100,
"convex_hull": [
[
40.714374,
-73.931272
],
[
40.715466,
-73.929264
],
[
40.71568,
-73.929031
],
[
40.717655,
-73.927267
],
[
40.717786,
-73.927637
],
[
40.717475,
-73.928664
],
[
40.714952,
-73.931145
],
[
40.714683,
-73.93122
]
],
"_id": "507095ab9ba8492ea7ceceb7"
},
{
"count": 150,
"center": [
40.77063217123284,
-74.01670541780827
],
"representative_images": {},
"label": 101,
"convex_hull": [
[
40.765852,
-74.015062
],
[
40.771583,
-74.014911
],
[
40.773176,
-74.015471
],
[
40.7765,
-74.018167
],
[
40.770722,
-74.018443
],
[
40.768561,
-74.018077
],
[
40.766666,
-74.017
]
],
"_id": "507095ab9ba8492ea7ceceb8"
},
{
"count": 184,
"center": [
40.74864876551727,
-73.94168313103454
],
"representative_images": {},
"label": 102,
"convex_hull": [
[
40.745709,
-73.942425
],
[
40.745945,
-73.941073
],
[
40.746,
-73.941
],
[
40.748872,
-73.93757
],
[
40.749167,
-73.937333
],
[
40.749667,
-73.937667
],
[
40.750833,
-73.939667
],
[
40.753173,
-73.943824
],
[
40.752483,
-73.944221
],
[
40.752114,
-73.944391
],
[
40.749329,
-73.945187
],
[
40.748468,
-73.944833
]
],
"_id": "507095ab9ba8492ea7ceceb9"
},
{
"count": 168,
"center": [
40.715615213793114,
-73.94610364827588
],
"representative_images": {},
"label": 103,
"convex_hull": [
[
40.710999,
-73.947334
],
[
40.711,
-73.946667
],
[
40.711063,
-73.945252
],
[
40.711634,
-73.943871
],
[
40.713333,
-73.941667
],
[
40.714836,
-73.942345
],
[
40.715377,
-73.942881
],
[
40.716484,
-73.944221
],
[
40.717833,
-73.946167
],
[
40.717147,
-73.947864
],
[
40.716867,
-73.948137
],
[
40.714444,
-73.948612
],
[
40.713333,
-73.948427
],
[
40.712,
-73.948167
],
[
40.711,
-73.9475
]
],
"_id": "507095ab9ba8492ea7ceceba"
},
{
"count": 117,
"center": [
40.73700142962972,
-73.97462637037032
],
"representative_images": {},
"label": 105,
"convex_hull": [
[
40.734166,
-73.974167
],
[
40.735333,
-73.973
],
[
40.73858,
-73.970648
],
[
40.739166,
-73.972833
],
[
40.738979,
-73.975304
],
[
40.736166,
-73.976823
],
[
40.736158,
-73.97682
],
[
40.735183,
-73.975997
],
[
40.735,
-73.975834
]
],
"_id": "507095ab9ba8492ea7cecebc"
},
{
"count": 132,
"center": [
40.78079684328364,
-73.94439805223874
],
"representative_images": {},
"label": 106,
"convex_hull": [
[
40.778333,
-73.946667
],
[
40.778627,
-73.943023
],
[
40.779062,
-73.940134
],
[
40.784855,
-73.943354
],
[
40.783363,
-73.944639
],
[
40.780477,
-73.946773
],
[
40.77918,
-73.947622
]
],
"_id": "507095ab9ba8492ea7cecebd"
},
{
"count": 163,
"center": [
40.81426441984733,
-73.95675695419837
],
"representative_images": {},
"label": 107,
"convex_hull": [
[
40.809666,
-73.958334
],
[
40.809666,
-73.958
],
[
40.810277,
-73.955834
],
[
40.811166,
-73.954834
],
[
40.815109,
-73.954955
],
[
40.817833,
-73.958167
],
[
40.8175,
-73.959
],
[
40.816866,
-73.959639
],
[
40.813581,
-73.959993
]
],
"_id": "507095ab9ba8492ea7cecebe"
},
{
"count": 135,
"center": [
40.75060298449613,
-73.948623116279
],
"representative_images": {},
"label": 108,
"convex_hull": [
[
40.747317,
-73.94892
],
[
40.748086,
-73.947054
],
[
40.749666,
-73.945501
],
[
40.752731,
-73.944747
],
[
40.752899,
-73.944717
],
[
40.753622,
-73.946041
],
[
40.751369,
-73.950623
],
[
40.749797,
-73.952398
],
[
40.748472,
-73.952034
],
[
40.747333,
-73.950167
]
],
"_id": "507095ab9ba8492ea7cecebf"
},
{
"count": 148,
"center": [
40.76461265873007,
-73.92066995238099
],
"representative_images": {},
"label": 109,
"convex_hull": [
[
40.7625,
-73.923333
],
[
40.7625,
-73.923167
],
[
40.76273,
-73.919534
],
[
40.763623,
-73.918502
],
[
40.765,
-73.9175
],
[
40.767166,
-73.918334
],
[
40.768236,
-73.921262
],
[
40.767886,
-73.922781
],
[
40.765563,
-73.923439
],
[
40.7635,
-73.924
]
],
"_id": "507095ab9ba8492ea7cecec0"
},
{
"count": 229,
"center": [
40.76996431746031,
-73.96005370634916
],
"representative_images": {},
"label": 110,
"convex_hull": [
[
40.768202,
-73.960089
],
[
40.768713,
-73.958403
],
[
40.769231,
-73.956779
],
[
40.76965,
-73.955814
],
[
40.771081,
-73.956523
],
[
40.773011,
-73.95823
],
[
40.773854,
-73.959692
],
[
40.774667,
-73.961167
],
[
40.773833,
-73.963667
],
[
40.773352,
-73.964789
],
[
40.772998,
-73.964836
],
[
40.771333,
-73.964167
],
[
40.768988,
-73.963104
],
[
40.768666,
-73.962667
],
[
40.768333,
-73.961334
]
],
"_id": "507095ab9ba8492ea7cecec1"
},
{
"count": 139,
"center": [
40.85012153968257,
-73.94636852380958
],
"representative_images": {},
"label": 111,
"convex_hull": [
[
40.84607,
-73.944747
],
[
40.848333,
-73.942667
],
[
40.849892,
-73.942912
],
[
40.851584,
-73.943814
],
[
40.851666,
-73.944
],
[
40.853294,
-73.947769
],
[
40.85089,
-73.948574
],
[
40.849808,
-73.94842
],
[
40.846143,
-73.946163
]
],
"_id": "507095ab9ba8492ea7cecec2"
},
{
"count": 130,
"center": [
40.707632911290354,
-74.03498312903224
],
"representative_images": {},
"label": 113,
"convex_hull": [
[
40.705288,
-74.037095
],
[
40.705302,
-74.035835
],
[
40.705788,
-74.032634
],
[
40.709772,
-74.0321
],
[
40.710363,
-74.036848
],
[
40.707333,
-74.037667
],
[
40.705833,
-74.0375
]
],
"_id": "507095ab9ba8492ea7cecec4"
},
{
"count": 174,
"center": [
40.75801196747969,
-73.95471974796749
],
"representative_images": {},
"label": 114,
"convex_hull": [
[
40.755491,
-73.954539
],
[
40.755667,
-73.953833
],
[
40.756166,
-73.953334
],
[
40.759635,
-73.950576
],
[
40.760895,
-73.950905
],
[
40.760834,
-73.956497
],
[
40.760166,
-73.957834
],
[
40.759748,
-73.958362
],
[
40.758578,
-73.958705
],
[
40.756833,
-73.958667
],
[
40.75562,
-73.956795
]
],
"_id": "507095ab9ba8492ea7cecec5"
},
{
"count": 71,
"center": [
40.76674323577237,
-73.95904796747968
],
"representative_images": {},
"label": 115,
"convex_hull": [
[
40.764145,
-73.961752
],
[
40.764166,
-73.961166
],
[
40.7645,
-73.96
],
[
40.765333,
-73.958334
],
[
40.766833,
-73.956333
],
[
40.767354,
-73.956039
],
[
40.768711,
-73.958398
],
[
40.767276,
-73.962269
]
],
"_id": "507095ab9ba8492ea7cecec6"
},
{
"count": 157,
"center": [
40.700474270491846,
-74.02236181147535
],
"representative_images": {},
"label": 116,
"convex_hull": [
[
40.696827,
-74.017425
],
[
40.698898,
-74.017585
],
[
40.703102,
-74.019534
],
[
40.704131,
-74.021244
],
[
40.703264,
-74.02319
],
[
40.702411,
-74.024215
],
[
40.701727,
-74.024442
],
[
40.7004,
-74.024306
],
[
40.698449,
-74.023306
],
[
40.698079,
-74.02296
],
[
40.697241,
-74.02152
]
],
"_id": "507095ab9ba8492ea7cecec7"
},
{
"count": 100,
"center": [
40.87065506722684,
-73.9168506638656
],
"representative_images": {},
"label": 117,
"convex_hull": [
[
40.869194,
-73.915472
],
[
40.871346,
-73.914073
],
[
40.8735,
-73.918333
],
[
40.873024,
-73.918929
],
[
40.871768,
-73.918901
],
[
40.869488,
-73.918118
]
],
"_id": "507095ab9ba8492ea7cecec8"
},
{
"count": 156,
"center": [
40.77908637815127,
-73.95390494957985
],
"representative_images": {},
"label": 118,
"convex_hull": [
[
40.776333,
-73.951167
],
[
40.776333,
-73.950167
],
[
40.777833,
-73.948834
],
[
40.780333,
-73.950833
],
[
40.782751,
-73.952907
],
[
40.782,
-73.955
],
[
40.779737,
-73.957332
],
[
40.778847,
-73.958137
],
[
40.778166,
-73.956667
],
[
40.776558,
-73.952648
],
[
40.776363,
-73.952049
]
],
"_id": "507095ab9ba8492ea7cecec9"
},
{
"count": 121,
"center": [
40.771769188034234,
-73.9316570769231
],
"representative_images": {},
"label": 119,
"convex_hull": [
[
40.770167,
-73.9345
],
[
40.771011,
-73.930166
],
[
40.771531,
-73.929383
],
[
40.775871,
-73.928695
],
[
40.776082,
-73.928797
],
[
40.774333,
-73.932167
],
[
40.771167,
-73.934333
]
],
"_id": "507095ab9ba8492ea7cececa"
},
{
"count": 111,
"center": [
40.71034518181819,
-73.93543629090912
],
"representative_images": {},
"label": 120,
"convex_hull": [
[
40.708082,
-73.933371
],
[
40.71,
-73.933334
],
[
40.710376,
-73.933456
],
[
40.710865,
-73.933662
],
[
40.711731,
-73.934075
],
[
40.710667,
-73.937
],
[
40.71,
-73.938667
],
[
40.708667,
-73.938167
]
],
"_id": "507095ab9ba8492ea7cececb"
},
{
"count": 90,
"center": [
40.714878742857145,
-73.97592382857144
],
"representative_images": {},
"label": 123,
"convex_hull": [
[
40.713558,
-73.975692
],
[
40.71424,
-73.974527
],
[
40.714258,
-73.974523
],
[
40.714338,
-73.974519
],
[
40.716883,
-73.974495
],
[
40.717348,
-73.975962
],
[
40.717252,
-73.977103
],
[
40.715666,
-73.979167
],
[
40.713833,
-73.977667
]
],
"_id": "507095ab9ba8492ea7cecece"
},
{
"count": 127,
"center": [
40.72412599038467,
-73.94387296153842
],
"representative_images": {},
"label": 124,
"convex_hull": [
[
40.721404,
-73.945841
],
[
40.721427,
-73.944406
],
[
40.7216,
-73.9421
],
[
40.721667,
-73.941833
],
[
40.722,
-73.941167
],
[
40.722787,
-73.940434
],
[
40.72331,
-73.940429
],
[
40.725833,
-73.941833
],
[
40.726333,
-73.943667
],
[
40.726333,
-73.944334
],
[
40.7255,
-73.946833
],
[
40.725333,
-73.947333
],
[
40.724721,
-73.947386
],
[
40.722781,
-73.947437
],
[
40.721727,
-73.947136
],
[
40.721667,
-73.947
],
[
40.72159,
-73.946726
]
],
"_id": "507095ab9ba8492ea7cececf"
},
{
"count": 102,
"center": [
40.85895382828277,
-73.91412697979787
],
"representative_images": {},
"label": 127,
"convex_hull": [
[
40.85748,
-73.914306
],
[
40.859027,
-73.913206
],
[
40.859222,
-73.91322
],
[
40.862,
-73.913666
],
[
40.859951,
-73.917979
],
[
40.858002,
-73.917503
]
],
"_id": "507095ab9ba8492ea7ceced2"
},
{
"count": 103,
"center": [
40.759566818181824,
-73.91934683838387
],
"representative_images": {},
"label": 128,
"convex_hull": [
[
40.756833,
-73.920834
],
[
40.756833,
-73.9205
],
[
40.757922,
-73.917722
],
[
40.757977,
-73.917695
],
[
40.761209,
-73.917194
],
[
40.761166,
-73.922834
]
],
"_id": "507095ab9ba8492ea7ceced3"
},
{
"count": 100,
"center": [
40.744166020202094,
-74.02318006060597
],
"representative_images": {},
"label": 129,
"convex_hull": [
[
40.739941,
-74.024307
],
[
40.741691,
-74.021675
],
[
40.745308,
-74.022681
],
[
40.745322,
-74.022689
],
[
40.745338,
-74.024226
]
],
"_id": "507095ab9ba8492ea7ceced4"
},
{
"count": 108,
"center": [
40.761156214285705,
-73.92731585714287
],
"representative_images": {},
"label": 130,
"convex_hull": [
[
40.759,
-73.9265
],
[
40.76123,
-73.924454
],
[
40.762409,
-73.924499
],
[
40.7635,
-73.925212
],
[
40.763833,
-73.929167
],
[
40.761138,
-73.93164
],
[
40.759529,
-73.928451
]
],
"_id": "507095ab9ba8492ea7ceced5"
},
{
"count": 100,
"center": [
40.74127889795924,
-73.94210645918363
],
"representative_images": {},
"label": 131,
"convex_hull": [
[
40.739002,
-73.942751
],
[
40.739047,
-73.942097
],
[
40.739166,
-73.940834
],
[
40.741453,
-73.938804
],
[
40.743387,
-73.940037
],
[
40.74411,
-73.942646
],
[
40.74394,
-73.942923
],
[
40.740666,
-73.945334
]
],
"_id": "507095ab9ba8492ea7ceced6"
},
{
"count": 100,
"center": [
40.821210287234024,
-73.94876617021279
],
"representative_images": {},
"label": 133,
"convex_hull": [
[
40.818233,
-73.950775
],
[
40.820805,
-73.946384
],
[
40.822553,
-73.945444
],
[
40.824518,
-73.947456
],
[
40.824486,
-73.948912
],
[
40.823377,
-73.949838
],
[
40.823276,
-73.949916
],
[
40.820667,
-73.951167
],
[
40.819667,
-73.9515
],
[
40.818822,
-73.951439
]
],
"_id": "507095ab9ba8492ea7ceced8"
},
{
"count": 70,
"center": [
40.77405564367816,
-73.91375170114947
],
"representative_images": {},
"label": 135,
"convex_hull": [
[
40.772244,
-73.910892
],
[
40.772333,
-73.910002
],
[
40.774509,
-73.909556
],
[
40.775167,
-73.9095
],
[
40.777047,
-73.909591
],
[
40.777046,
-73.911938
],
[
40.776833,
-73.914167
],
[
40.776666,
-73.9145
],
[
40.775999,
-73.915334
],
[
40.773794,
-73.915228
]
],
"_id": "507095ab9ba8492ea7ceceda"
},
{
"count": 96,
"center": [
40.72723708045978,
-73.92965783908052
],
"representative_images": {},
"label": 136,
"convex_hull": [
[
40.723819,
-73.92622
],
[
40.723916,
-73.926248
],
[
40.725922,
-73.927095
],
[
40.726358,
-73.927314
],
[
40.727186,
-73.928256
],
[
40.727902,
-73.929409
],
[
40.72884,
-73.931615
],
[
40.728868,
-73.93169
],
[
40.728864,
-73.931711
],
[
40.728836,
-73.931797
],
[
40.728823,
-73.931829
],
[
40.728483,
-73.932434
],
[
40.725335,
-73.932666
]
],
"_id": "507095ab9ba8492ea7cecedb"
},
{
"count": 85,
"center": [
40.70915772093026,
-74.0409261744186
],
"representative_images": {},
"label": 137,
"convex_hull": [
[
40.7082,
-74.0382
],
[
40.711804,
-74.038635
],
[
40.708889,
-74.04282
],
[
40.70836,
-74.039783
]
],
"_id": "507095ab9ba8492ea7cecedc"
},
{
"count": 104,
"center": [
40.70921782500004,
-73.98741641250001
],
"representative_images": {},
"label": 138,
"convex_hull": [
[
40.703956,
-73.984487
],
[
40.704266,
-73.984417
],
[
40.707254,
-73.984508
],
[
40.710312,
-73.985063
],
[
40.714,
-73.987167
],
[
40.712983,
-73.988909
],
[
40.712183,
-73.988984
],
[
40.710336,
-73.989048
],
[
40.706591,
-73.98822
]
],
"_id": "507095ab9ba8492ea7cecedd"
},
{
"count": 77,
"center": [
40.780869899999985,
-73.92121628750004
],
"representative_images": {},
"label": 139,
"convex_hull": [
[
40.778051,
-73.920811
],
[
40.778297,
-73.918418
],
[
40.781,
-73.918167
],
[
40.783725,
-73.918257
],
[
40.782722,
-73.922345
],
[
40.782353,
-73.922474
],
[
40.782167,
-73.9225
],
[
40.780147,
-73.922731
],
[
40.7785,
-73.921333
]
],
"_id": "507095ab9ba8492ea7cecede"
},
{
"count": 103,
"center": [
40.719303688311676,
-73.97382259740255
],
"representative_images": {},
"label": 141,
"convex_hull": [
[
40.717166,
-73.974834
],
[
40.718277,
-73.969756
],
[
40.721111,
-73.968612
],
[
40.723,
-73.976167
],
[
40.722861,
-73.976534
],
[
40.721607,
-73.978253
],
[
40.721438,
-73.978468
],
[
40.720027,
-73.97862
],
[
40.717895,
-73.976536
]
],
"_id": "507095ab9ba8492ea7cecee0"
},
{
"count": 76,
"center": [
40.77180071999997,
-73.91656045333326
],
"representative_images": {},
"label": 144,
"convex_hull": [
[
40.7685,
-73.917333
],
[
40.76861,
-73.916487
],
[
40.77014,
-73.914379
],
[
40.7725,
-73.915
],
[
40.773061,
-73.915778
],
[
40.773055,
-73.917223
],
[
40.771666,
-73.918501
],
[
40.77,
-73.919333
]
],
"_id": "507095ab9ba8492ea7cecee3"
},
{
"count": 79,
"center": [
40.71287665753425,
-74.03462572602739
],
"representative_images": {},
"label": 145,
"convex_hull": [
[
40.71058,
-74.036331
],
[
40.711723,
-74.033775
],
[
40.711861,
-74.033528
],
[
40.713573,
-74.031876
],
[
40.713577,
-74.031876
],
[
40.713667,
-74.032
],
[
40.714024,
-74.032949
],
[
40.714,
-74.0384
],
[
40.713,
-74.038833
],
[
40.711434,
-74.038002
]
],
"_id": "507095ab9ba8492ea7cecee4"
},
{
"count": 84,
"center": [
40.76556475362318,
-73.9470557246377
],
"representative_images": {},
"label": 146,
"convex_hull": [
[
40.762017,
-73.949894
],
[
40.763105,
-73.945048
],
[
40.768938,
-73.943176
],
[
40.770044,
-73.94361
],
[
40.767838,
-73.950012
],
[
40.7646,
-73.950133
],
[
40.76213,
-73.949942
]
],
"_id": "507095ab9ba8492ea7cecee5"
},
{
"count": 345,
"center": [
40.70029759420288,
-74.00377810144936
],
"representative_images": {},
"label": 147,
"convex_hull": [
[
40.696884,
-73.998509
],
[
40.696949,
-73.997603
],
[
40.697,
-73.9975
],
[
40.697355,
-73.997297
],
[
40.698803,
-73.997855
],
[
40.700547,
-73.998673
],
[
40.702386,
-74.000909
],
[
40.703972,
-74.006734
],
[
40.703999,
-74.006836
],
[
40.704363,
-74.008637
],
[
40.704391,
-74.00882
],
[
40.704066,
-74.009014
],
[
40.699302,
-74.010356
],
[
40.697669,
-74.010498
]
],
"_id": "507095ab9ba8492ea7cecee6"
},
{
"count": 86,
"center": [
40.86967379104476,
-73.92000911940295
],
"representative_images": {},
"label": 149,
"convex_hull": [
[
40.867238,
-73.922767
],
[
40.867333,
-73.919333
],
[
40.868647,
-73.91845
],
[
40.86946,
-73.918354
],
[
40.869698,
-73.918436
],
[
40.870385,
-73.918805
],
[
40.871533,
-73.919445
],
[
40.871354,
-73.921487
],
[
40.868495,
-73.926347
],
[
40.867303,
-73.923234
],
[
40.867247,
-73.92307
]
],
"_id": "507095ab9ba8492ea7cecee8"
},
{
"count": 65,
"center": [
40.707591968253965,
-73.94171419047615
],
"representative_images": {},
"label": 150,
"convex_hull": [
[
40.705833,
-73.939334
],
[
40.707492,
-73.939246
],
[
40.711952,
-73.940688
],
[
40.711833,
-73.943166
],
[
40.711669,
-73.943657
],
[
40.710999,
-73.943926
],
[
40.708667,
-73.944167
],
[
40.708333,
-73.944167
],
[
40.707067,
-73.943063
]
],
"_id": "507095ab9ba8492ea7cecee9"
},
{
"count": 55,
"center": [
40.76418464516129,
-73.9571774516129
],
"representative_images": {},
"label": 151,
"convex_hull": [
[
40.760791,
-73.958287
],
[
40.760886,
-73.957729
],
[
40.761839,
-73.955402
],
[
40.763137,
-73.955261
],
[
40.764676,
-73.95581
],
[
40.766023,
-73.957105
],
[
40.765034,
-73.958512
],
[
40.764333,
-73.959333
],
[
40.762836,
-73.959386
],
[
40.761024,
-73.958898
]
],
"_id": "507095ab9ba8492ea7ceceea"
},
{
"count": 128,
"center": [
40.70864083050848,
-73.96789576271188
],
"representative_images": {},
"label": 153,
"convex_hull": [
[
40.704729,
-73.970746
],
[
40.705833,
-73.967333
],
[
40.707579,
-73.964456
],
[
40.7105,
-73.965167
],
[
40.712075,
-73.965958
],
[
40.712189,
-73.966183
],
[
40.712667,
-73.968167
],
[
40.712723,
-73.968862
],
[
40.709605,
-73.971689
]
],
"_id": "507095ab9ba8492ea7ceceec"
},
{
"count": 99,
"center": [
40.77511381355933,
-73.95515883050848
],
"representative_images": {},
"label": 154,
"convex_hull": [
[
40.771577,
-73.956062
],
[
40.771791,
-73.95524
],
[
40.775833,
-73.950833
],
[
40.777667,
-73.957
],
[
40.777833,
-73.958333
],
[
40.776113,
-73.959553
],
[
40.774367,
-73.959091
],
[
40.771588,
-73.956162
]
],
"_id": "507095ab9ba8492ea7ceceed"
},
{
"count": 85,
"center": [
40.77600119298246,
-73.94387596491227
],
"representative_images": {},
"label": 157,
"convex_hull": [
[
40.770497,
-73.943642
],
[
40.771864,
-73.940734
],
[
40.772844,
-73.940012
],
[
40.775,
-73.940833
],
[
40.778213,
-73.942845
],
[
40.778333,
-73.944723
],
[
40.777906,
-73.948506
],
[
40.771476,
-73.946389
]
],
"_id": "507095ab9ba8492ea7cecef0"
},
{
"count": 69,
"center": [
40.85317673684211,
-73.93903529824564
],
"representative_images": {},
"label": 158,
"convex_hull": [
[
40.851215,
-73.938846
],
[
40.851442,
-73.93802
],
[
40.852384,
-73.936443
],
[
40.8549,
-73.934406
],
[
40.855776,
-73.934834
],
[
40.857383,
-73.9367
],
[
40.857421,
-73.939773
],
[
40.853616,
-73.941884
],
[
40.851833,
-73.942
],
[
40.851365,
-73.941271
]
],
"_id": "507095ab9ba8492ea7cecef1"
},
{
"count": 65,
"center": [
40.81654209090907,
-73.94243403636364
],
"representative_images": {},
"label": 160,
"convex_hull": [
[
40.812851,
-73.945666
],
[
40.813212,
-73.942472
],
[
40.814499,
-73.94
],
[
40.819586,
-73.940348
],
[
40.818477,
-73.943406
],
[
40.818105,
-73.944189
],
[
40.816666,
-73.944753
]
],
"_id": "507095ab9ba8492ea7cecef3"
},
{
"count": 20,
"center": [
40.74995281132077,
-73.95813905660378
],
"representative_images": {},
"label": 163,
"convex_hull": [
[
40.747403,
-73.957285
],
[
40.74763,
-73.956345
],
[
40.749167,
-73.955167
],
[
40.749662,
-73.955097
],
[
40.749703,
-73.955926
],
[
40.748508,
-73.961585
],
[
40.747833,
-73.959167
]
],
"_id": "507095ab9ba8492ea7cecef6"
},
{
"count": 55,
"center": [
40.77860805882352,
-73.92426899999998
],
"representative_images": {},
"label": 165,
"convex_hull": [
[
40.774813,
-73.924051
],
[
40.776792,
-73.921304
],
[
40.778802,
-73.922445
],
[
40.781333,
-73.924
],
[
40.782277,
-73.92522
],
[
40.78,
-73.9285
],
[
40.776962,
-73.927645
],
[
40.775299,
-73.925323
]
],
"_id": "507095ab9ba8492ea7cecef8"
},
{
"count": 50,
"center": [
40.748369083333316,
-74.01597868750005
],
"representative_images": {},
"label": 168,
"convex_hull": [
[
40.746671,
-74.014606
],
[
40.746833,
-74.0115
],
[
40.7488,
-74.011106
],
[
40.749162,
-74.01177
],
[
40.750411,
-74.015406
],
[
40.7495,
-74.0195
],
[
40.747775,
-74.016998
]
],
"_id": "507095ab9ba8492ea7cecefb"
},
{
"count": 49,
"center": [
40.7290769375,
-73.93623320833335
],
"representative_images": {},
"label": 169,
"convex_hull": [
[
40.7279,
-73.936381
],
[
40.728813,
-73.934759
],
[
40.731125,
-73.939009
]
],
"_id": "507095ab9ba8492ea7cecefc"
},
{
"count": 78,
"center": [
40.75266551063828,
-73.95981042553198
],
"representative_images": {},
"label": 170,
"convex_hull": [
[
40.751667,
-73.959667
],
[
40.751778,
-73.959106
],
[
40.753683,
-73.956217
],
[
40.753941,
-73.956198
],
[
40.756018,
-73.958287
],
[
40.755067,
-73.96506
],
[
40.754941,
-73.965116
],
[
40.752167,
-73.964333
]
],
"_id": "507095ab9ba8492ea7cecefd"
},
{
"count": 53,
"center": [
40.74929031111112,
-74.02338702222224
],
"representative_images": {},
"label": 173,
"convex_hull": [
[
40.747288,
-74.0241
],
[
40.747772,
-74.019967
],
[
40.752363,
-74.020778
],
[
40.753666,
-74.023334
],
[
40.7515,
-74.024667
],
[
40.749027,
-74.024441
]
],
"_id": "507095ab9ba8492ea7cecf00"
},
{
"count": 91,
"center": [
40.7061074888889,
-73.94809455555554
],
"representative_images": {},
"label": 174,
"convex_hull": [
[
40.699825,
-73.949866
],
[
40.703836,
-73.947212
],
[
40.706333,
-73.945667
],
[
40.707832,
-73.94553
],
[
40.710666,
-73.948501
],
[
40.710346,
-73.949699
],
[
40.708055,
-73.953612
],
[
40.7074,
-73.954728
],
[
40.7065,
-73.954834
],
[
40.70169,
-73.951576
]
],
"_id": "507095ab9ba8492ea7cecf01"
},
{
"count": 39,
"center": [
40.762797311111115,
-73.91427684444446
],
"representative_images": {},
"label": 175,
"convex_hull": [
[
40.76,
-73.914833
],
[
40.762721,
-73.91256
],
[
40.763763,
-73.91285
],
[
40.765577,
-73.913757
],
[
40.765908,
-73.914502
],
[
40.766167,
-73.916664
],
[
40.7605,
-73.915667
],
[
40.760333,
-73.9155
]
],
"_id": "507095ab9ba8492ea7cecf02"
},
{
"count": 43,
"center": [
40.85134079545454,
-73.95202506818183
],
"representative_images": {},
"label": 176,
"convex_hull": [
[
40.850688,
-73.949457
],
[
40.851333,
-73.95
],
[
40.852014,
-73.954306
],
[
40.85145,
-73.953169
],
[
40.851093,
-73.951549
],
[
40.850976,
-73.95097
]
],
"_id": "507095ab9ba8492ea7cecf03"
},
{
"count": 54,
"center": [
40.809777159090906,
-73.92460104545452
],
"representative_images": {},
"label": 177,
"convex_hull": [
[
40.807333,
-73.923667
],
[
40.807627,
-73.923081
],
[
40.809927,
-73.920603
],
[
40.812858,
-73.922056
],
[
40.811458,
-73.926734
],
[
40.811397,
-73.926839
],
[
40.81058,
-73.927798
],
[
40.808666,
-73.927
],
[
40.808,
-73.926
]
],
"_id": "507095ab9ba8492ea7cecf04"
},
{
"count": 44,
"center": [
40.69931786046511,
-73.91118962790698
],
"representative_images": {},
"label": 178,
"convex_hull": [
[
40.696769,
-73.914759
],
[
40.696797,
-73.910539
],
[
40.698652,
-73.909673
],
[
40.699385,
-73.909535
],
[
40.700666,
-73.909834
],
[
40.700666,
-73.910167
],
[
40.699825,
-73.911987
],
[
40.699483,
-73.912489
]
],
"_id": "507095ab9ba8492ea7cecf05"
},
{
"count": 44,
"center": [
40.76333348837208,
-74.00994074418604
],
"representative_images": {},
"label": 179,
"convex_hull": [
[
40.759444,
-74.011045
],
[
40.761891,
-74.009239
],
[
40.762138,
-74.009081
],
[
40.763808,
-74.008034
],
[
40.765075,
-74.008519
],
[
40.765166,
-74.01017
],
[
40.763616,
-74.01177
],
[
40.7615,
-74.0135
]
],
"_id": "507095ab9ba8492ea7cecf06"
},
{
"count": 31,
"center": [
40.76426637209303,
-74.02201439534882
],
"representative_images": {},
"label": 180,
"convex_hull": [
[
40.761777,
-74.023592
],
[
40.763628,
-74.02067
],
[
40.766166,
-74.018167
],
[
40.766666,
-74.022778
],
[
40.765477,
-74.023411
],
[
40.765148,
-74.023536
],
[
40.761791,
-74.023645
]
],
"_id": "507095ab9ba8492ea7cecf07"
},
{
"count": 52,
"center": [
40.72749933333332,
-74.01954485714288
],
"representative_images": {},
"label": 181,
"convex_hull": [
[
40.725333,
-74.023667
],
[
40.725795,
-74.020557
],
[
40.726167,
-74.018667
],
[
40.731483,
-74.017456
],
[
40.73278,
-74.022353
],
[
40.729691,
-74.024587
]
],
"_id": "507095ab9ba8492ea7cecf08"
},
{
"count": 44,
"center": [
40.75822285714285,
-74.02328547619051
],
"representative_images": {},
"label": 182,
"convex_hull": [
[
40.753833,
-74.023167
],
[
40.760117,
-74.021836
],
[
40.760195,
-74.022274
],
[
40.760166,
-74.023499
],
[
40.754166,
-74.0245
]
],
"_id": "507095ab9ba8492ea7cecf09"
},
{
"count": 58,
"center": [
40.77149307142858,
-73.9515891904762
],
"representative_images": {},
"label": 183,
"convex_hull": [
[
40.768058,
-73.950923
],
[
40.769215,
-73.948545
],
[
40.769703,
-73.948137
],
[
40.774322,
-73.94831
],
[
40.775667,
-73.950167
],
[
40.770186,
-73.955078
],
[
40.769863,
-73.95449
]
],
"_id": "507095ab9ba8492ea7cecf0a"
},
{
"count": 49,
"center": [
40.71401748780489,
-73.93631541463417
],
"representative_images": {},
"label": 184,
"convex_hull": [
[
40.71188,
-73.939734
],
[
40.712833,
-73.934667
],
[
40.714264,
-73.93361
],
[
40.715322,
-73.935928
],
[
40.71573,
-73.938669
],
[
40.713667,
-73.940667
],
[
40.713167,
-73.941
],
[
40.712652,
-73.94089
]
],
"_id": "507095ab9ba8492ea7cecf0b"
},
{
"count": 40,
"center": [
40.744720300000004,
-73.914029
],
"representative_images": {},
"label": 186,
"convex_hull": [
[
40.742717,
-73.914438
],
[
40.744602,
-73.910712
],
[
40.74573,
-73.909934
],
[
40.747573,
-73.909567
],
[
40.747362,
-73.912121
],
[
40.746315,
-73.915893
],
[
40.746252,
-73.915898
],
[
40.743554,
-73.914953
]
],
"_id": "507095ab9ba8492ea7cecf0d"
},
{
"count": 37,
"center": [
40.818123325,
-73.94694374999999
],
"representative_images": {},
"label": 187,
"convex_hull": [
[
40.814535,
-73.949747
],
[
40.814822,
-73.948514
],
[
40.815163,
-73.947418
],
[
40.818169,
-73.944745
],
[
40.8205,
-73.943834
],
[
40.820461,
-73.946184
],
[
40.817747,
-73.951034
]
],
"_id": "507095ab9ba8492ea7cecf0e"
},
{
"count": 31,
"center": [
40.728792615384606,
-73.97183741025644
],
"representative_images": {},
"label": 189,
"convex_hull": [
[
40.72725,
-73.971698
],
[
40.727333,
-73.9705
],
[
40.72828,
-73.969103
],
[
40.729952,
-73.971898
],
[
40.730014,
-73.972009
],
[
40.73,
-73.972167
],
[
40.728204,
-73.972523
]
],
"_id": "507095ab9ba8492ea7cecf10"
},
{
"count": 35,
"center": [
40.77734463157893,
-74.01216868421052
],
"representative_images": {},
"label": 190,
"convex_hull": [
[
40.775012,
-74.011094
],
[
40.776333,
-74.009167
],
[
40.778167,
-74.01
],
[
40.778388,
-74.012736
],
[
40.778353,
-74.013306
],
[
40.778333,
-74.013333
],
[
40.77736,
-74.013766
],
[
40.776467,
-74.014077
],
[
40.775264,
-74.014458
]
],
"_id": "507095ab9ba8492ea7cecf11"
},
{
"count": 33,
"center": [
40.76206824324324,
-74.01982194594594
],
"representative_images": {},
"label": 191,
"convex_hull": [
[
40.76039,
-74.021759
],
[
40.760727,
-74.017898
],
[
40.761475,
-74.015878
],
[
40.764444,
-74.017056
],
[
40.763381,
-74.01987
],
[
40.763167,
-74.020333
],
[
40.761012,
-74.021834
]
],
"_id": "507095ab9ba8492ea7cecf12"
},
{
"count": 40,
"center": [
40.73431686486487,
-73.96770313513515
],
"representative_images": {},
"label": 193,
"convex_hull": [
[
40.732167,
-73.964
],
[
40.733,
-73.963
],
[
40.737892,
-73.96717
],
[
40.734567,
-73.970557
],
[
40.733166,
-73.968834
]
],
"_id": "507095ab9ba8492ea7cecf14"
},
{
"count": 41,
"center": [
40.73742645714286,
-74.01816900000001
],
"representative_images": {},
"label": 194,
"convex_hull": [
[
40.732658,
-74.019462
],
[
40.73386,
-74.017811
],
[
40.735026,
-74.016511
],
[
40.737333,
-74.014834
],
[
40.740422,
-74.017689
],
[
40.739833,
-74.019
],
[
40.7365,
-74.0225
],
[
40.73464,
-74.021518
]
],
"_id": "507095ab9ba8492ea7cecf15"
},
{
"count": 38,
"center": [
40.734063085714276,
-73.94130348571431
],
"representative_images": {},
"label": 196,
"convex_hull": [
[
40.731647,
-73.939609
],
[
40.732227,
-73.939717
],
[
40.732741,
-73.939928
],
[
40.733961,
-73.940462
],
[
40.735625,
-73.941995
],
[
40.736208,
-73.943017
],
[
40.736336,
-73.943351
],
[
40.731686,
-73.939989
]
],
"_id": "507095ab9ba8492ea7cecf17"
},
{
"count": 35,
"center": [
40.72575611428573,
-73.97235057142858
],
"representative_images": {},
"label": 197,
"convex_hull": [
[
40.723323,
-73.973511
],
[
40.725,
-73.967834
],
[
40.725828,
-73.967084
],
[
40.726602,
-73.968917
],
[
40.726666,
-73.972833
],
[
40.7265,
-73.976167
],
[
40.723463,
-73.976873
]
],
"_id": "507095ab9ba8492ea7cecf18"
},
{
"count": 24,
"center": [
40.731295199999984,
-73.968244
],
"representative_images": {},
"label": 198,
"convex_hull": [
[
40.726333,
-73.967
],
[
40.726575,
-73.96614
],
[
40.731482,
-73.963233
],
[
40.731902,
-73.9694
],
[
40.728917,
-73.968716
]
],
"_id": "507095ab9ba8492ea7cecf19"
},
{
"count": 28,
"center": [
40.71028651515151,
-73.97715496969698
],
"representative_images": {},
"label": 200,
"convex_hull": [
[
40.708622,
-73.976689
],
[
40.708833,
-73.975167
],
[
40.709997,
-73.974931
],
[
40.710922,
-73.975706
],
[
40.712402,
-73.977448
],
[
40.710983,
-73.97947
]
],
"_id": "507095ab9ba8492ea7cecf1b"
},
{
"count": 33,
"center": [
40.75504536363636,
-73.95017515151517
],
"representative_images": {},
"label": 201,
"convex_hull": [
[
40.753196,
-73.950337
],
[
40.753406,
-73.948905
],
[
40.7535,
-73.948667
],
[
40.755833,
-73.948
],
[
40.756946,
-73.949366
],
[
40.756669,
-73.951394
],
[
40.756042,
-73.952482
],
[
40.755201,
-73.952826
]
],
"_id": "507095ab9ba8492ea7cecf1c"
},
{
"count": 35,
"center": [
40.698923272727264,
-73.91951154545455
],
"representative_images": {},
"label": 202,
"convex_hull": [
[
40.6973,
-73.9215
],
[
40.697824,
-73.916812
],
[
40.7006,
-73.9175
],
[
40.701667,
-73.918
],
[
40.702156,
-73.920083
],
[
40.699167,
-73.921833
]
],
"_id": "507095ab9ba8492ea7cecf1d"
},
{
"count": 33,
"center": [
40.76499306060606,
-73.95374206060605
],
"representative_images": {},
"label": 203,
"convex_hull": [
[
40.76118,
-73.950782
],
[
40.762986,
-73.950364
],
[
40.768,
-73.952
],
[
40.767988,
-73.952987
],
[
40.766166,
-73.955167
],
[
40.765166,
-73.955167
],
[
40.762333,
-73.954833
]
],
"_id": "507095ab9ba8492ea7cecf1e"
},
{
"count": 40,
"center": [
40.84929153125,
-73.9383420625
],
"representative_images": {},
"label": 204,
"convex_hull": [
[
40.845282,
-73.938267
],
[
40.850873,
-73.932585
],
[
40.8515,
-73.936167
],
[
40.851,
-73.9385
],
[
40.850152,
-73.942252
],
[
40.849667,
-73.942333
],
[
40.846238,
-73.940587
]
],
"_id": "507095ab9ba8492ea7cecf1f"
},
{
"count": 46,
"center": [
40.820569612903206,
-73.9547327419355
],
"representative_images": {},
"label": 205,
"convex_hull": [
[
40.816894,
-73.953792
],
[
40.817369,
-73.952718
],
[
40.823025,
-73.952912
],
[
40.823167,
-73.954667
],
[
40.823233,
-73.957617
],
[
40.82,
-73.959333
],
[
40.818348,
-73.958287
]
],
"_id": "507095ab9ba8492ea7cecf20"
},
{
"count": 38,
"center": [
40.76703006451614,
-74.0067756451613
],
"representative_images": {},
"label": 206,
"convex_hull": [
[
40.764955,
-74.004095
],
[
40.765851,
-74.003562
],
[
40.767672,
-74.00322
],
[
40.771321,
-74.003634
],
[
40.772,
-74.006667
],
[
40.765819,
-74.0085
],
[
40.765307,
-74.008358
]
],
"_id": "507095ab9ba8492ea7cecf21"
},
{
"count": 23,
"center": [
40.74321363333334,
-73.91738910000001
],
"representative_images": {},
"label": 207,
"convex_hull": [
[
40.740959,
-73.918346
],
[
40.74288,
-73.915309
],
[
40.7442,
-73.91756
],
[
40.7444,
-73.9195
],
[
40.743631,
-73.920435
],
[
40.741885,
-73.91984
]
],
"_id": "507095ab9ba8492ea7cecf22"
},
{
"count": 38,
"center": [
40.75298816666668,
-73.93506259999998
],
"representative_images": {},
"label": 208,
"convex_hull": [
[
40.749166,
-73.936666
],
[
40.751833,
-73.933834
],
[
40.753333,
-73.932334
],
[
40.75571,
-73.93713
],
[
40.75571,
-73.937173
],
[
40.752442,
-73.939211
],
[
40.749333,
-73.937333
]
],
"_id": "507095ab9ba8492ea7cecf23"
},
{
"count": 31,
"center": [
40.8717142413793,
-73.954097
],
"representative_images": {},
"label": 209,
"convex_hull": [
[
40.8666,
-73.951892
],
[
40.871333,
-73.949834
],
[
40.873,
-73.953
],
[
40.873333,
-73.9555
],
[
40.872,
-73.955334
]
],
"_id": "507095ab9ba8492ea7cecf24"
},
{
"count": 30,
"center": [
40.80353572413792,
-73.91290275862066
],
"representative_images": {},
"label": 210,
"convex_hull": [
[
40.799524,
-73.910018
],
[
40.803958,
-73.910715
],
[
40.805166,
-73.911
],
[
40.804166,
-73.914
],
[
40.803049,
-73.915232
]
],
"_id": "507095ab9ba8492ea7cecf25"
},
{
"count": 26,
"center": [
40.69873820689654,
-73.9752625862069
],
"representative_images": {},
"label": 211,
"convex_hull": [
[
40.697455,
-73.9747
],
[
40.697644,
-73.974262
],
[
40.701463,
-73.975582
],
[
40.699,
-73.9755
],
[
40.698205,
-73.975228
],
[
40.697666,
-73.974962
]
],
"_id": "507095ab9ba8492ea7cecf26"
},
{
"count": 44,
"center": [
40.87554388888889,
-73.92820148148151
],
"representative_images": {},
"label": 212,
"convex_hull": [
[
40.869947,
-73.926551
],
[
40.871046,
-73.926218
],
[
40.875294,
-73.925803
],
[
40.876429,
-73.92728
],
[
40.877958,
-73.929576
],
[
40.871055,
-73.931042
]
],
"_id": "507095ab9ba8492ea7cecf27"
},
{
"count": 29,
"center": [
40.85300222222222,
-73.95953907407406
],
"representative_images": {},
"label": 213,
"convex_hull": [
[
40.8495,
-73.957667
],
[
40.852333,
-73.956167
],
[
40.8545,
-73.958
],
[
40.854429,
-73.959081
],
[
40.854254,
-73.960782
],
[
40.853309,
-73.961967
]
],
"_id": "507095ab9ba8492ea7cecf28"
},
{
"count": 22,
"center": [
40.69793188888889,
-73.9325018148148
],
"representative_images": {},
"label": 214,
"convex_hull": [
[
40.696777,
-73.933956
],
[
40.697177,
-73.931837
],
[
40.69783,
-73.930314
],
[
40.699344,
-73.932245
],
[
40.698499,
-73.934
],
[
40.696919,
-73.934903
],
[
40.696902,
-73.934845
]
],
"_id": "507095ab9ba8492ea7cecf29"
},
{
"count": 35,
"center": [
40.703903,
-73.94395280769233
],
"representative_images": {},
"label": 215,
"convex_hull": [
[
40.699474,
-73.942794
],
[
40.700667,
-73.941833
],
[
40.701672,
-73.941037
],
[
40.703334,
-73.941078
],
[
40.705823,
-73.94354
],
[
40.70647,
-73.94429
],
[
40.706227,
-73.945267
],
[
40.700141,
-73.948577
]
],
"_id": "507095ab9ba8492ea7cecf2a"
},
{
"count": 24,
"center": [
40.76072576000001,
-73.91090599999998
],
"representative_images": {},
"label": 217,
"convex_hull": [
[
40.758391,
-73.910298
],
[
40.7585,
-73.910167
],
[
40.761282,
-73.909358
],
[
40.761501,
-73.90935
],
[
40.762325,
-73.911605
],
[
40.762279,
-73.912048
],
[
40.759166,
-73.913167
]
],
"_id": "507095ab9ba8492ea7cecf2c"
},
{
"count": 26,
"center": [
40.76954620833333,
-73.92675700000001
],
"representative_images": {},
"label": 219,
"convex_hull": [
[
40.766717,
-73.925998
],
[
40.769264,
-73.92404
],
[
40.772611,
-73.9258
],
[
40.770645,
-73.927538
],
[
40.767041,
-73.930295
]
],
"_id": "507095ab9ba8492ea7cecf2e"
},
{
"count": 14,
"center": [
40.69430652173913,
-74.03467895652174
],
"representative_images": {},
"label": 220,
"convex_hull": [
[
40.692916,
-74.033614
],
[
40.6935,
-74.032165
],
[
40.695444,
-74.033689
],
[
40.694334,
-74.037262
],
[
40.693801,
-74.03655
]
],
"_id": "507095ab9ba8492ea7cecf2f"
},
{
"count": 34,
"center": [
40.72996778260869,
-73.94501386956522
],
"representative_images": {},
"label": 221,
"convex_hull": [
[
40.727296,
-73.944478
],
[
40.727666,
-73.943334
],
[
40.73114,
-73.945015
],
[
40.731681,
-73.946217
],
[
40.730602,
-73.94993
],
[
40.727333,
-73.948334
]
],
"_id": "507095ab9ba8492ea7cecf30"
},
{
"count": 23,
"center": [
40.75595276190476,
-73.91351576190479
],
"representative_images": {},
"label": 224,
"convex_hull": [
[
40.752779,
-73.910661
],
[
40.755108,
-73.910812
],
[
40.757333,
-73.912833
],
[
40.7565,
-73.9145
],
[
40.756333,
-73.914834
],
[
40.755238,
-73.916632
],
[
40.753787,
-73.915522
],
[
40.753177,
-73.914131
]
],
"_id": "507095ab9ba8492ea7cecf33"
},
{
"count": 26,
"center": [
40.74440400000001,
-74.01628585
],
"representative_images": {},
"label": 225,
"convex_hull": [
[
40.742,
-74.017328
],
[
40.743055,
-74.011945
],
[
40.7455,
-74.0115
],
[
40.745666,
-74.011667
],
[
40.746119,
-74.01622
],
[
40.745533,
-74.018121
]
],
"_id": "507095ab9ba8492ea7cecf34"
},
{
"count": 20,
"center": [
40.780783736842125,
-74.00995215789473
],
"representative_images": {},
"label": 227,
"convex_hull": [
[
40.779649,
-74.008485
],
[
40.779702,
-74.008282
],
[
40.7805,
-74.007833
],
[
40.784509,
-74.00838
],
[
40.783128,
-74.010128
],
[
40.783084,
-74.010182
],
[
40.77975,
-74.012022
]
],
"_id": "507095ab9ba8492ea7cecf36"
},
{
"count": 28,
"center": [
40.74549368421053,
-73.93452736842104
],
"representative_images": {},
"label": 228,
"convex_hull": [
[
40.744428,
-73.931787
],
[
40.74472,
-73.931915
],
[
40.747801,
-73.933632
],
[
40.74852,
-73.935552
],
[
40.749,
-73.937
],
[
40.749,
-73.937167
],
[
40.748677,
-73.937351
],
[
40.74445,
-73.936421
]
],
"_id": "507095ab9ba8492ea7cecf37"
},
{
"count": 19,
"center": [
40.70515194736842,
-73.91788963157892
],
"representative_images": {},
"label": 229,
"convex_hull": [
[
40.701818,
-73.917675
],
[
40.705598,
-73.917434
],
[
40.705146,
-73.920092
],
[
40.702949,
-73.919387
]
],
"_id": "507095ab9ba8492ea7cecf38"
},
{
"count": 22,
"center": [
40.74593884210526,
-73.96628110526315
],
"representative_images": {},
"label": 231,
"convex_hull": [
[
40.74368,
-73.967537
],
[
40.74485,
-73.965325
],
[
40.746996,
-73.96305
],
[
40.749288,
-73.963517
],
[
40.74952,
-73.963732
],
[
40.749012,
-73.965711
],
[
40.7465,
-73.969334
]
],
"_id": "507095ab9ba8492ea7cecf3a"
},
{
"count": 16,
"center": [
40.8129033888889,
-73.93242922222221
],
"representative_images": {},
"label": 233,
"convex_hull": [
[
40.810833,
-73.932167
],
[
40.812875,
-73.928137
],
[
40.814,
-73.931167
],
[
40.814247,
-73.933673
],
[
40.813675,
-73.934753
]
],
"_id": "507095ab9ba8492ea7cecf3c"
},
{
"count": 15,
"center": [
40.840213388888884,
-73.92683283333334
],
"representative_images": {},
"label": 235,
"convex_hull": [
[
40.839122,
-73.928406
],
[
40.839338,
-73.925584
],
[
40.839358,
-73.925531
],
[
40.840125,
-73.925217
],
[
40.841255,
-73.927987
],
[
40.840816,
-73.928262
],
[
40.840755,
-73.928292
]
],
"_id": "507095ab9ba8492ea7cecf3e"
},
{
"count": 18,
"center": [
40.86391676470588,
-73.91891700000002
],
"representative_images": {},
"label": 240,
"convex_hull": [
[
40.860555,
-73.9175
],
[
40.863809,
-73.91712
],
[
40.866,
-73.918501
],
[
40.8665,
-73.92
],
[
40.862758,
-73.920607
],
[
40.860795,
-73.917989
]
],
"_id": "507095ab9ba8492ea7cecf43"
},
{
"count": 11,
"center": [
40.70089905882353,
-73.96471782352943
],
"representative_images": {},
"label": 241,
"convex_hull": [
[
40.698035,
-73.963404
],
[
40.702847,
-73.9654
],
[
40.704,
-73.9675
],
[
40.701833,
-73.967333
],
[
40.7015,
-73.967167
],
[
40.699576,
-73.96511
]
],
"_id": "507095ab9ba8492ea7cecf44"
},
{
"count": 28,
"center": [
40.71928747058823,
-74.02313370588234
],
"representative_images": {},
"label": 242,
"convex_hull": [
[
40.715452,
-74.021634
],
[
40.715883,
-74.020053
],
[
40.717413,
-74.019748
],
[
40.720752,
-74.020923
],
[
40.722672,
-74.022703
],
[
40.724167,
-74.024167
],
[
40.723667,
-74.024333
],
[
40.71928,
-74.02465
]
],
"_id": "507095ab9ba8492ea7cecf45"
},
{
"count": 13,
"center": [
40.70084766666666,
-74.03359793333333
],
"representative_images": {},
"label": 246,
"convex_hull": [
[
40.699055,
-74.032402
],
[
40.703415,
-74.032917
],
[
40.702667,
-74.036667
],
[
40.699291,
-74.035164
]
],
"_id": "507095ab9ba8492ea7cecf49"
},
{
"count": 10,
"center": [
40.8511244,
-73.92661653333333
],
"representative_images": {},
"label": 247,
"convex_hull": [
[
40.849417,
-73.92683
],
[
40.849834,
-73.924004
],
[
40.851238,
-73.925578
],
[
40.850704,
-73.926701
],
[
40.849438,
-73.928584
]
],
"_id": "507095ab9ba8492ea7cecf4a"
},
{
"count": 15,
"center": [
40.817901533333334,
-73.93408139999998
],
"representative_images": {},
"label": 248,
"convex_hull": [
[
40.815709,
-73.9339
],
[
40.819375,
-73.930295
],
[
40.819494,
-73.933756
],
[
40.819427,
-73.933987
],
[
40.817636,
-73.93445
],
[
40.816997,
-73.934553
]
],
"_id": "507095ab9ba8492ea7cecf4b"
},
{
"count": 9,
"center": [
40.6973316,
-74.03387306666666
],
"representative_images": {},
"label": 249,
"convex_hull": [
[
40.695411,
-74.032173
],
[
40.6986,
-74.032659
],
[
40.698819,
-74.033064
],
[
40.698079,
-74.035491
],
[
40.697224,
-74.035306
],
[
40.695666,
-74.033
]
],
"_id": "507095ab9ba8492ea7cecf4c"
},
{
"count": 16,
"center": [
40.72276585714285,
-73.93595021428571
],
"representative_images": {},
"label": 251,
"convex_hull": [
[
40.720481,
-73.936443
],
[
40.721619,
-73.935102
],
[
40.723355,
-73.933975
],
[
40.725205,
-73.932956
],
[
40.725,
-73.934834
],
[
40.723667,
-73.9395
],
[
40.720688,
-73.937795
]
],
"_id": "507095ab9ba8492ea7cecf4e"
},
{
"count": 10,
"center": [
40.69955607142857,
-73.92892464285715
],
"representative_images": {},
"label": 253,
"convex_hull": [
[
40.699386,
-73.929931
],
[
40.69969,
-73.929517
],
[
40.701598,
-73.928629
],
[
40.701833,
-73.928667
]
],
"_id": "507095ab9ba8492ea7cecf50"
},
{
"count": 16,
"center": [
40.87447007142857,
-73.91213771428572
],
"representative_images": {},
"label": 254,
"convex_hull": [
[
40.872333,
-73.912333
],
[
40.873999,
-73.909921
],
[
40.876595,
-73.909626
],
[
40.876194,
-73.91219
],
[
40.875668,
-73.915337
]
],
"_id": "507095ab9ba8492ea7cecf51"
},
{
"count": 15,
"center": [
40.78939685714285,
-74.02202092857142
],
"representative_images": {},
"label": 256,
"convex_hull": [
[
40.788032,
-74.018017
],
[
40.7895,
-74.021833
],
[
40.7895,
-74.022167
],
[
40.789333,
-74.022167
],
[
40.78839,
-74.020957
]
],
"_id": "507095ab9ba8492ea7cecf53"
},
{
"count": 14,
"center": [
40.81655635714286,
-73.9189552142857
],
"representative_images": {},
"label": 257,
"convex_hull": [
[
40.815091,
-73.919439
],
[
40.815391,
-73.918795
],
[
40.817203,
-73.918536
],
[
40.817999,
-73.91878
],
[
40.81795,
-73.918912
]
],
"_id": "507095ab9ba8492ea7cecf54"
},
{
"count": 17,
"center": [
40.75022338461538,
-73.91439915384616
],
"representative_images": {},
"label": 259,
"convex_hull": [
[
40.747667,
-73.916
],
[
40.748898,
-73.912603
],
[
40.752362,
-73.912788
],
[
40.753666,
-73.918
],
[
40.747833,
-73.916333
]
],
"_id": "507095ab9ba8492ea7cecf56"
},
{
"count": 12,
"center": [
40.77325738461538,
-73.91994115384615
],
"representative_images": {},
"label": 260,
"convex_hull": [
[
40.771406,
-73.919651
],
[
40.772138,
-73.919128
],
[
40.774167,
-73.920167
],
[
40.774927,
-73.921923
],
[
40.774444,
-73.923056
],
[
40.7735,
-73.923167
]
],
"_id": "507095ab9ba8492ea7cecf57"
},
{
"count": 34,
"center": [
40.85439675,
-73.92728141666667
],
"representative_images": {},
"label": 262,
"convex_hull": [
[
40.852124,
-73.931808
],
[
40.852729,
-73.927141
],
[
40.852944,
-73.926159
],
[
40.854518,
-73.924797
],
[
40.856664,
-73.928176
],
[
40.8575,
-73.930501
],
[
40.856833,
-73.931167
],
[
40.855416,
-73.932189
]
],
"_id": "507095ab9ba8492ea7cecf59"
},
{
"count": 12,
"center": [
40.75890041666667,
-73.93562141666666
],
"representative_images": {},
"label": 263,
"convex_hull": [
[
40.756166,
-73.9345
],
[
40.759064,
-73.935074
],
[
40.76121,
-73.935649
],
[
40.759833,
-73.937334
],
[
40.759666,
-73.937334
],
[
40.757333,
-73.936334
]
],
"_id": "507095ab9ba8492ea7cecf5a"
},
{
"count": 22,
"center": [
40.77074458333333,
-74.02090966666668
],
"representative_images": {},
"label": 267,
"convex_hull": [
[
40.768107,
-74.024499
],
[
40.769444,
-74.020555
],
[
40.769501,
-74.020401
],
[
40.774983,
-74.020923
],
[
40.774983,
-74.020981
]
],
"_id": "507095ab9ba8492ea7cecf5e"
},
{
"count": 15,
"center": [
40.76839283333334,
-73.91185633333335
],
"representative_images": {},
"label": 268,
"convex_hull": [
[
40.765614,
-73.912403
],
[
40.765675,
-73.912269
],
[
40.76966,
-73.910066
],
[
40.772098,
-73.909701
],
[
40.77096,
-73.913488
],
[
40.76654,
-73.912957
]
],
"_id": "507095ab9ba8492ea7cecf5f"
},
{
"count": 8,
"center": [
40.73743291666667,
-73.92947233333335
],
"representative_images": {},
"label": 269,
"convex_hull": [
[
40.736823,
-73.931583
],
[
40.736884,
-73.92801
],
[
40.737667,
-73.929333
],
[
40.737,
-73.9315
]
],
"_id": "507095ab9ba8492ea7cecf60"
},
{
"count": 24,
"center": [
40.74164266666667,
-73.96512241666667
],
"representative_images": {},
"label": 271,
"convex_hull": [
[
40.738119,
-73.965673
],
[
40.740778,
-73.961548
],
[
40.742,
-73.961667
],
[
40.742563,
-73.963206
],
[
40.743166,
-73.9655
],
[
40.743347,
-73.966228
],
[
40.742201,
-73.968522
]
],
"_id": "507095ab9ba8492ea7cecf62"
},
{
"count": 10,
"center": [
40.855855999999996,
-73.92182981818182
],
"representative_images": {},
"label": 272,
"convex_hull": [
[
40.85481,
-73.923107
],
[
40.856335,
-73.918167
],
[
40.858833,
-73.922667
],
[
40.857634,
-73.923279
],
[
40.855423,
-73.923906
]
],
"_id": "507095ab9ba8492ea7cecf63"
},
{
"count": 12,
"center": [
40.73064136363636,
-73.92680972727273
],
"representative_images": {},
"label": 273,
"convex_hull": [
[
40.729333,
-73.927333
],
[
40.73073,
-73.925274
],
[
40.733616,
-73.924031
],
[
40.731998,
-73.927834
],
[
40.7295,
-73.928334
]
],
"_id": "507095ab9ba8492ea7cecf64"
},
{
"count": 5,
"center": [
40.737731000000004,
-73.9263225
],
"representative_images": {},
"label": 274,
"convex_hull": [
[
40.736166,
-73.927
],
[
40.737287,
-73.925596
],
[
40.739486,
-73.925113
],
[
40.739833,
-73.926833
],
[
40.738167,
-73.927
]
],
"_id": "507095ab9ba8492ea7cecf65"
},
{
"count": 13,
"center": [
40.8521248,
-73.9194178
],
"representative_images": {},
"label": 275,
"convex_hull": [
[
40.849085,
-73.916058
],
[
40.849997,
-73.916056
],
[
40.854802,
-73.919117
],
[
40.854832,
-73.919167
],
[
40.8535,
-73.920502
],
[
40.852001,
-73.921997
],
[
40.850552,
-73.91977
]
],
"_id": "507095ab9ba8492ea7cecf66"
},
{
"count": 8,
"center": [
40.75005639999999,
-73.93241090000001
],
"representative_images": {},
"label": 276,
"convex_hull": [
[
40.748,
-73.930317
],
[
40.748996,
-73.930488
],
[
40.750418,
-73.93125
],
[
40.75113,
-73.933525
]
],
"_id": "507095ab9ba8492ea7cecf67"
},
{
"count": 10,
"center": [
40.810815299999994,
-73.93523619999999
],
"representative_images": {},
"label": 277,
"convex_hull": [
[
40.806891,
-73.934351
],
[
40.811001,
-73.93383
],
[
40.811811,
-73.934147
],
[
40.812,
-73.936218
],
[
40.810922,
-73.936481
],
[
40.808833,
-73.936333
]
],
"_id": "507095ab9ba8492ea7cecf68"
},
{
"count": 29,
"center": [
40.69871919999999,
-73.97873770000001
],
"representative_images": {},
"label": 278,
"convex_hull": [
[
40.698105,
-73.978431
],
[
40.698535,
-73.977556
],
[
40.703,
-73.980834
],
[
40.703171,
-73.982652
],
[
40.698333,
-73.979667
],
[
40.698205,
-73.979197
]
],
"_id": "507095ab9ba8492ea7cecf69"
},
{
"count": 22,
"center": [
40.776639200000005,
-73.99931060000002
],
"representative_images": {},
"label": 280,
"convex_hull": [
[
40.772579,
-73.997901
],
[
40.773266,
-73.996725
],
[
40.779806,
-73.997769
],
[
40.776653,
-73.999313
],
[
40.776607,
-73.999305
]
],
"_id": "507095ab9ba8492ea7cecf6b"
},
{
"count": 21,
"center": [
40.748683666666665,
-73.92629711111111
],
"representative_images": {},
"label": 282,
"convex_hull": [
[
40.74722,
-73.929351
],
[
40.747333,
-73.926667
],
[
40.7475,
-73.926334
],
[
40.749666,
-73.924834
],
[
40.752145,
-73.925224
],
[
40.752357,
-73.926562
]
],
"_id": "507095ab9ba8492ea7cecf6d"
},
{
"count": 14,
"center": [
40.73910088888889,
-73.92289077777778
],
"representative_images": {},
"label": 283,
"convex_hull": [
[
40.7355,
-73.920833
],
[
40.735667,
-73.920333
],
[
40.736333,
-73.920167
],
[
40.742239,
-73.920983
],
[
40.741014,
-73.922495
],
[
40.740103,
-73.923568
],
[
40.737833,
-73.923333
]
],
"_id": "507095ab9ba8492ea7cecf6e"
},
{
"count": 10,
"center": [
40.7253988888889,
-73.9214862222222
],
"representative_images": {},
"label": 285,
"convex_hull": [
[
40.723422,
-73.926195
],
[
40.724122,
-73.920234
],
[
40.72655,
-73.921978
]
],
"_id": "507095ab9ba8492ea7cecf70"
},
{
"count": 9,
"center": [
40.771367222222224,
-74.01281344444445
],
"representative_images": {},
"label": 286,
"convex_hull": [
[
40.768316,
-74.012348
],
[
40.773066,
-74.008283
],
[
40.772664,
-74.010815
],
[
40.770833,
-74.0145
]
],
"_id": "507095ab9ba8492ea7cecf71"
},
{
"count": 9,
"center": [
40.86005377777778,
-73.956466
],
"representative_images": {},
"label": 287,
"convex_hull": [
[
40.857707,
-73.956613
],
[
40.860693,
-73.954639
],
[
40.861547,
-73.954681
],
[
40.860044,
-73.958851
]
],
"_id": "507095ab9ba8492ea7cecf72"
},
{
"count": 5,
"center": [
40.8563475,
-73.95973074999999
],
"representative_images": {},
"label": 288,
"convex_hull": [
[
40.857273,
-73.960063
],
[
40.857301,
-73.959967
],
[
40.8578,
-73.959107
],
[
40.857877,
-73.960214
],
[
40.857346,
-73.960632
]
],
"_id": "507095ab9ba8492ea7cecf73"
},
{
"count": 17,
"center": [
40.705360625000004,
-74.041279
],
"representative_images": {},
"label": 289,
"convex_hull": [
[
40.70457,
-74.042572
],
[
40.704704,
-74.041575
],
[
40.704712,
-74.041553
],
[
40.706896,
-74.038367
],
[
40.707059,
-74.044589
]
],
"_id": "507095ab9ba8492ea7cecf74"
},
{
"count": 7,
"center": [
40.820876125000005,
-73.934935375
],
"representative_images": {},
"label": 292,
"convex_hull": [
[
40.819858,
-73.933364
],
[
40.822,
-73.931834
],
[
40.822688,
-73.937012
],
[
40.822643,
-73.938846
]
],
"_id": "507095ab9ba8492ea7cecf77"
},
{
"count": 13,
"center": [
40.698809375,
-73.937293
],
"representative_images": {},
"label": 294,
"convex_hull": [
[
40.696999,
-73.936167
],
[
40.697047,
-73.935223
],
[
40.7005,
-73.9365
],
[
40.701666,
-73.939334
],
[
40.700313,
-73.941139
],
[
40.699833,
-73.941167
]
],
"_id": "507095ab9ba8492ea7cecf79"
},
{
"count": 7,
"center": [
40.787573,
-74.00523928571428
],
"representative_images": {},
"label": 295,
"convex_hull": [
[
40.786414,
-74.004142
],
[
40.78652,
-74.002618
],
[
40.789541,
-74.006295
],
[
40.787194,
-74.006663
],
[
40.786418,
-74.004179
]
],
"_id": "507095ab9ba8492ea7cecf7a"
},
{
"count": 8,
"center": [
40.69796414285714,
-73.967678
],
"representative_images": {},
"label": 296,
"convex_hull": [
[
40.697014,
-73.965529
],
[
40.697777,
-73.965834
],
[
40.699238,
-73.968384
],
[
40.699286,
-73.96847
],
[
40.699666,
-73.971167
],
[
40.697086,
-73.9695
]
],
"_id": "507095ab9ba8492ea7cecf7b"
},
{
"count": 8,
"center": [
40.868992142857145,
-73.91159142857143
],
"representative_images": {},
"label": 299,
"convex_hull": [
[
40.864166,
-73.911003
],
[
40.871379,
-73.910007
],
[
40.871333,
-73.910167
],
[
40.86918,
-73.913816
]
],
"_id": "507095ab9ba8492ea7cecf7e"
},
{
"count": 63,
"center": [
40.70413857142857,
-73.96143414285714
],
"representative_images": {},
"label": 301,
"convex_hull": [
[
40.703216,
-73.9601
],
[
40.70613,
-73.955238
],
[
40.706388,
-73.955
],
[
40.706666,
-73.955
],
[
40.708,
-73.955666
],
[
40.70835,
-73.956581
],
[
40.708484,
-73.958016
],
[
40.708458,
-73.95833
],
[
40.706799,
-73.962707
],
[
40.704326,
-73.96305
]
],
"_id": "507095ab9ba8492ea7cecf80"
},
{
"count": 6,
"center": [
40.698800166666665,
-73.92569133333335
],
"representative_images": {},
"label": 302,
"convex_hull": [
[
40.697855,
-73.927348
],
[
40.698452,
-73.923714
],
[
40.699268,
-73.924163
],
[
40.701004,
-73.925878
]
],
"_id": "507095ab9ba8492ea7cecf81"
},
{
"count": 5,
"center": [
40.75495266666667,
-73.93007783333333
],
"representative_images": {},
"label": 304,
"convex_hull": [
[
40.753889,
-73.929823
],
[
40.755763,
-73.927757
],
[
40.756636,
-73.929748
],
[
40.755975,
-73.930939
]
],
"_id": "507095ab9ba8492ea7cecf83"
},
{
"count": 6,
"center": [
40.783166,
-74.02049999999998
],
"representative_images": {},
"label": 307,
"convex_hull": [
[
40.783166,
-74.0205
]
],
"_id": "507095ab9ba8492ea7cecf86"
},
{
"count": 3,
"center": [
40.7075905,
-73.9142885
],
"representative_images": {},
"label": 309,
"convex_hull": [
[
40.705833,
-73.915167
],
[
40.706167,
-73.914167
],
[
40.708836,
-73.913246
]
],
"_id": "507095ab9ba8492ea7cecf88"
},
{
"count": 3,
"center": [
40.761132399999994,
-73.94228580000001
],
"representative_images": {},
"label": 312,
"convex_hull": [
[
40.76303,
-73.942
],
[
40.7625,
-73.944
],
[
40.761177,
-73.942956
]
],
"_id": "507095ab9ba8492ea7cecf8b"
},
{
"count": 5,
"center": [
40.7130756,
-73.91404499999999
],
"representative_images": {},
"label": 314,
"convex_hull": [
[
40.71113,
-73.912431
],
[
40.714035,
-73.913543
],
[
40.713333,
-73.9165
]
],
"_id": "507095ab9ba8492ea7cecf8d"
},
{
"count": 6,
"center": [
40.7413294,
-73.9307514
],
"representative_images": {},
"label": 315,
"convex_hull": [
[
40.739167,
-73.930833
],
[
40.744172,
-73.928793
],
[
40.742646,
-73.932091
]
],
"_id": "507095ab9ba8492ea7cecf8e"
},
{
"count": 9,
"center": [
40.820147199999994,
-73.9262808
],
"representative_images": {},
"label": 318,
"convex_hull": [
[
40.81653,
-73.928189
],
[
40.818694,
-73.926792
],
[
40.820947,
-73.925716
],
[
40.821677,
-73.925896
],
[
40.823786,
-73.927092
],
[
40.824031,
-73.928364
],
[
40.823357,
-73.929834
]
],
"_id": "507095ab9ba8492ea7cecf91"
},
{
"count": 5,
"center": [
40.79428660000001,
-74.0039134
],
"representative_images": {},
"label": 319,
"convex_hull": [
[
40.7937,
-74.0037
],
[
40.793833,
-74.003667
],
[
40.795,
-74.004167
],
[
40.795,
-74.004333
]
],
"_id": "507095ab9ba8492ea7cecf92"
},
{
"count": 4,
"center": [
40.80729325,
-73.91697925
],
"representative_images": {},
"label": 322,
"convex_hull": [
[
40.805733,
-73.915162
],
[
40.807883,
-73.916862
],
[
40.807755,
-73.919084
]
],
"_id": "507095ab9ba8492ea7cecf95"
},
{
"count": 5,
"center": [
40.73690125,
-73.93555725
],
"representative_images": {},
"label": 325,
"convex_hull": [
[
40.734576,
-73.937144
],
[
40.736258,
-73.93258
],
[
40.737495,
-73.934043
],
[
40.738166,
-73.9355
]
],
"_id": "507095ab9ba8492ea7cecf98"
},
{
"count": 4,
"center": [
40.758322,
-73.94115333333333
],
"representative_images": {},
"label": 328,
"convex_hull": [
[
40.7553,
-73.939428
],
[
40.759483,
-73.941234
],
[
40.759472,
-73.941239
],
[
40.756011,
-73.940987
]
],
"_id": "507095ab9ba8492ea7cecf9b"
},
{
"count": 3,
"center": [
40.80692533333333,
-74.005125
],
"representative_images": {},
"label": 329,
"convex_hull": [
[
40.806251,
-74.006744
],
[
40.801742,
-74.006983
],
[
40.807109,
-74.00595
]
],
"_id": "507095ab9ba8492ea7cecf9c"
},
{
"count": 3,
"center": [
40.731274000000006,
-73.91592966666667
],
"representative_images": {},
"label": 331,
"convex_hull": [
[
40.731323,
-73.913955
],
[
40.731333,
-73.916334
],
[
40.731166,
-73.9175
]
],
"_id": "507095ab9ba8492ea7cecf9e"
},
{
"count": 3,
"center": [
40.83391633333333,
-74.009662
],
"representative_images": {},
"label": 332,
"convex_hull": [
[
40.83383,
-74.009962
],
[
40.8345,
-74.009112
],
[
40.833419,
-74.009912
]
],
"_id": "507095ab9ba8492ea7cecf9f"
},
{
"count": 4,
"center": [
40.723434,
-73.911906
],
"representative_images": {},
"label": 333,
"convex_hull": [
[
40.722668,
-73.913354
],
[
40.724132,
-73.910104
],
[
40.724307,
-73.914942
]
],
"_id": "507095ab9ba8492ea7cecfa0"
},
{
"count": 56,
"center": [
40.697020333333334,
-73.982927
],
"representative_images": {},
"label": 334,
"convex_hull": [
[
40.696808,
-73.98969
],
[
40.696833,
-73.982833
],
[
40.701333,
-73.983167
],
[
40.70308,
-73.983403
],
[
40.703007,
-73.984057
],
[
40.702691,
-73.984626
]
],
"_id": "507095ab9ba8492ea7cecfa1"
},
{
"count": 3,
"center": [
40.790961,
-74.011858
],
"representative_images": {},
"label": 336,
"convex_hull": [
[
40.789825,
-74.011238
],
[
40.793233,
-74.013098
]
],
"_id": "507095ab9ba8492ea7cecfa3"
},
{
"count": 3,
"center": [
40.7044,
-73.91167033333333
],
"representative_images": {},
"label": 337,
"convex_hull": [
[
40.703993,
-73.911359
],
[
40.7025,
-73.911833
],
[
40.706707,
-73.911819
]
],
"_id": "507095ab9ba8492ea7cecfa4"
},
{
"count": 6,
"center": [
40.858485,
-73.945415
],
"representative_images": {},
"label": 338,
"convex_hull": [
[
40.854667,
-73.948
],
[
40.858833,
-73.941334
],
[
40.859455,
-73.943745
],
[
40.8585,
-73.946
]
],
"_id": "507095ab9ba8492ea7cecfa5"
},
{
"count": 3,
"center": [
40.71223,
-74.04372033333334
],
"representative_images": {},
"label": 339,
"convex_hull": [
[
40.712923,
-74.044268
],
[
40.713065,
-74.043248
],
[
40.710702,
-74.043645
]
],
"_id": "507095ab9ba8492ea7cecfa6"
},
{
"count": 3,
"center": [
40.84822166666667,
-73.95288866666667
],
"representative_images": {},
"label": 340,
"convex_hull": [
[
40.849333,
-73.952
],
[
40.847166,
-73.953666
],
[
40.848166,
-73.953
]
],
"_id": "507095ab9ba8492ea7cecfa7"
},
{
"count": 4,
"center": [
40.832389,
-73.914222
],
"representative_images": {},
"label": 341,
"convex_hull": [
[
40.8325,
-73.914333
],
[
40.832167,
-73.914
],
[
40.832616,
-73.910819
]
],
"_id": "507095ab9ba8492ea7cecfa8"
},
{
"count": 2,
"center": [
40.857076,
-73.9523825
],
"representative_images": {},
"label": 343,
"convex_hull": [
[
40.855866,
-73.953984
],
[
40.858286,
-73.950781
]
],
"_id": "507095ab9ba8492ea7cecfaa"
},
{
"count": 2,
"center": [
40.818494,
-74.020848
],
"representative_images": {},
"label": 345,
"convex_hull": [
[
40.818494,
-74.020848
]
],
"_id": "507095ab9ba8492ea7cecfac"
},
{
"count": 2,
"center": [
40.7097755,
-74.0498145
],
"representative_images": {},
"label": 346,
"convex_hull": [
[
40.709857,
-74.049568
],
[
40.709694,
-74.050061
]
],
"_id": "507095ab9ba8492ea7cecfad"
},
{
"count": 2,
"center": [
40.737055,
-73.91077849999999
],
"representative_images": {},
"label": 347,
"convex_hull": [
[
40.737777,
-73.912223
],
[
40.736333,
-73.909334
]
],
"_id": "507095ab9ba8492ea7cecfae"
},
{
"count": 2,
"center": [
40.780129,
-74.0235385
],
"representative_images": {},
"label": 348,
"convex_hull": [
[
40.779444,
-74.024167
],
[
40.780814,
-74.02291
]
],
"_id": "507095ab9ba8492ea7cecfaf"
},
{
"count": 0,
"center": [
40.740247,
-73.9133305
],
"representative_images": {},
"label": 349,
"convex_hull": [],
"_id": "507095ab9ba8492ea7cecfb0"
},
{
"count": 2,
"center": [
40.853511999999995,
-74.01975300000001
],
"representative_images": {},
"label": 351,
"convex_hull": [
[
40.853809,
-74.019958
],
[
40.853215,
-74.019548
]
],
"_id": "507095ab9ba8492ea7cecfb2"
},
{
"count": 2,
"center": [
40.777641,
-74.0052545
],
"representative_images": {},
"label": 353,
"convex_hull": [
[
40.776519,
-74.006267
],
[
40.778763,
-74.004242
]
],
"_id": "507095ab9ba8492ea7cecfb4"
},
{
"count": 3,
"center": [
40.804083500000004,
-73.92375000000001
],
"representative_images": {},
"label": 354,
"convex_hull": [
[
40.803167,
-73.922667
],
[
40.805,
-73.924833
],
[
40.806171,
-73.926004
]
],
"_id": "507095ab9ba8492ea7cecfb5"
},
{
"count": 3,
"center": [
40.874439499999994,
-74.016796
],
"representative_images": {},
"label": 356,
"convex_hull": [
[
40.874497,
-74.015694
],
[
40.865923,
-74.021179
],
[
40.874382,
-74.017898
]
],
"_id": "507095ab9ba8492ea7cecfb7"
},
{
"count": 2,
"center": [
40.8185,
-73.91508350000001
],
"representative_images": {},
"label": 357,
"convex_hull": [
[
40.816667,
-73.915167
],
[
40.820333,
-73.915
]
],
"_id": "507095ab9ba8492ea7cecfb8"
},
{
"count": 3,
"center": [
40.824713,
-74.0094005
],
"representative_images": {},
"label": 358,
"convex_hull": [
[
40.824688,
-74.009412
],
[
40.820924,
-74.007742
],
[
40.824738,
-74.009389
]
],
"_id": "507095ab9ba8492ea7cecfb9"
},
{
"count": 3,
"center": [
40.759594,
-73.945981
],
"representative_images": {},
"label": 361,
"convex_hull": [
[
40.760833,
-73.949333
],
[
40.759594,
-73.945981
],
[
40.761833,
-73.949833
]
],
"_id": "507095ab9ba8492ea7cecfbc"
},
{
"count": 1,
"center": [
40.874333,
-73.959334
],
"representative_images": {},
"label": 362,
"convex_hull": [
[
40.874333,
-73.959334
]
],
"_id": "507095ab9ba8492ea7cecfbd"
},
{
"count": 1,
"center": [
40.844564,
-74.013669
],
"representative_images": {},
"label": 364,
"convex_hull": [
[
40.844564,
-74.013669
]
],
"_id": "507095ab9ba8492ea7cecfbf"
},
{
"count": 2,
"center": [
40.872554,
-74.006874
],
"representative_images": {},
"label": 368,
"convex_hull": [
[
40.862968,
-74.012229
],
[
40.872554,
-74.006874
]
],
"_id": "507095ab9ba8492ea7cecfc3"
},
{
"count": 2,
"center": [
40.855197,
-73.910539
],
"representative_images": {},
"label": 369,
"convex_hull": [
[
40.853881,
-73.913879
],
[
40.855197,
-73.910539
]
],
"_id": "507095ab9ba8492ea7cecfc4"
},
{
"count": 2,
"center": [
40.717333,
-73.9115
],
"representative_images": {},
"label": 370,
"convex_hull": [
[
40.717333,
-73.9115
],
[
40.718562,
-73.916484
]
],
"_id": "507095ab9ba8492ea7cecfc5"
},
{
"count": 1,
"center": [
40.823833,
-73.913833
],
"representative_images": {},
"label": 371,
"convex_hull": [
[
40.823833,
-73.913833
]
],
"_id": "507095ab9ba8492ea7cecfc6"
},
{
"count": 1,
"center": [
40.828577,
-73.912773
],
"representative_images": {},
"label": 372,
"convex_hull": [
[
40.828577,
-73.912773
]
],
"_id": "507095ab9ba8492ea7cecfc7"
},
{
"count": 273,
"center": [
40.71123325,
-74.02226037499999
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/31054642@N00/5740322525",
"image_url": "static/flickr/4/3030/5740322525_78b982bb56/b.jpg"
}
},
"label": 293,
"convex_hull": [
[
40.706344,
-74.021842
],
[
40.706585,
-74.020465
],
[
40.707813,
-74.018459
],
[
40.7083,
-74.0181
],
[
40.709166,
-74.0175
],
[
40.710166,
-74.017334
],
[
40.712094,
-74.017028
],
[
40.713195,
-74.016983
],
[
40.713394,
-74.017113
],
[
40.713586,
-74.017262
],
[
40.71385,
-74.017467
],
[
40.715,
-74.0236
],
[
40.714756,
-74.024044
],
[
40.711166,
-74.024334
]
],
"_id": "507095ab9ba8492ea7cecf78"
},
{
"count": 65,
"center": [
40.691171702702704,
-74.03516864864862
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/10030854@N05/5400076708",
"image_url": "static/flickr/6/5257/5400076708_555c9ed094/b.jpg"
}
},
"label": 192,
"convex_hull": [
[
40.686363,
-74.031587
],
[
40.691332,
-74.031457
],
[
40.692223,
-74.032745
],
[
40.693,
-74.037833
],
[
40.692841,
-74.040255
],
[
40.6885,
-74.039334
],
[
40.68643,
-74.037551
]
],
"_id": "507095ab9ba8492ea7cecf13"
},
{
"count": 276,
"center": [
40.7891928208093,
-73.97987520231214
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/24458122@N00/5831182888",
"image_url": "static/flickr/6/5117/5831182888_ea5aa92c8d/b.jpg"
}
},
"label": 94,
"convex_hull": [
[
40.784144,
-73.978559
],
[
40.784249,
-73.97776
],
[
40.784676,
-73.977121
],
[
40.786833,
-73.974333
],
[
40.7886,
-73.974342
],
[
40.7895,
-73.9745
],
[
40.790166,
-73.975001
],
[
40.791167,
-73.979
],
[
40.791333,
-73.979833
],
[
40.791524,
-73.982974
],
[
40.789846,
-73.983178
],
[
40.788061,
-73.982489
],
[
40.784333,
-73.98
]
],
"_id": "507095ab9ba8492ea7ceceb1"
},
{
"count": 89,
"center": [
40.8077297820513,
-73.94642689743588
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/8039311@N04/5693763828",
"image_url": "static/flickr/6/5069/5693763828_233802a22c/b.jpg"
}
},
"label": 140,
"convex_hull": [
[
40.804522,
-73.944948
],
[
40.8047,
-73.9439
],
[
40.805047,
-73.943063
],
[
40.808333,
-73.942167
],
[
40.809652,
-73.942966
],
[
40.812599,
-73.945478
],
[
40.812616,
-73.945514
],
[
40.808526,
-73.948974
],
[
40.808333,
-73.949
],
[
40.806821,
-73.949167
],
[
40.804833,
-73.9465
]
],
"_id": "507095ab9ba8492ea7cecedf"
},
{
"count": 185,
"center": [
40.80919210144926,
-73.9517612246377
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/79119304@N00/5914061474",
"image_url": "static/flickr/6/5315/5914061474_505dff0793/b.jpg"
}
},
"label": 104,
"convex_hull": [
[
40.804333,
-73.955167
],
[
40.809001,
-73.949089
],
[
40.813322,
-73.948974
],
[
40.81352,
-73.95231
],
[
40.811559,
-73.954328
],
[
40.808567,
-73.95735
],
[
40.804494,
-73.955408
],
[
40.804417,
-73.955326
]
],
"_id": "507095ab9ba8492ea7cecebb"
},
{
"count": 16,
"center": [
40.79967873333333,
-73.91709093333334
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/87241269@N00/5908164193",
"image_url": "static/flickr/6/5032/5908164193_582fee3507/b.jpg"
}
},
"label": 244,
"convex_hull": [
[
40.7975,
-73.916333
],
[
40.797518,
-73.915876
],
[
40.800032,
-73.913719
],
[
40.801833,
-73.917
],
[
40.801667,
-73.917167
],
[
40.799833,
-73.918667
],
[
40.79835,
-73.91927
]
],
"_id": "507095ab9ba8492ea7cecf47"
},
{
"count": 5,
"center": [
40.793367,
-73.9168282
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/23896313@N04/6115270897",
"image_url": "static/flickr/7/6063/6115270897_b19f625f31/b.jpg"
}
},
"label": 311,
"convex_hull": [
[
40.791333,
-73.9165
],
[
40.794833,
-73.914333
],
[
40.794318,
-73.917846
],
[
40.793851,
-73.918129
],
[
40.7925,
-73.917333
]
],
"_id": "507095ab9ba8492ea7cecf8a"
},
{
"count": 17,
"center": [
40.79231299999999,
-73.92571794736841
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/58099981@N03/6118843201",
"image_url": "static/flickr/7/6088/6118843201_f46068e475/b.jpg"
}
},
"label": 230,
"convex_hull": [
[
40.789833,
-73.926834
],
[
40.791036,
-73.923836
],
[
40.792666,
-73.924167
],
[
40.7955,
-73.924834
],
[
40.795667,
-73.926167
],
[
40.795667,
-73.926333
],
[
40.793385,
-73.927427
]
],
"_id": "507095ab9ba8492ea7cecf39"
},
{
"count": 13,
"center": [
40.8020063076923,
-73.928217
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/6041481145",
"image_url": "static/flickr/7/6075/6041481145_812fcde87e/b.jpg"
}
},
"label": 261,
"convex_hull": [
[
40.800361,
-73.928153
],
[
40.8005,
-73.927833
],
[
40.801563,
-73.927484
],
[
40.804166,
-73.927501
],
[
40.802903,
-73.929083
],
[
40.802058,
-73.928868
]
],
"_id": "507095ab9ba8492ea7cecf58"
},
{
"count": 22,
"center": [
40.80088377272727,
-73.93380954545455
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/77179348@N00/6006887808",
"image_url": "static/flickr/7/6150/6006887808_90dbe36d07/b.jpg"
}
},
"label": 223,
"convex_hull": [
[
40.79945,
-73.935378
],
[
40.799776,
-73.932495
],
[
40.800556,
-73.931121
],
[
40.803154,
-73.932495
],
[
40.80272,
-73.934136
],
[
40.802066,
-73.934769
],
[
40.801205,
-73.935241
],
[
40.799569,
-73.935445
]
],
"_id": "507095ab9ba8492ea7cecf32"
},
{
"count": 37,
"center": [
40.79483938235294,
-73.933692882353
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/28846807@N05/5849294900",
"image_url": "static/flickr/6/5221/5849294900_3c77a0e040/b.jpg"
}
},
"label": 199,
"convex_hull": [
[
40.792627,
-73.935562
],
[
40.792742,
-73.930821
],
[
40.796763,
-73.929156
],
[
40.797352,
-73.932988
],
[
40.797075,
-73.935928
],
[
40.796505,
-73.936027
],
[
40.796089,
-73.935997
],
[
40.792713,
-73.935712
]
],
"_id": "507095ab9ba8492ea7cecf1a"
},
{
"count": 14,
"center": [
40.78866828571428,
-73.92406064285714
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/37654311@N00/5895333952",
"image_url": "static/flickr/6/5313/5895333952_6a35c1bae5/b.jpg"
}
},
"label": 252,
"convex_hull": [
[
40.786,
-73.925833
],
[
40.786594,
-73.922611
],
[
40.788373,
-73.922951
],
[
40.790273,
-73.924469
],
[
40.7886,
-73.927774
]
],
"_id": "507095ab9ba8492ea7cecf4f"
},
{
"count": 20,
"center": [
40.78875777777776,
-73.93530477777776
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/76262156@N00/5945145400",
"image_url": "static/flickr/7/6011/5945145400_414be533c8/b.jpg"
}
},
"label": 237,
"convex_hull": [
[
40.788601,
-73.934898
],
[
40.789095,
-73.932719
],
[
40.79,
-73.931833
],
[
40.78928,
-73.937153
],
[
40.789,
-73.937667
]
],
"_id": "507095ab9ba8492ea7cecf40"
},
{
"count": 55,
"center": [
40.78326862745094,
-73.93154998039219
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/15861877@N06/5822711529",
"image_url": "static/flickr/4/3111/5822711529_a640a2800a/b.jpg"
}
},
"label": 166,
"convex_hull": [
[
40.779667,
-73.929833
],
[
40.779826,
-73.928804
],
[
40.781652,
-73.928142
],
[
40.7865,
-73.929833
],
[
40.785708,
-73.931314
],
[
40.782588,
-73.932001
],
[
40.782556,
-73.93198
]
],
"_id": "507095ab9ba8492ea7cecef9"
},
{
"count": 45,
"center": [
40.80303856140349,
-73.93910961403509
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/54981798@N04/5850026842",
"image_url": "static/flickr/6/5314/5850026842_aa5fd3e2ea/b.jpg"
}
},
"label": 155,
"convex_hull": [
[
40.799627,
-73.93923
],
[
40.800666,
-73.938
],
[
40.800999,
-73.937834
],
[
40.803711,
-73.938149
],
[
40.803987,
-73.941255
],
[
40.803345,
-73.944039
],
[
40.802772,
-73.943768
],
[
40.800833,
-73.942333
]
],
"_id": "507095ab9ba8492ea7ceceee"
},
{
"count": 21,
"center": [
40.79661555555556,
-73.9412123888889
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/46384561@N00/5681843491",
"image_url": "static/flickr/6/5062/5681843491_92ce978f6e/b.jpg"
}
},
"label": 232,
"convex_hull": [
[
40.793571,
-73.944511
],
[
40.795133,
-73.941973
],
[
40.79886,
-73.938621
],
[
40.80021,
-73.942685
],
[
40.799991,
-73.944847
]
],
"_id": "507095ab9ba8492ea7cecf3b"
},
{
"count": 73,
"center": [
40.80311969999998,
-73.94932936000001
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/7909459@N03/5683860740",
"image_url": "static/flickr/6/5188/5683860740_b95095dbf2/b.jpg"
}
},
"label": 167,
"convex_hull": [
[
40.798468,
-73.948041
],
[
40.798468,
-73.94803
],
[
40.800876,
-73.946099
],
[
40.803053,
-73.945237
],
[
40.803743,
-73.945552
],
[
40.805103,
-73.947525
],
[
40.805142,
-73.951259
],
[
40.804844,
-73.953035
],
[
40.803154,
-73.956127
],
[
40.800094,
-73.954856
]
],
"_id": "507095ab9ba8492ea7cecefa"
},
{
"count": 302,
"center": [
40.79401444230768,
-73.95245101923075
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/78761875@N00/5682157947",
"image_url": "static/flickr/6/5061/5682157947_ff4f60dc42/b.jpg"
}
},
"label": 82,
"convex_hull": [
[
40.791597,
-73.951353
],
[
40.796097,
-73.947815
],
[
40.797291,
-73.94862
],
[
40.79955,
-73.9545
],
[
40.7956,
-73.955892
],
[
40.793189,
-73.955417
],
[
40.792777,
-73.955278
]
],
"_id": "507095ab9ba8492ea7cecea5"
},
{
"count": 12,
"center": [
40.79206083333333,
-73.94023366666669
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/53125271@N04/5883193370",
"image_url": "static/flickr/6/5150/5883193370_01b2eb7c49/b.jpg"
}
},
"label": 264,
"convex_hull": [
[
40.790333,
-73.939667
],
[
40.7905,
-73.939501
],
[
40.792579,
-73.939018
],
[
40.794166,
-73.940334
],
[
40.7942,
-73.94097
],
[
40.793103,
-73.942358
]
],
"_id": "507095ab9ba8492ea7cecf5b"
},
{
"count": 6,
"center": [
40.785956666666664,
-73.93905266666667
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/8594357@N07/5691810297",
"image_url": "static/flickr/6/5108/5691810297_5e26056709/b.jpg"
}
},
"label": 330,
"convex_hull": [
[
40.784403,
-73.941749
],
[
40.786268,
-73.937575
],
[
40.786602,
-73.93875
],
[
40.78615,
-73.943878
]
],
"_id": "507095ab9ba8492ea7cecf9d"
},
{
"count": 130,
"center": [
40.783151091743136,
-73.94883761467892
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/87568511@N00/5703631429",
"image_url": "static/flickr/6/5221/5703631429_c211ebd567/b.jpg"
}
},
"label": 121,
"convex_hull": [
[
40.7785,
-73.949
],
[
40.781154,
-73.947418
],
[
40.786188,
-73.945517
],
[
40.78652,
-73.945455
],
[
40.786172,
-73.950967
],
[
40.783323,
-73.953107
],
[
40.779666,
-73.950167
]
],
"_id": "507095ab9ba8492ea7cececc"
},
{
"count": 116,
"center": [
40.78974433333328,
-73.95393981372555
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/35882166@N07/5678011906",
"image_url": "static/flickr/6/5221/5678011906_71684c6c19/b.jpg"
}
},
"label": 125,
"convex_hull": [
[
40.785855,
-73.955239
],
[
40.786838,
-73.952198
],
[
40.787352,
-73.95171
],
[
40.788007,
-73.951252
],
[
40.791069,
-73.951453
],
[
40.791788,
-73.95304
],
[
40.792157,
-73.956339
],
[
40.790938,
-73.956481
],
[
40.788599,
-73.955962
]
],
"_id": "507095ab9ba8492ea7ceced0"
},
{
"count": 33,
"center": [
40.788731257142864,
-73.95919265714285
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/53125271@N04/5868523496",
"image_url": "static/flickr/6/5269/5868523496_3cd33769e3/b.jpg"
}
},
"label": 195,
"convex_hull": [
[
40.786166,
-73.9575
],
[
40.7865,
-73.956667
],
[
40.787353,
-73.956239
],
[
40.790155,
-73.957053
],
[
40.790557,
-73.957809
],
[
40.791199,
-73.959274
],
[
40.791613,
-73.960647
],
[
40.789997,
-73.961226
],
[
40.78864,
-73.960075
]
],
"_id": "507095ab9ba8492ea7cecf16"
},
{
"count": 666,
"center": [
40.78302957165103,
-73.95918948286618
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/41138825@N00/5852441561",
"image_url": "static/flickr/4/3193/5852441561_94b35e26eb/b.jpg"
}
},
"label": 46,
"convex_hull": [
[
40.778666,
-73.958834
],
[
40.779107,
-73.958194
],
[
40.780333,
-73.957167
],
[
40.781573,
-73.956257
],
[
40.78379,
-73.955711
],
[
40.785622,
-73.955837
],
[
40.785395,
-73.958544
],
[
40.785289,
-73.958743
],
[
40.78379,
-73.96099
],
[
40.78189,
-73.961817
],
[
40.781666,
-73.961667
],
[
40.780541,
-73.960647
]
],
"_id": "507095ab9ba8492ea7cece81"
},
{
"count": 44,
"center": [
40.8176985,
-73.9650935
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/53727267@N00/5806444430",
"image_url": "static/flickr/4/3472/5806444430_cb993f8d7e/b.jpg"
}
},
"label": 326,
"convex_hull": [
[
40.815772,
-73.962436
],
[
40.816326,
-73.961516
],
[
40.817925,
-73.960352
],
[
40.818608,
-73.960203
],
[
40.819722,
-73.960278
],
[
40.82,
-73.965556
],
[
40.817667,
-73.966167
],
[
40.816776,
-73.965371
],
[
40.815833,
-73.962667
]
],
"_id": "507095ab9ba8492ea7cecf99"
},
{
"count": 8,
"center": [
40.81808016666667,
-73.97704916666666
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/6077964617",
"image_url": "static/flickr/7/6185/6077964617_08b6be2e4d/b.jpg"
}
},
"label": 306,
"convex_hull": [
[
40.818737,
-73.972535
],
[
40.820833,
-73.979334
],
[
40.8205,
-73.979167
],
[
40.818985,
-73.976365
]
],
"_id": "507095ab9ba8492ea7cecf85"
},
{
"count": 43,
"center": [
40.8162973,
-73.98028640000001
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/6031107350",
"image_url": "static/flickr/7/6190/6031107350_6a5a073a82/b.jpg"
}
},
"label": 188,
"convex_hull": [
[
40.811795,
-73.977191
],
[
40.815952,
-73.978672
],
[
40.816333,
-73.979334
],
[
40.816818,
-73.980347
],
[
40.816604,
-73.981117
],
[
40.814004,
-73.980216
],
[
40.812347,
-73.979101
],
[
40.812327,
-73.979068
]
],
"_id": "507095ab9ba8492ea7cecf0f"
},
{
"count": 254,
"center": [
40.811740022222246,
-73.9627429422222
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/34842854@N07/5676859862",
"image_url": "static/flickr/6/5221/5676859862_828bf7a557/b.jpg"
}
},
"label": 78,
"convex_hull": [
[
40.808872,
-73.965877
],
[
40.808872,
-73.965196
],
[
40.808949,
-73.961953
],
[
40.809,
-73.961167
],
[
40.8093,
-73.959285
],
[
40.811333,
-73.959167
],
[
40.815043,
-73.961369
],
[
40.815422,
-73.961959
],
[
40.813878,
-73.965346
],
[
40.812666,
-73.966167
],
[
40.809833,
-73.968
]
],
"_id": "507095ab9ba8492ea7cecea1"
},
{
"count": 1171,
"center": [
40.80603680634579,
-73.96238405251694
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/47222519@N07/5797936413",
"image_url": "static/flickr/4/3405/5797936413_7420ed34bd/b.jpg"
}
},
"label": 43,
"convex_hull": [
[
40.801449,
-73.958437
],
[
40.801833,
-73.9575
],
[
40.802136,
-73.957051
],
[
40.802269,
-73.956854
],
[
40.803227,
-73.956261
],
[
40.803607,
-73.956285
],
[
40.808575,
-73.957371
],
[
40.809032,
-73.958419
],
[
40.808888,
-73.962128
],
[
40.808685,
-73.965405
],
[
40.808567,
-73.965722
],
[
40.808441,
-73.966001
],
[
40.806563,
-73.966384
],
[
40.804868,
-73.966189
],
[
40.804419,
-73.966055
],
[
40.802718,
-73.964115
],
[
40.801879,
-73.961613
],
[
40.801638,
-73.96022
]
],
"_id": "507095ab9ba8492ea7cece7e"
},
{
"count": 192,
"center": [
40.804273355191164,
-73.97026831693991
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/65634159@N00/5722644464",
"image_url": "static/flickr/4/3608/5722644464_cb2d81f401/b.jpg"
}
},
"label": 90,
"convex_hull": [
[
40.80179,
-73.969917
],
[
40.80257,
-73.968608
],
[
40.80428,
-73.966563
],
[
40.80871,
-73.96731
],
[
40.808202,
-73.969182
],
[
40.803333,
-73.974833
],
[
40.802499,
-73.9725
]
],
"_id": "507095ab9ba8492ea7cecead"
},
{
"count": 6,
"center": [
40.81325783333333,
-73.98374849999999
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/6160088686",
"image_url": "static/flickr/7/6184/6160088686_bf74a83f1b/b.jpg"
}
},
"label": 310,
"convex_hull": [
[
40.812834,
-73.984079
],
[
40.813216,
-73.983414
],
[
40.813293,
-73.983392
],
[
40.813366,
-73.983392
],
[
40.813533,
-73.984779
]
],
"_id": "507095ab9ba8492ea7cecf89"
},
{
"count": 6,
"center": [
40.805350250000004,
-73.98548925
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/30556283@N04/5784087206",
"image_url": "static/flickr/6/5064/5784087206_1461b6594c/b.jpg"
}
},
"label": 324,
"convex_hull": [
[
40.801547,
-73.986456
],
[
40.805424,
-73.981171
],
[
40.806631,
-73.987233
]
],
"_id": "507095ab9ba8492ea7cecf97"
},
{
"count": 8,
"center": [
40.808028,
-73.99059487500001
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/6160242922",
"image_url": "static/flickr/7/6070/6160242922_c2da0f1a59/b.jpg"
}
},
"label": 290,
"convex_hull": [
[
40.806048,
-73.991305
],
[
40.806864,
-73.990114
],
[
40.807751,
-73.990088
],
[
40.809773,
-73.990076
],
[
40.809192,
-73.990581
],
[
40.808937,
-73.990752
],
[
40.806296,
-73.991423
]
],
"_id": "507095ab9ba8492ea7cecf75"
},
{
"count": 5,
"center": [
40.8090564,
-74.0014702
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/10258295@N00/5731687519",
"image_url": "static/flickr/6/5223/5731687519_4b7a67758b/b.jpg"
}
},
"label": 313,
"convex_hull": [
[
40.807416,
-74.002681
],
[
40.80944,
-74.001106
],
[
40.809468,
-74.001116
],
[
40.809485,
-74.001224
]
],
"_id": "507095ab9ba8492ea7cecf8c"
},
{
"count": 20,
"center": [
40.803338000000004,
-73.9940177
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/5858375680",
"image_url": "static/flickr/6/5317/5858375680_d0c39d9c1c/b.jpg"
}
},
"label": 226,
"convex_hull": [
[
40.800999,
-73.994334
],
[
40.803869,
-73.993048
],
[
40.804279,
-73.992962
],
[
40.804202,
-73.993188
],
[
40.803674,
-73.994507
],
[
40.802988,
-73.994963
]
],
"_id": "507095ab9ba8492ea7cecf35"
},
{
"count": 1,
"center": [
40.805047,
-74.000033
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/23557369@N02/6159950866",
"image_url": "static/flickr/7/6081/6159950866_9047566409/b.jpg"
}
},
"label": 373,
"convex_hull": [
[
40.805047,
-74.000033
]
],
"_id": "507095ab9ba8492ea7cecfc8"
},
{
"count": 8,
"center": [
40.783556499999996,
-74.00077850000001
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/35034346981@N01/5936709973",
"image_url": "static/flickr/7/6002/5936709973_f2fb3eb037/b.jpg"
}
},
"label": 291,
"convex_hull": [
[
40.782333,
-73.998667
],
[
40.783666,
-73.999334
],
[
40.785236,
-74.001517
],
[
40.783833,
-74.003167
]
],
"_id": "507095ab9ba8492ea7cecf76"
},
{
"count": 8,
"center": [
40.79191516666666,
-73.996994
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/56643522@N00/5801515491",
"image_url": "static/flickr/6/5028/5801515491_def0dda7b8/b.jpg"
}
},
"label": 305,
"convex_hull": [
[
40.790277,
-73.9975
],
[
40.79366,
-73.995763
],
[
40.795413,
-73.996759
],
[
40.794333,
-74.0
]
],
"_id": "507095ab9ba8492ea7cecf84"
},
{
"count": 96,
"center": [
40.78200046296297,
-73.98625439814816
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/47222519@N07/5724698130",
"image_url": "static/flickr/6/5061/5724698130_a768f05ecb/b.jpg"
}
},
"label": 122,
"convex_hull": [
[
40.778333,
-73.985667
],
[
40.780666,
-73.983834
],
[
40.781855,
-73.983353
],
[
40.782634,
-73.983039
],
[
40.7835,
-73.9843
],
[
40.783666,
-73.984666
],
[
40.784166,
-73.986334
],
[
40.783502,
-73.988634
],
[
40.781654,
-73.98815
],
[
40.781029,
-73.98791
],
[
40.7785,
-73.9859
]
],
"_id": "507095ab9ba8492ea7cececd"
},
{
"count": 1099,
"center": [
40.786059644665585,
-73.98459537341724
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/24128368@N00/5696686199",
"image_url": "static/flickr/6/5061/5696686199_18d0ab464a/b.jpg"
}
},
"label": 37,
"convex_hull": [
[
40.78359,
-73.984346
],
[
40.783833,
-73.981334
],
[
40.784833,
-73.980833
],
[
40.787201,
-73.981997
],
[
40.788333,
-73.983334
],
[
40.787,
-73.9872
],
[
40.785667,
-73.988091
]
],
"_id": "507095ab9ba8492ea7cece78"
},
{
"count": 8,
"center": [
40.797352,
-73.99277928571428
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/30556283@N04/5784135504",
"image_url": "static/flickr/3/2157/5784135504_ef18dbd676/b.jpg"
}
},
"label": 298,
"convex_hull": [
[
40.795682,
-73.99146
],
[
40.798563,
-73.988828
],
[
40.798732,
-73.994958
]
],
"_id": "507095ab9ba8492ea7cecf7d"
},
{
"count": 116,
"center": [
40.800517978260835,
-73.96724013043476
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/55704151@N00/5681627799",
"image_url": "static/flickr/6/5230/5681627799_e4f9c2d553/b.jpg"
}
},
"label": 134,
"convex_hull": [
[
40.795719,
-73.966419
],
[
40.797932,
-73.963834
],
[
40.799166,
-73.962834
],
[
40.80043,
-73.961945
],
[
40.802606,
-73.964107
],
[
40.803455,
-73.96526
],
[
40.803833,
-73.965818
],
[
40.804141,
-73.966578
],
[
40.803,
-73.967667
],
[
40.80067,
-73.969245
],
[
40.797952,
-73.969595
],
[
40.797613,
-73.969242
],
[
40.796024,
-73.96731
]
],
"_id": "507095ab9ba8492ea7ceced9"
},
{
"count": 89,
"center": [
40.795458434782596,
-73.96008791304347
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/49503029779@N01/5700465997",
"image_url": "static/flickr/6/5188/5700465997_f6132a1435/b.jpg"
}
},
"label": 171,
"convex_hull": [
[
40.792825,
-73.958564
],
[
40.793018,
-73.95833
],
[
40.796405,
-73.956173
],
[
40.799,
-73.955667
],
[
40.800105,
-73.956328
],
[
40.801333,
-73.958333
],
[
40.799163,
-73.96247
],
[
40.797752,
-73.963409
],
[
40.793819,
-73.96377
],
[
40.793205,
-73.962773
]
],
"_id": "507095ab9ba8492ea7cecefe"
},
{
"count": 88,
"center": [
40.79881284000001,
-73.97348916000001
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/23919060@N06/5740870425",
"image_url": "static/flickr/6/5027/5740870425_a2707abe49/b.jpg"
}
},
"label": 143,
"convex_hull": [
[
40.795666,
-73.975334
],
[
40.797832,
-73.970833
],
[
40.798691,
-73.970387
],
[
40.799167,
-73.970667
],
[
40.802192,
-73.973007
],
[
40.802,
-73.9735
],
[
40.800278,
-73.975281
],
[
40.799095,
-73.976126
],
[
40.797258,
-73.977057
]
],
"_id": "507095ab9ba8492ea7cecee2"
},
{
"count": 343,
"center": [
40.79479952215186,
-73.97164982278484
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/34842854@N07/5676359571",
"image_url": "static/flickr/6/5061/5676359571_6019cb6fac/b.jpg"
}
},
"label": 66,
"convex_hull": [
[
40.788372,
-73.972969
],
[
40.789,
-73.972001
],
[
40.794655,
-73.967425
],
[
40.796158,
-73.967599
],
[
40.797567,
-73.969928
],
[
40.797666,
-73.970167
],
[
40.797484,
-73.970846
],
[
40.797052,
-73.971892
],
[
40.796625,
-73.972545
],
[
40.795179,
-73.974466
],
[
40.794616,
-73.974605
],
[
40.793341,
-73.974784
],
[
40.790988,
-73.974606
],
[
40.788441,
-73.973162
]
],
"_id": "507095ab9ba8492ea7cece95"
},
{
"count": 48,
"center": [
40.787595759259254,
-73.96249577777775
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/77814871@N00/5738121133",
"image_url": "static/flickr/3/2673/5738121133_1ee3451a8a/b.jpg"
}
},
"label": 162,
"convex_hull": [
[
40.785166,
-73.961833
],
[
40.786333,
-73.961
],
[
40.788953,
-73.961226
],
[
40.790841,
-73.962128
],
[
40.790687,
-73.96236
],
[
40.789305,
-73.963898
],
[
40.788666,
-73.964334
],
[
40.787085,
-73.964649
],
[
40.78665,
-73.964252
],
[
40.785333,
-73.962333
]
],
"_id": "507095ab9ba8492ea7cecef5"
},
{
"count": 110,
"center": [
40.79053053608249,
-73.96615277319583
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/65933652@N00/5689962815",
"image_url": "static/flickr/6/5230/5689962815_f736853917/b.jpg"
}
},
"label": 132,
"convex_hull": [
[
40.787333,
-73.966334
],
[
40.787397,
-73.966097
],
[
40.787666,
-73.965667
],
[
40.788868,
-73.964697
],
[
40.791269,
-73.963148
],
[
40.792511,
-73.963562
],
[
40.794166,
-73.967
],
[
40.79409,
-73.96717
],
[
40.791902,
-73.969173
],
[
40.791167,
-73.969833
],
[
40.7886,
-73.971462
],
[
40.7876,
-73.968812
]
],
"_id": "507095ab9ba8492ea7ceced7"
},
{
"count": 573,
"center": [
40.78391797321411,
-73.96652509374962
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/79047652@N00/5850554320",
"image_url": "static/flickr/6/5221/5850554320_eca1af7486/b.jpg"
}
},
"label": 57,
"convex_hull": [
[
40.779278,
-73.968286
],
[
40.780553,
-73.966489
],
[
40.781934,
-73.964585
],
[
40.783293,
-73.963436
],
[
40.783372,
-73.963444
],
[
40.783417,
-73.963458
],
[
40.785297,
-73.964536
],
[
40.78691,
-73.965797
],
[
40.787246,
-73.967946
],
[
40.787333,
-73.970667
],
[
40.787166,
-73.971334
],
[
40.787,
-73.971833
],
[
40.786827,
-73.971898
],
[
40.783,
-73.970167
],
[
40.779464,
-73.968495
]
],
"_id": "507095ab9ba8492ea7cece8c"
},
{
"count": 58,
"center": [
40.806001035087725,
-73.93845029824556
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/83223301@N00/5912810236",
"image_url": "static/flickr/6/5159/5912810236_cfd8a0df8b/b.jpg"
}
},
"label": 156,
"convex_hull": [
[
40.804811,
-73.938548
],
[
40.804833,
-73.936501
],
[
40.806309,
-73.936089
],
[
40.808166,
-73.937
],
[
40.809097,
-73.940292
],
[
40.806466,
-73.942034
],
[
40.805,
-73.939333
],
[
40.804833,
-73.938833
]
],
"_id": "507095ab9ba8492ea7ceceef"
},
{
"count": 40,
"center": [
40.84691846341463,
-73.92794963414632
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/8742248@N07/5896770541",
"image_url": "static/flickr/6/5061/5896770541_82638e4dfb/b.jpg"
}
},
"label": 185,
"convex_hull": [
[
40.844283,
-73.925248
],
[
40.844802,
-73.924781
],
[
40.845879,
-73.924781
],
[
40.847668,
-73.926003
],
[
40.84828,
-73.929706
],
[
40.848346,
-73.931454
],
[
40.846954,
-73.931706
],
[
40.845372,
-73.929651
]
],
"_id": "507095ab9ba8492ea7cecf0c"
},
{
"count": 9,
"center": [
40.84286955555555,
-73.92882683333332
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/8742248@N07/5897367112",
"image_url": "static/flickr/6/5305/5897367112_ef2a29d1bb/b.jpg"
}
},
"label": 234,
"convex_hull": [
[
40.841,
-73.929665
],
[
40.841697,
-73.927764
],
[
40.842894,
-73.926759
],
[
40.844333,
-73.927501
],
[
40.844958,
-73.928997
],
[
40.844755,
-73.929233
],
[
40.843888,
-73.929723
]
],
"_id": "507095ab9ba8492ea7cecf3d"
},
{
"count": 12,
"center": [
40.84242916666666,
-73.93190100000001
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/83964620@N00/5825379837",
"image_url": "static/flickr/3/2469/5825379837_d795a41c02/b.jpg"
}
},
"label": 266,
"convex_hull": [
[
40.839001,
-73.930832
],
[
40.841707,
-73.93037
],
[
40.846484,
-73.932049
],
[
40.844568,
-73.933181
],
[
40.841922,
-73.934388
]
],
"_id": "507095ab9ba8492ea7cecf5d"
},
{
"count": 13,
"center": [
40.83914808333333,
-73.93476841666666
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/63147955@N02/5742547991",
"image_url": "static/flickr/3/2607/5742547991_f44f701cb6/b.jpg"
}
},
"label": 265,
"convex_hull": [
[
40.837499,
-73.935928
],
[
40.837746,
-73.933643
],
[
40.838641,
-73.933423
],
[
40.843034,
-73.936271
],
[
40.841399,
-73.937221
],
[
40.83829,
-73.937006
]
],
"_id": "507095ab9ba8492ea7cecf5c"
},
{
"count": 7,
"center": [
40.83616128571429,
-73.92301599999999
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/8742248@N07/5897523644",
"image_url": "static/flickr/6/5034/5897523644_5556cea0fc/b.jpg"
}
},
"label": 297,
"convex_hull": [
[
40.833727,
-73.92542
],
[
40.83543,
-73.923531
],
[
40.83731,
-73.922752
],
[
40.837397,
-73.923273
]
],
"_id": "507095ab9ba8492ea7cecf7c"
},
{
"count": 32,
"center": [
40.83148090909091,
-73.92201086363637
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/48791506@N07/5742268618",
"image_url": "static/flickr/6/5308/5742268618_6b98212dc6/b.jpg"
}
},
"label": 222,
"convex_hull": [
[
40.826644,
-73.922626
],
[
40.828055,
-73.920834
],
[
40.832206,
-73.919438
],
[
40.833166,
-73.920667
],
[
40.833833,
-73.921834
],
[
40.831333,
-73.925333
],
[
40.827511,
-73.923256
],
[
40.826838,
-73.922828
]
],
"_id": "507095ab9ba8492ea7cecf31"
},
{
"count": 10,
"center": [
40.83344999999999,
-73.93287444444444
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/71969256@N00/5795368253",
"image_url": "static/flickr/6/5062/5795368253_3a2bbd5383/b.jpg"
}
},
"label": 281,
"convex_hull": [
[
40.829166,
-73.9325
],
[
40.830988,
-73.931937
],
[
40.835667,
-73.931831
],
[
40.836263,
-73.932242
],
[
40.833057,
-73.934166
]
],
"_id": "507095ab9ba8492ea7cecf6c"
},
{
"count": 1607,
"center": [
40.82835728332252,
-73.92736894977445
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/49761510@N02/5834861489",
"image_url": "static/flickr/4/3333/5834861489_aa0b39e8b3/b.jpg"
}
},
"label": 26,
"convex_hull": [
[
40.824855,
-73.928384
],
[
40.825341,
-73.923448
],
[
40.8255,
-73.922882
],
[
40.826544,
-73.923023
],
[
40.827369,
-73.923237
],
[
40.830833,
-73.925334
],
[
40.831422,
-73.926371
],
[
40.8315,
-73.927
],
[
40.830338,
-73.930373
],
[
40.830213,
-73.930492
],
[
40.830008,
-73.930495
],
[
40.826769,
-73.929573
],
[
40.826568,
-73.929469
]
],
"_id": "507095ab9ba8492ea7cece6d"
},
{
"count": 22,
"center": [
40.825838312500004,
-73.9356973125
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/8594357@N07/5733660788",
"image_url": "static/flickr/6/5269/5733660788_5593a8d04e/b.jpg"
}
},
"label": 243,
"convex_hull": [
[
40.823812,
-73.936443
],
[
40.825371,
-73.931733
],
[
40.825387,
-73.931733
],
[
40.827316,
-73.932058
],
[
40.829167,
-73.937167
],
[
40.8285,
-73.938167
],
[
40.825272,
-73.937384
]
],
"_id": "507095ab9ba8492ea7cecf46"
},
{
"count": 77,
"center": [
40.84173994117644,
-73.94129785294122
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/37345958@N00/5688960826",
"image_url": "static/flickr/6/5310/5688960826_447918d5d7/b.jpg"
}
},
"label": 148,
"convex_hull": [
[
40.837666,
-73.942
],
[
40.837986,
-73.939045
],
[
40.843833,
-73.938333
],
[
40.845905,
-73.94135
],
[
40.843412,
-73.943058
],
[
40.842975,
-73.943338
],
[
40.838,
-73.942167
]
],
"_id": "507095ab9ba8492ea7cecee7"
},
{
"count": 32,
"center": [
40.841306176470596,
-73.94594464705882
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/30001619@N00/5804632564",
"image_url": "static/flickr/3/2467/5804632564_3c2a9c3031/b.jpg"
}
},
"label": 239,
"convex_hull": [
[
40.837577,
-73.944162
],
[
40.844304,
-73.944994
],
[
40.844166,
-73.946
],
[
40.844002,
-73.946098
],
[
40.842513,
-73.94692
],
[
40.842322,
-73.94702
],
[
40.840409,
-73.947376
],
[
40.838014,
-73.944886
]
],
"_id": "507095ab9ba8492ea7cecf42"
},
{
"count": 218,
"center": [
40.832660039215604,
-73.93946479901946
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/54109991@N08/5989778136",
"image_url": "static/flickr/7/6011/5989778136_373aea8f2a/b.jpg"
}
},
"label": 85,
"convex_hull": [
[
40.828821,
-73.940016
],
[
40.829799,
-73.938705
],
[
40.831199,
-73.93729
],
[
40.834548,
-73.936518
],
[
40.836594,
-73.939329
],
[
40.835928,
-73.941019
],
[
40.832933,
-73.942607
],
[
40.831796,
-73.942762
],
[
40.830104,
-73.942016
]
],
"_id": "507095ab9ba8492ea7cecea8"
},
{
"count": 282,
"center": [
40.83366799156115,
-73.94583331223626
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/28846807@N05/5850323667",
"image_url": "static/flickr/4/3364/5850323667_f6bdcac603/b.jpg"
}
},
"label": 77,
"convex_hull": [
[
40.829633,
-73.944784
],
[
40.830233,
-73.944291
],
[
40.830826,
-73.943932
],
[
40.83406,
-73.942817
],
[
40.836243,
-73.943215
],
[
40.837048,
-73.943679
],
[
40.837167,
-73.943833
],
[
40.837195,
-73.94913
],
[
40.837112,
-73.949258
],
[
40.833602,
-73.950476
],
[
40.83083,
-73.947514
]
],
"_id": "507095ab9ba8492ea7cecea0"
},
{
"count": 64,
"center": [
40.82558588235293,
-73.94330766666668
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/36507420@N00/5728681882",
"image_url": "static/flickr/6/5067/5728681882_416df983f7/b.jpg"
}
},
"label": 164,
"convex_hull": [
[
40.821729,
-73.944447
],
[
40.822765,
-73.941755
],
[
40.825167,
-73.940833
],
[
40.827667,
-73.940333
],
[
40.828712,
-73.941345
],
[
40.828902,
-73.943025
],
[
40.828521,
-73.945569
],
[
40.825122,
-73.946498
],
[
40.824616,
-73.946576
],
[
40.821841,
-73.944589
]
],
"_id": "507095ab9ba8492ea7cecef7"
},
{
"count": 71,
"center": [
40.82794599999998,
-73.94975949152541
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/33492956@N03/5675729075",
"image_url": "static/flickr/6/5270/5675729075_799ac693c7/b.jpg"
}
},
"label": 152,
"convex_hull": [
[
40.824944,
-73.948486
],
[
40.825038,
-73.947738
],
[
40.828037,
-73.946189
],
[
40.828192,
-73.946201
],
[
40.829771,
-73.946635
],
[
40.830205,
-73.947494
],
[
40.832072,
-73.95157
],
[
40.832432,
-73.953299
],
[
40.829841,
-73.952889
],
[
40.825167,
-73.950333
]
],
"_id": "507095ab9ba8492ea7ceceeb"
},
{
"count": 27,
"center": [
40.826331375,
-73.95506016666667
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/5826124043",
"image_url": "static/flickr/6/5270/5826124043_59f20467cb/b.jpg"
}
},
"label": 218,
"convex_hull": [
[
40.823747,
-73.958158
],
[
40.824452,
-73.951948
],
[
40.826881,
-73.952491
],
[
40.827641,
-73.953538
],
[
40.828102,
-73.954248
],
[
40.826909,
-73.956967
],
[
40.826186,
-73.957707
],
[
40.825517,
-73.958212
]
],
"_id": "507095ab9ba8492ea7cecf2d"
},
{
"count": 1,
"center": [
40.864833,
-73.966
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/13392881@N07/6182860567",
"image_url": "static/flickr/7/6162/6182860567_741c566e3c/b.jpg"
}
},
"label": 366,
"convex_hull": [
[
40.864833,
-73.966
]
],
"_id": "507095ab9ba8492ea7cecfc1"
},
{
"count": 2,
"center": [
40.860879,
-73.969337
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/14466233@N00/5755055833",
"image_url": "static/flickr/4/3564/5755055833_897d0f3d85/b.jpg"
}
},
"label": 350,
"convex_hull": [
[
40.860758,
-73.970174
],
[
40.861,
-73.9685
]
],
"_id": "507095ab9ba8492ea7cecfb1"
},
{
"count": 56,
"center": [
40.85532010714284,
-73.96524580357143
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/38618432@N08/6136292940",
"image_url": "static/flickr/7/6084/6136292940_6e54bc0baf/b.jpg"
}
},
"label": 159,
"convex_hull": [
[
40.853333,
-73.964667
],
[
40.853387,
-73.963781
],
[
40.85367,
-73.963297
],
[
40.855662,
-73.965239
],
[
40.855666,
-73.966001
],
[
40.854968,
-73.966355
],
[
40.854,
-73.966167
]
],
"_id": "507095ab9ba8492ea7cecef2"
},
{
"count": 16,
"center": [
40.85064271428571,
-73.96965457142856
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/10258295@N00/5700156696",
"image_url": "static/flickr/3/2324/5700156696_2f651b22ff/b.jpg"
}
},
"label": 255,
"convex_hull": [
[
40.84706,
-73.970947
],
[
40.850669,
-73.966995
],
[
40.854364,
-73.969981
],
[
40.850351,
-73.971031
]
],
"_id": "507095ab9ba8492ea7cecf52"
},
{
"count": 11,
"center": [
40.856314899999994,
-73.9744386
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/71727278@N00/6068575741",
"image_url": "static/flickr/7/6089/6068575741_56d4238f6f/b.jpg"
}
},
"label": 279,
"convex_hull": [
[
40.852743,
-73.973344
],
[
40.856668,
-73.971891
],
[
40.856833,
-73.973167
],
[
40.856206,
-73.974916
]
],
"_id": "507095ab9ba8492ea7cecf6a"
},
{
"count": 5,
"center": [
40.863210499999994,
-73.9932435
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/17678720@N04/6134104270",
"image_url": "static/flickr/7/6070/6134104270_280e80f8f9/b.jpg"
}
},
"label": 323,
"convex_hull": [
[
40.860833,
-73.9935
],
[
40.864788,
-73.990862
],
[
40.867,
-73.994667
],
[
40.862777,
-73.994723
]
],
"_id": "507095ab9ba8492ea7cecf96"
},
{
"count": 1,
"center": [
40.855792,
-73.994071
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/66338859@N00/5766532767",
"image_url": "static/flickr/3/2233/5766532767_0b6359072e/b.jpg"
}
},
"label": 367,
"convex_hull": [
[
40.855792,
-73.994071
]
],
"_id": "507095ab9ba8492ea7cecfc2"
},
{
"count": 8,
"center": [
40.84787433333333,
-73.99800800000001
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/20674378@N00/6038899657",
"image_url": "static/flickr/7/6084/6038899657_666624e9bf/b.jpg"
}
},
"label": 308,
"convex_hull": [
[
40.841944,
-73.989723
],
[
40.849,
-73.997333
],
[
40.844469,
-74.000165
]
],
"_id": "507095ab9ba8492ea7cecf87"
},
{
"count": 3,
"center": [
40.845915,
-73.96442400000001
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/70127529@N00/5797846457",
"image_url": "static/flickr/3/2258/5797846457_f3f3854b36/b.jpg"
}
},
"label": 344,
"convex_hull": [
[
40.847384,
-73.965883
],
[
40.85003,
-73.964574
],
[
40.844446,
-73.962965
]
],
"_id": "507095ab9ba8492ea7cecfab"
},
{
"count": 4,
"center": [
40.841378,
-73.975195
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/65554873@N08/6124683334",
"image_url": "static/flickr/7/6069/6124683334_baa415bc3e/b.jpg"
}
},
"label": 363,
"convex_hull": [
[
40.835518,
-73.982555
],
[
40.841378,
-73.975195
]
],
"_id": "507095ab9ba8492ea7cecfbe"
},
{
"count": 13,
"center": [
40.8257785,
-73.97309775
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/56071438@N00/5800987704",
"image_url": "static/flickr/6/5231/5800987704_29cdf096cb/b.jpg"
}
},
"label": 270,
"convex_hull": [
[
40.824303,
-73.972932
],
[
40.824686,
-73.969584
],
[
40.825667,
-73.970833
],
[
40.82712,
-73.973414
],
[
40.827,
-73.9757
]
],
"_id": "507095ab9ba8492ea7cecf61"
},
{
"count": 4,
"center": [
40.820339,
-73.921424
],
"representative_images": {
"histogram": {
"flickr_page_url": "http://www.flickr.com/photos/11799960@N03/5715831434",
"image_url": "static/flickr/3/2745/5715831434_c7d7547f5f/b.jpg"
}
},
"label": 359,
"convex_hull": [
[
40.820339,
-73.921424
],
[
40.824,
-73.923
],
[
40.824166,
-73.923167
],
[
40.824325,
-73.923784
]
],
"_id": "507095ab9ba8492ea7cecfba"
}
]
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment