-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaption.txt
More file actions
1241 lines (1241 loc) · 260 KB
/
Copy pathcaption.txt
File metadata and controls
1241 lines (1241 loc) · 260 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{u'4fc12273e4b0c9fe05ab7db1': u'the red stairs at 42nd st', u'4ac62c3af964a52009b320e3': u'Trinity Plaza', u'4ae3ee03f964a520a49921e3': u'Prince & Mercer', u'4b9da345f964a520a8b736e3': u'Sherman Square', u'3fd66200f964a520d8f11ee3': u'City Hall Park', u'4c27d59fed0ac9b66a605faa': u'Greenstreets Square (Triangle)', u'4cd4883a122ba143f10a26a1': u'Gateway Plaza', u'4cbba4f0558576b0981b4a0e': u'Village Square', u'4ba6d696f964a520ad7239e3': u'30 Lincoln Plaza', u'4d5d58880f352d43e77205ed': u'747 Third Avenue Plaza', u'4b9e8feff964a52061ef36e3': u'Worth Square', u'4ccccbb3ba0a548147c43f59': u"Ryder's Alley", u'4bcb817cfb84c9b694071f3e': u'Doris C. Freedman Plaza', u'4c2a3af1b34ad13a31f4e7ce': u'Atrium', u'5032bb96e4b0df903002e938': u'D\xeener en Blanc', u'4ac814d4f964a5208ebb20e3': u'The Symphony House', u'3fd66200f964a520e4e41ee3': u'Fountain Of Juice', u'4a4696baf964a52026a91fe3': u'McCarthy Square', u'4f2995f2e4b0c56e6ef126de': u'The Spot', u'4cc4aad642d1b60c6c131f13': u'Columbus Square Courtyard', u'4fe1b288e4b037e5ac80a6f9': u'Solstice in Times Square - Times Square Alliance', u'4c6986b08d22c9283a79b745': u'World Wide Plaza', u'4e0d0a66fa76d62f443b5761': u'Park Avenue Atrium', u'4eae9f70d3e32ee0ded3bb1c': u'Taxi Of Tomorrow Design Expo', u'4f6b4f7ae4b0b949c4db617b': u'Sky East Patio', u'4b9fa54cf964a520573137e3': u'150th St. & Broadway', u'4c093e15a1b32d7f145497f0': u'Plaza', u'3fd66200f964a520d7f11ee3': u'Bryant Park', u'4f579b000cd64a615d6a29f6': u'Pigeon Park', u'4f6ce2f7e4b0861076161f20': u'Javits Center bench', u'4e875e75f7909ba0e9b9df4e': u'Public Walk-Thru', u'4bd5803a4e32d13a7be0c080': u"General Grant National Memorial (Grant's Tomb)", u'4e3834ea18a8470916d2c388': u'Met Life Building Outdoor Sitting Area', u'4c2156ad9085d13a1ab184cc': u'Trump Plaza', u'4e23662b45dd950bb0398418': u'Highgate Courtyard', u'4c35f33c66e40f47cdefcb8b': u'W. 175th St. Greenmarket', u'4a834038f964a52080fa1fe3': u'Verdi Square', u'4bbfae1e461576b0e5fd7832': u'Little Red Square', u'4c2a1fbcfe6e2d7fd6df553c': u'Dag Hammarskjold Common', u'4a6b3073f964a52023ce1fe3': u'Christopher Park', u'4d1c221eaff260fcbb3b2934': u'Bum Town', u'4f995e7a7b0c6426c6ea005a': u'Recyclebank & Honest Tea: The Great Recycle', u'4d6716fa581554815b34e055': u'The Battery Conservancy', u'4f8d94a6e4b0fec58adeecd2': u'325 Fifth Avenue Plaza', u'4fda2813e4b0884c8eae04ea': u'Eventi open air plaza', u'4be5d73bd4f7c9b676032620': u'Linden Terrace', u'4efb4753b8f72ebeabb60b79': u'Duarte Square', u'4fb507ebe4b0f745c7d45f6d': u'Rutherford Place - Stuyvesant Square Historic District', u'4c4720b15438b713095bb67b': u'A. Philip Randolph Square', u'4b37b8b8f964a520044525e3': u'One East River Place', u'4fdf9309e4b0f706c024f44b': u'Smoking Section', u'4c236c4699282d7f9d9b68b0': u'The Arthur Ross Terrace', u'4c06b7be8a81c9b6c0292690': u'34th Street', u'4e1a10a7d1648b8348421f52': u'Ivy Tower Roof Top', u'5039e8bae4b0b7a03bf34a9d': u'5 Avenue', u'4fd4c450e4b0d6a97d99129b': u'Broadway & 42nd', u'3fd66200f964a520daf11ee3': u'South Street Seaport', u'502bb03629a62317c1cee454': u"Don't Forget Ed $1.5 Billion Installation", u'4c6142113986e21eb112964f': u'Third Tree From Left', u'50215989e4b0e9181248a1f9': u'59 Maiden Lane Outdoor Courtyard/Plaza', u'4c8fa5d6daa93704489556b1': u'Marsh & McLennan - Public Plaza', u'4ecbf44b93adb4bd1b8299a1': u'Public Atrium - 575 FIFTH AVE', u'4bbb8075e436ef3b9a695564': u'Arthur W. Strickler Triangle', u'4a6eeddcf964a52015d51fe3': u'Paramount Plaza', u'4de7d100ae60b9d735372737': u'Belmont Public Plaza', u'4cbe1d9cb6c4224b0d5ceb94': u'Taras Shevchenko Place', u'4b77431ef964a520be8c2ee3': u'6 chatham square', u'4d7a9df713d5b60c6641819d': u'Avenue of the Immigrants', u'4fc9815fe4b02595bb036572': u'Chealse', u'5048995de4b0c08f6ce765d5': u'Madison Ave Advertising Walk of Fame', u'505782dbe4b03db47ebf23b2': u'Benches at Hester and Allen', u'4a6b8bf4f964a52018cf1fe3': u'Bethesda Fountain', u'4beb643162c0c9287a2ce2d4': u'Lafayette Square', u'4ffc48ede4b0056e907f71f6': u'Black Rock Plaza', u'4fd35c9fe4b06383cc378159': u'2025 Broadway', u'50269555e4b057b8a39a9fd9': u'pineapplesurprise 2010', u'4ce433d22f842d43711aac1c': u"Macy's Parade Celebrity Rehearsals", u'4ddfd8d645dd95acd4f9c027': u'Broad Street Pedestrian Plaza', u'4a5d0685f964a52011bd1fe3': u'Federal Plaza', u'4d2f551706a060fc57ca750a': u'Bolivar Plaza', u'4f25b891e4b03bdcfe28087d': u'Syosset', u'4c10f03981e976b051e40feb': u'Union Square Steps', u'4b09589df964a520fd1523e3': u'Pulitzer Fountain', u'4bdfd58e0d69b7132c2b66d3': u'Titanic Memorial Park', u'4e77dca11495f00a41fa5992': u'The Buchanan Courtyard', u'504d188ae4b05ebf6e2b52fb': u'KV Courtyard', u'50818fd2e4b09e409b926aa9': u'Korean Way', u'4c50342138b0be9a141a1ffd': u'Broadway Mall 79th Street', u'49e36914f964a5207b621fe3': u'Herald Square', u'438d6b12f964a520322b1fe3': u'W New York - Times Square', u'4aa7cc25f964a520434d20e3': u'388 Greenwich St Courtyard', u'4fd300207bebfa2271e27c61': u'1114 Sixth Avenue', u'49c7955df964a520b0571fe3': u'Greenacre Park', u'4c841a8cd4e237044a337788': u"Central Park - Girls' Gate", u'4fa8097de4b0d607baeff6bb': u'Public Space - Courtyard Behind Barclays', u'49f376a1f964a5209e6a1fe3': u'Duarte Square', u'4f8e449ce4b0dcea3572429e': u'us olympic committee - 100 days to london', u'4cb20e7f1168a093e3243823': u'Bennett Park Manhattan', u'4a9332b3f964a5202e1f20e3': u'Waterside Plaza', u'4fe1ac28e4b0cc64d730b6be': u'Summer Soltice Yoga 6/20', u'4bfea69e4e5d0f4788ec7c1f': u'Public Space', u'4fda4bd4e4b06a851a49e668': u'Behind the Eventi', u'4fa9468ee4b0b9b7485d9125': u'New York Plaza', u'503a43f2e4b022a04b87d65b': u'Red Stairs Times Square', u'4ffb09ebe4b0887e56541fe6': u'Awesome seating area btwn 52nd and 53rd', u'4b88309ff964a52030e631e3': u'The National Debt Clock', u'4fc39b2be4b08acecc3a5bff': u'Chesapeake Roof Terrace', u'49e63b07f964a52026641fe3': u'Winston Churchill Square', u'4ec35be9e5fa690c1eace105': u'Times Square New York', u'42daf100f964a52035261fe3': u'Battery Park', u'4b0d6136f964a5202f4723e3': u'Cooper Square', u'4bc5f252bf29c9b6f4f3f82a': u"1500 B'way Offices", u'4dab414d8154abafc2bf224f': u'The Plaza Hotel Fountain', u'4bb3b8cd715eef3bf5be86bb': u'Gould Plaza', u'4f6635a3e4b0c7552e6fca72': u'The Atrium Courtyard', u'4c573237b7a31b8db0b54fda': u"St. Andrew's Plaza", u'4bc7262c8b7c9c7424d935cf': u'Schwartz Plaza', u'502ef74ce4b0beacbdfa7999': u'David Beckham Statue', u'4a58dc92f964a52011b81fe3': u'Macri Triangle', u'4ae5c9b3f964a52007a221e3': u'One Bryant Park', u'4ced1fd813aea143d326659f': u'Tavern on the Green', u'4c7e7832d598a09340d8c562': u'1221 Plaza', u'4f43b89be4b06bcb6d007140': u'28th and Park Ave South', u'4fd3b6d8e4b02bec72c4c73e': u'101 Barclay Street', u'4b098dc3f964a5204a1923e3': u'Grace Plaza', u'4abb7c09f964a520d18320e3': u'Foley Square', u'4fd4c570e4b0b569195d478d': u'42nd and Broadway', u'4cec10030f196dcb277d5bae': u'Under The Manhattan Bridge, Manhattan', u'4e4d1a0d18a822288dda7e3c': u'Samuel Dickstein Plaza', u'4db71f490437af5fb4c597f0': u'Benches at Allen and Stanton', u'4e2c6c7545dd3272c81d30f5': u'East 86th', u'4a3d4791f964a5200ea21fe3': u'Gracie Mews Diner', u'4a0b04dcf964a520ba741fe3': u'World Financial Center (WFC) Plaza', u'5064beaee4b08d326ec239a6': u'Astor Place Associates Public Plaza', u'4ad507bff964a520660121e3': u'Lincoln Center Plaza (Josie Robertson Plaza)', u'4c7bfd71df08a1cd3320e25d': u'NYU Native Woodland Garden', u'4ba3cc6cf964a520a06038e3': u'Urban Plaza Park', u'4c4f268bfb742d7ffe1e792f': u'Brevard Park', u'4e0b7e13b61cedfe9dc4a4f3': u'Brevard Public Plaza', u'4dee3be7d4c0194252f8ed66': u'Men In Black Movie Set', u'4efb4aa7f7907312555ff086': u'Bantum PAIR (Peter Woytuk Statues)', u'4b492c2df964a520d06826e3': u'Frederick Douglass Circle', u'4c17d680838020a1bc4ae361': u'The Atrium', u'4c563a43cc96c9b6f66f762e': u'Fort George', u'4c17a8e0f1c976b06e84a272': u'Fountain Pool', u'4ad3e0cff964a520b7e620e3': u'Shubert Alley', u'4c9fafe154c8a1cdd653994b': u'44th St. & Broadway', u'4f6baafbe4b0ca47af403d88': u'Limelight Courtyard', u'4c7d05d09efda143003e87e2': u'Claridge House Plaza', u'4b2d5a59f964a520e9d424e3': u'Deutsche Bank', u'503f9617e4b07b1707e7c150': u'Hudson Square Food Truck Lot', u'4e1a5332fa76194645a3a27b': u'20th Street Loop Stuyvesent Town', u'4d7d4f2cf260a0934c454aba': u'Plaza de Wadsworth- 235D1', u'4da9160a0cb6a89c624e0fb0': u"Foursquare Day '11!", u'4ba6bffdf964a5203d6d39e3': u'Soho Abbey Courtyard', u'4d2b474bd86aa0904ca522c0': u'Central Park - Untermeyer Fountain', u'4d2b3e81d86aa090829c22c0': u'Central Park - Wisteria Pergola', u'4bf098edf45ec928e80d943c': u'East Midtown Plaza', u'4a3bbd58f964a520b7a01fe3': u'Elevated Acre', u'4c770c6d5cd6b1f7da053e94': u'Plaza West Roofdeck', u'4b70341bf964a520770b2de3': u'Rite Aid', u'4c0674285753c9281ce63af1': u'55th & 6th Ave Fountain', u'4e4ec507e4cdc76dc9a78807': u'Savoy Public Plaza', u'4bbe24468ca376b0f45ec77a': u'Richard Tucker Square Park / Lincoln Square', u'4bbe47faa55c76b0a2bf6ee0': u'Allen Mall Six', u'4aad5ee2f964a520f25f20e3': u'Alamo "The Cube"', u'4d2b304ad86aa090908a22c0': u'Central Park - Vanderbilt Gate', u'4ddd4a17fa766a6d79503601': u'Public Plaza', u'4eda867c30f83fb79cd27808': u'Bronze Elephant Statue', u'4bd32a1441b9ef3b816bffe5': u'Harriet Tubman Memorial Statue', u'502fbff7e4b0a20c890c43a5': u'Whole Foods City Picnic', u'4b9c4d34f964a520765d36e3': u'Finn Square', u'4a3df25ff964a520c2a21fe3': u'Astor Place', u'4b996827f964a520377935e3': u'Central Park - The Arcade', u'4cf7df361801a1437c47f2d4': u'Micro Park', u'4b4bb51df964a520c5a426e3': u'US Post Office', u'4aaf807ff964a520386420e3': u'Triboro Plaza', u'4c1827c7ed98ef3b1387dd02': u'Paul Milstein Pool and Terrace', u'4c841788dc018cfa424fde6c': u"Farmers' Gate", u'4be08c2eb238d13a06a470a4': u'The Village Green', u'5004b051e4b073e5a3310b10': u'Flatiron Plaza', u'4a6b8b87f964a52013cf1fe3': u'Grand Army Plaza', u'4ea8328ef5b917317013445c': u'Cliff Street Plaza', u'4b137ae0f964a5204e9723e3': u'wall street cafe', u'4ca7dd6bb7106dcb4eb66ca5': u'Broadway Median Mall @ 74th St', u'4ab16cd2f964a5206e6920e3': u'Washington Square Park Petanque Court', u'4f2e6f67e4b067066e2697df': u'Canyon of Heroes', u'4b377284f964a5201b4125e3': u'Central Park - Pat Hoffman Friedman Playground', u'4dd01912d22deadedd7b4c51': u'Van Cortland Tail (GreenStreets)', u'4c129f40a1010f478c324918': u'Silver Towers Park', u'4dfa72a0d22d964c6b9d10da': u'Dale F. Frey Plaza', u'4c61921d79d1e21e4f06d415': u'R/GA Courtyard', u'4f8dc805e4b005ba11250447': u'Gracie Mews Plaza', u'4fad5f18e4b03d702fb1d41e': u'One Penn Outdoor Plaza', u'4f46bb11e4b0a69aba379dfe': u'Downtown Swaggin It', u'4c9cf0537c096dcb8151c6d1': u'Union Square Circle', u'4dc31f2cc65b89d3ca33adab': u'Beat The Streets Time Square Event', u'4be6f261910020a141ccd414': u'Minetta Triangle', u'4c47220e5438b713d85fb67b': u'Matthew S. Turner Triangle', u'4eb595c9f5b94bd85be33796': u'Timesculpture at Lincoln Center', u'4b621764f964a520d1342ae3': u'Sony Store', u'4c794b143badb1f742824e54': u'Washington Heights Open Air Market', u'50968a95e4b08367da77d6bb': u'Times Square', u'4ae041a3f964a520617e21e3': u'CBS Early Show Plaza', u'4f5a99cee4b070e0462bb220': u'Pershing Square', u'4b947435f964a520277a34e3': u'Tramway Plaza', u'4c7a4a61a8683704bb36134d': u'Greenstreets Park', u'4e8f1680f5b910ae60bb639c': u'Saturday Night Live Standby Line', u'4c263b56905a0f478fdd6260': u'75 Wall Street Condominiums', u'4fd367e0e4b02bec729804b5': u'200 West 60th Street', u'4da35b13b3e7236afbfc3079': u'Broadway Pedestrian Mall - 39th St to 42nd St', u'4fd35a89e4b0052fbb7a06fe': u'145 West 67th Street', u'4f6cb550e4b07a4bc3b906ff': u'345 Park Avenue Plaza', u'4e1b18c5d1644bdbfdf7ebcb': u'Harry Potter US Premiere', u'505066fee4b020e9add5ff95': u'Memorial 9/11', u'4ba3a8dbf964a5202c5138e3': u'Soho Square', u'4c30f3c166e40f477d4fc48b': u'Metropolitan Museum Steps', u'4c50650e371520a1db7f40c1': u'Courtyard @ 888 7th ave', u'4eb5ba6893ad2365704e7127': u'Friendly Presbyterian Douchebag', u'4cfe8e720df3236afbee09aa': u'555 Madison Ave', u'4caf1ae81168a093485f1f23': u'Rockefeller Plaza', u'4a52afccf964a520e9b11fe3': u"St. Mark's Place", u'4c14f97b7f7f2d7fdca0e168': u'Balsley Park', u'5082afe9e4b0073ffb14a0ba': u'MPIA Harvest fest', u'4bdfd8480d69b7137d2b66d3': u'John J Delury Senior Plaza', u'4f9830b5e4b0a8d56bd79035': u'Sun Yat Sen Statue', u'4ded5d3a7d8bb21674233923': u'60 Wall St Atrium', u'4c746691ff1fb60c628cf3a7': u'Third North Courtyard Cafe', u'4c98f6acd799a1cda2d9b652': u'Dante Park - Lincoln Center Triangle', u'4f918f99e4b020a51d8f4805': u'Broadway Plaza', u'4bcf38f6aeedef3b2a6dc598': u'Bedford-Houston Square', u'4bd34df7a8b3a593a7a3695f': u'Cooper Triangle', u'4c4b148b959220a120280f0f': u'77th St. Fountain at AMNH', u'50184c4de4b035110ca52876': u'Big Screen Plaza', u'5032b65de4b09fc95542579d': u'People With Aids Plaza', u'4f30c39ae4b0acb1eb2e897a': u'New York Giants Super Bowl Victory Parade 2012', u'4ebd89f761af9815e1385567': u'Reclining Figure by Henry Moore', u'4b7e11c2f964a5209ce12fe3': u'Savoy Park', u'4ba28e56f964a520030438e3': u'Monterey Plaza', u'4ad53cf1f964a5207b0221e3': u'Petrosino Square', u'4c18d147fe5a76b0c28b0215': u'Grand Central Plaza', u'4ebb03823b7b59c37945b07d': u"World Financial Center's Winter Garden", u'4c967391533aa09336ecd145': u"Firefighter's Memorial Park at the Ritz Plaza", u'4ad3b47ef964a520c3e520e3': u'General Motors Building', u'4fc3f338e4b07ac9fd91770c': u'Police Plaza', u'50188defe4b035110cc1fa21': u'Leaping Fountain', u'4fd36f9ee4b0b31b84832cfd': u'45 West 60th', u'4c55e1c106901b8da347374e': u'Public Seating', u'4f4d2b04e4b0f0c700b3069c': u'Public Atrium @52nd Street', u'50523f3de4b07c192819dc09': u'Kawasaki Times Square Takeover.', u'4c54ae0bfd2ea593263b752a': u'Lincoln Center\u2019s Revson Fountain', u'4bad7247f964a520ce513be3': u'Extra Place', u'4b6f65c1f964a520d1ee2ce3': u'80 Central Park West', u'4bc35c8ff8219c74d3f8b510': u'Fisher Park', u'4bd1d85f41b9ef3bf4b9fce5': u'12 East 49th Street Plaza', u'4c77ddce947ca1cda3aa4837': u'Waterfall park at 51st Street', u'4ec97d73b8f758db76a133b2': u'A Kiwi - Peter Woytuk @Broadway', u'4bd089d49854d13ac1e8f74d': u'The New York Palace courtyard', u'4a299005f964a520a8951fe3': u'Greeley Square', u'4fb978cee4b052fc9891c556': u'Rooftop Schneider', u'4ae200aaf964a520ac8921e3': u'Gansevoort Plaza', u'4fe669dee4b0c7d6bb40732a': u'139 & Lenox', u'4f90790fe4b094de9bd32b4a': u'Broadway Mills', u'4cb1dd8e3f0676b0b4fcfc0c': u'DeBragga & Spitler Courtyard', u'4c432ea5cc410f4792cead61': u'79th street promenade', u'4a673d8ef964a52007c91fe3': u'Dag Hammarskj\xf6ld Plaza', u'4cc43cc3b2beb1f71f8f1b4c': u'Farm Sanctuary NYC Walk For Farm Animals', u'4ca61980d971b1f79ac3fce0': u'Bleecker Street', u'49c64842f964a5202e571fe3': u'Columbus Circle', u'4ad0eac3f964a52013db20e3': u'Worldwide Plaza', u'4ae33123f964a5207d9121e3': u'Boutique Cartier', u'4bc21f2bb492d13af4ffa660': u'Kimlau Square', u'4fe73d78e4b0c7d6bb87f6e5': u'Doris Freedman Plaza', u'4debcaadd164ef597d0e7be7': u'Park Bench', u'3fd66200f964a520dbf11ee3': u'New York City Vietnam Veterans Memorial Plaza', u'4be07360652b0f47887c7211': u'Urban Plaza @ 425 Lexington', u'4bfb250d65fbc9b6cc16916c': u'Park of Evil', u'4bbcc82aa8cf76b0f6f1b0fd': u'Trump SoHo New York', u'4ed711c60e6145a3906cfb7c': u'Father Duffy Square', u'4b8448bbf964a520672c31e3': u'South Cove Park', u'5021648ae4b0b9f6b6d566b2': u'Municipal Plaza', u'4d6550e14fa4cbff246bd6d9': u'Open to Public', u'4dd6edd7b0fb8af38079b484': u'Cardinal Hayes Place', u'4f987802e5e83ebc913fce0c': u'Recycle with Honest Tea in Times Square', u'48aa7164f964a520a5511fe3': u'Father Demo Square', u'4c53469430f92d7f1dd280b8': u'The Waterford', u'4d276e5b8292236af1a50fbb': u'Frawley Plaza', u'4c6017933986e21e8867934f': u'Roosevelt Island Visitors Center', u'4d81373370d18cfa96f5ac94': u'Little East 91st. Lane', u'4df67e70e4cd50071441065f': u'Hamilton Grange National Memorial', u'4dcc0c0e1fc7eca44b1f1ed6': u'Urban Plaza - Hudson Square', u'4eaede128b8181aef8b1f0f8': u'Robert Moses Plaza', u'4b8442e0f964a520082b31e3': u'Hanover Square Park', u'4e1bc07fa809bd1305bff584': u'East River Esplanade', u'4bc9f76e511f95212aa7aec7': u'300 E 54th St Plaza', u'4d96560d9079b1f77486f709': u'Pillow Fight NYC 2011', u'4a36e650f964a520fe9d1fe3': u'Abe Lebewohl Park', u'4c9a4b429c663704037257fd': u'Rockefeller Center Promenade', u'4eb82677823131627064b47e': u'Sterling Plaza', u'4ba4ff52f964a52026ce38e3': u'Union Square Artist Market', u'4cae7f44eb65b1f7b69c5ccd': u'Margaret Corbin Circle', u'4c683974f984a5933f5649f4': u'Harry B. Helmsley Plaza', u'4e2ef1cc22717d70585b4a01': u'375 Park Ave Fountains', u'4eb8282b8231316270657ddb': u'Cooper Square', u'4d2b4592d86aa0907fa322c0': u'Central Park - Conservatory Garden Center Fountain', u'4e149a811838843251090f0c': u'Public Area', u'4c9dfed503133704e70864d5': u'Bogardus Plaza', u'4ec939060e6158ba009c2f63': u'Occupy Wall Street', u'4b01977ff964a520b44322e3': u'International Plaza', u'4ebd447df5b9e505b7f77e6f': u'Veterans Day Parade'}
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
Plaza name : the red stairs at 42nd st
Comments for this Plaza : 0
[]
Plaza name : Trinity Plaza
Comments for this Plaza : 8
[(0.3247342047137871, u'dancer', 13, 1), (0.26968351175578803, u'flag', 41, 1), (0.2650699754534338, u'church', 19, 1), (0.24443647588626344, u'thank', 39, 1), (0.23484671873236782, u'sculpture', 110, 1), (0.22897464218793187, u'wall', 83, 1), (0.21817298312218497, u'square', 258, 1)]
Plaza name : Prince & Mercer
Comments for this Plaza : 33
[(0.9530107160810086, u'prince', 4, 2), (0.4765053580405043, u'hopes', 3, 1), (0.4765053580405043, u'scale', 3, 1), (0.41905978419640516, u'oxford', 4, 1), (0.41905978419640516, u'cutest', 6, 1), (0.41905978419640516, u'peak', 4, 1), (0.41905978419640516, u'mass', 7, 1), (0.383224293337255, u'relaxation', 10, 1), (0.383224293337255, u'tiny', 13, 1), (0.383224293337255, u'broke', 7, 1), (0.3581970477838151, u'king', 7, 1), (0.3394536660667255, u'proud', 11, 1), (0.3247342047137871, u'training', 11, 1), (0.3247342047137871, u'ready', 11, 1), (0.312771272649591, u'kiss', 13, 1), (0.2942998296638024, u'fan', 16, 1), (0.28695173228265203, u'pizza', 32, 1), (0.28050889359956055, u'puppy', 24, 1), (0.2650699754534338, u'shoes', 26, 1), (0.26087773109487916, u'weeks', 26, 1), (0.26087773109487916, u'madness', 24, 1), (0.25026701779259936, u'money', 37, 1), (0.25026701779259936, u'garden', 56, 1), (0.24180906749867698, u'hair', 53, 1), (0.2370299675817646, u'school', 63, 1), (0.2370299675817646, u'light', 67, 1), (0.23484671873236782, u'mind', 82, 1), (0.23484671873236782, u'travel', 98, 1), (0.22897464218793187, u'stop', 76, 1), (0.22897464218793187, u'state', 343, 1), (0.22721089587269092, u'sign', 73, 1), (0.22092804904991536, u'birthday', 99, 1), (0.22092804904991536, u'dog', 121, 1), (0.21817298312218497, u'part', 96, 1), (0.20442288127105387, u'fall', 321, 1), (0.20442288127105387, u'happy', 220, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : Sherman Square
Comments for this Plaza : 33
[(0.625542545299182, u'fruit', 13, 2), (0.5906161091496412, u'horizon', 4, 1), (0.4288567733761657, u'streets', 136, 2), (0.4243066556948569, u'side', 111, 2), (0.40088322218174355, u'sky', 427, 2), (0.3938917284402278, u'architecture', 409, 2), (0.383224293337255, u'disco', 7, 1), (0.3581970477838151, u'upper', 14, 1), (0.3581970477838151, u'technology', 7, 1), (0.3581970477838151, u'emergency', 8, 1), (0.3581970477838151, u'funk', 6, 1), (0.3394536660667255, u'bananas', 7, 1), (0.3394536660667255, u'lucky', 9, 1), (0.3247342047137871, u'bunch', 12, 1), (0.312771272649591, u'use', 11, 1), (0.30279310656411385, u'moments', 19, 1), (0.30279310656411385, u'notice', 13, 1), (0.2942998296638024, u'hipster', 18, 1), (0.28695173228265203, u'news', 27, 1), (0.28050889359956055, u'pop', 23, 1), (0.26087773109487916, u'game', 43, 1), (0.25704484358604845, u'sunrise', 33, 1), (0.25026701779259936, u'playing', 54, 1), (0.24180906749867698, u'boy', 65, 1), (0.23278351371152656, u'west', 97, 1), (0.22721089587269092, u'heart', 86, 1), (0.22392725897047894, u'autumn', 119, 1), (0.22239482227710577, u'reflection', 142, 1), (0.20804456358819232, u'clouds', 252, 1), (0.2061792922853361, u'life', 285, 1), (0.20442288127105387, u'home', 245, 1), (0.2035821084092901, u'lights', 274, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : City Hall Park
Comments for this Plaza : 1149
[(30.121421566631703, u'ketchup', 52, 51), (20.60098807646617, u'hall', 80, 70), (10.0, u'daddies', 10, 10), (7.6644858667451, u'sol', 31, 20), (6.964241450974619, u'bottle', 33, 23), (6.514812986733334, u'squirrel', 41, 17), (5.906161091496412, u'squirrels', 17, 10), (4.993069526116615, u'downtown', 175, 24), (4.923646605502847, u'architecture', 409, 25), (4.0, u'lantern', 4, 4), (3.446999400627481, u'buildings', 353, 17), (3.33553750628353, u'lamps', 10, 7), (3.0530073435207816, u'sculpture', 110, 13), (3.0, u'lanterns', 3, 3), (3.0, u'condiments', 3, 3), (2.485171089475644, u'water', 295, 12), (2.2884901994701154, u'trees', 239, 11), (1.9970710216551604, u'spring', 247, 10), (1.9484052282827227, u'gas', 17, 6), (1.8766276358975458, u'daddy', 16, 6), (1.8398059314394848, u'happy', 220, 9), (1.803974499817846, u'sky', 427, 9), (1.7914180717638315, u'statue', 345, 8), (1.7791585782168462, u'nature', 180, 8), (1.711055331203844, u'bench', 42, 7), (1.5904762711088365, u'flowers', 161, 7), (1.4834878758584105, u'fire', 56, 6), (1.456311945117346, u'clouds', 252, 7), (1.4327881911352605, u'chess', 40, 4), (1.4327881911352605, u'relief', 11, 4), (1.408367983561212, u'place', 359, 7), (1.3740727417437726, u'people', 414, 7), (1.3632653752361454, u'tree', 148, 6), (1.3632653752361454, u'sign', 73, 6), (1.3484175587789402, u'parks', 81, 5), (1.3012593400430281, u'cool', 137, 6), (1.2989368188551484, u'fries', 11, 4), (1.2989368188551484, u'burger', 16, 4), (1.293776502117644, u'urban', 124, 6), (1.293776502117644, u'fashion', 347, 6), (1.2796234278822654, u'food', 165, 6), (1.2729199670845708, u'picture', 148, 6), (1.26760739015327, u'tower', 95, 5), (1.2118167355573137, u'sun', 338, 6), (1.1812322182992825, u'messages', 3, 2), (1.1812322182992825, u'condos', 3, 2), (1.1812322182992825, u'homes', 3, 2), (1.174233593661839, u'get', 84, 5), (1.1702443410691354, u'work', 331, 6), (1.149672880011765, u'fruits', 9, 3)]
Plaza name : Greenstreets Square (Triangle)
Comments for this Plaza : 5
[(0.6055862131282277, u'traffic', 15, 2), (0.383224293337255, u'cross', 6, 1), (0.3581970477838151, u'pretzel', 16, 1), (0.3247342047137871, u'tunnel', 18, 1), (0.28050889359956055, u'stuck', 19, 1), (0.24443647588626344, u'town', 69, 1), (0.22897464218793187, u'car', 68, 1), (0.22897464218793187, u'stop', 76, 1), (0.21107423703435377, u'snow', 158, 1), (0.20804456358819232, u'trees', 239, 1), (0.20196945592621895, u'sun', 338, 1)]
Plaza name : Gateway Plaza
Comments for this Plaza : 3
[(0.40884576254210775, u'home', 245, 2), (0.30279310656411385, u'weird', 11, 1), (0.26968351175578803, u'sweet', 23, 1), (0.2650699754534338, u'rest', 36, 1), (0.253521478030654, u'shit', 47, 1), (0.24180906749867698, u'let', 63, 1), (0.2370299675817646, u'light', 67, 1), (0.21687655667383804, u'look', 103, 1), (0.21215332784742846, u'side', 111, 1)]
Plaza name : Village Square
Comments for this Plaza : 1
[(0.507042956061308, u'dusk', 47, 2), (0.3994142043310321, u'spring', 247, 2), (0.3247342047137871, u'guitar', 12, 1), (0.22392725897047894, u'taxi', 118, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : 30 Lincoln Plaza
Comments for this Plaza : 53
[(1.1812322182992825, u'chandelier', 4, 2), (0.6055862131282277, u'roof', 15, 2), (0.5217554621897583, u'gay', 42, 2), (0.4765053580405043, u'taking', 6, 1), (0.4765053580405043, u'thunderstorm', 3, 1), (0.4765053580405043, u'backyard', 3, 1), (0.4765053580405043, u'thanksgiving', 3, 1), (0.45106129263903244, u'girls', 90, 2), (0.41905978419640516, u'opens', 4, 1), (0.41608912717638463, u'clouds', 252, 2), (0.4123585845706722, u'life', 285, 2), (0.40884576254210775, u'rain', 235, 2), (0.383224293337255, u'golden', 9, 1), (0.3394536660667255, u'transportation', 8, 1), (0.3247342047137871, u'catch', 11, 1), (0.312771272649591, u'yellow', 10, 1), (0.30279310656411385, u'top', 13, 1), (0.2747964402379244, u'fog', 39, 1), (0.26968351175578803, u'windows', 22, 1), (0.2650699754534338, u'smile', 32, 1), (0.2650699754534338, u'south', 62, 1), (0.2650699754534338, u'call', 32, 1), (0.26087773109487916, u'sunshine', 65, 1), (0.25704484358604845, u'dance', 65, 1), (0.25704484358604845, u'apartment', 50, 1), (0.25704484358604845, u'glass', 56, 1), (0.25026701779259936, u'white', 37, 1), (0.23934588700996243, u'show', 171, 1), (0.23934588700996243, u'parade', 56, 1), (0.23934588700996243, u'ass', 57, 1), (0.23484671873236782, u'get', 84, 1), (0.23082936127582715, u'house', 57, 1), (0.22553064631951622, u'years', 89, 1), (0.22239482227710577, u'reflection', 142, 1), (0.21817298312218497, u'fun', 208, 1), (0.21687655667383804, u'look', 103, 1), (0.21442838668808284, u'streets', 136, 1), (0.21215332784742846, u'picture', 148, 1), (0.21107423703435377, u'snow', 158, 1), (0.20804456358819232, u'afternoon', 200, 1), (0.20442288127105387, u'happy', 220, 1), (0.20276467062514594, u'buildings', 353, 1), (0.20196945592621895, u'sun', 338, 1), (0.20044161109087177, u'sky', 427, 1), (0.1969458642201139, u'architecture', 409, 1)]
Plaza name : 747 Third Avenue Plaza
Comments for this Plaza : 0
[]
Plaza name : Worth Square
Comments for this Plaza : 65
[(0.9742026141413613, u'iron', 11, 3), (0.9083793196923415, u'worth', 20, 3), (0.76644858667451, u'flatiron', 11, 2), (0.5906161091496412, u'wool', 100, 1), (0.5140896871720969, u'sunrise', 33, 2), (0.4765053580405043, u'sprung', 3, 1), (0.4765053580405043, u'straw', 4, 1), (0.4765053580405043, u'eclipse', 3, 1), (0.4765053580405043, u'neck', 4, 1), (0.46969343746473563, u'window', 60, 2), (0.45794928437586374, u'skyline', 158, 2), (0.43634596624436994, u'square', 258, 2), (0.42006215899384874, u'midtown', 343, 2), (0.41905978419640516, u'oxford', 4, 1), (0.41905978419640516, u'fort', 8, 1), (0.41905978419640516, u'taxis', 8, 1), (0.41905978419640516, u'eats', 4, 1), (0.4039389118524379, u'way', 247, 2), (0.40088322218174355, u'sky', 427, 2), (0.39008144702304515, u'work', 331, 2), (0.383224293337255, u'hook', 5, 1), (0.383224293337255, u'polo', 10, 1), (0.383224293337255, u'zip', 24, 1), (0.3581970477838151, u'tennis', 11, 1), (0.3394536660667255, u'gray', 7, 1), (0.3394536660667255, u'lobster', 10, 1), (0.3247342047137871, u'mood', 11, 1), (0.3247342047137871, u'paradise', 16, 1), (0.3247342047137871, u'bldg', 11, 1), (0.28695173228265203, u'gloomy', 22, 1), (0.28695173228265203, u'metal', 25, 1), (0.28050889359956055, u'blocks', 20, 1), (0.2747964402379244, u'nightlife', 27, 1), (0.26968351175578803, u'cause', 43, 1), (0.26968351175578803, u'skies', 37, 1), (0.2650699754534338, u'beer', 38, 1), (0.24724797930973505, u'tourist', 85, 1), (0.24724797930973505, u'pictures', 43, 1), (0.24724797930973505, u'everything', 42, 1), (0.24443647588626344, u'avenue', 47, 1), (0.23484671873236782, u'nice', 111, 1), (0.23484671873236782, u'neighborhood', 49, 1), (0.23278351371152656, u'bit', 58, 1), (0.22721089587269092, u'weekend', 103, 1), (0.22239482227710577, u'hello', 83, 1), (0.22092804904991536, u'year', 99, 1), (0.21687655667383804, u'cool', 137, 1), (0.2156294170196073, u'friend', 123, 1), (0.2132705713137109, u'break', 180, 1), (0.21107423703435377, u'walk', 212, 1)]
Plaza name : Ryder's Alley
Comments for this Plaza : 0
[]
Plaza name : Doris C. Freedman Plaza
Comments for this Plaza : 8
[(0.4765053580405043, u'fund', 8, 1), (0.4765053580405043, u'rotation', 3, 1), (0.41905978419640516, u'witch', 4, 1), (0.383224293337255, u'airplane', 6, 1), (0.383224293337255, u'degree', 8, 1), (0.3394536660667255, u'motion', 7, 1), (0.3247342047137871, u'plane', 8, 1), (0.312771272649591, u'exhibit', 53, 1)]
Plaza name : Atrium
Comments for this Plaza : 2
[(0.3581970477838151, u'denim', 9, 1), (0.3581970477838151, u'jeans', 6, 1), (0.28695173228265203, u'sick', 17, 1), (0.22553064631951622, u'baby', 103, 1)]
Plaza name : Dîner en Blanc
Comments for this Plaza : 26
[(1.357814664266902, u'blanc', 43, 4), (0.7163940955676302, u'diner', 16, 2), (0.4888729517725269, u'dinner', 99, 2), (0.47869177401992485, u'center', 444, 2), (0.43634596624436994, u'party', 104, 2), (0.383224293337255, u'carrot', 6, 1), (0.383224293337255, u'guest', 6, 1), (0.383224293337255, u'celebrate', 5, 1), (0.312771272649591, u'move', 21, 1), (0.312771272649591, u'faces', 13, 1), (0.30279310656411385, u'others', 21, 1), (0.2942998296638024, u'fancy', 25, 1), (0.2942998296638024, u'engagement', 16, 1), (0.2650699754534338, u'rainbow', 42, 1), (0.23484671873236782, u'com', 81, 1), (0.23082936127582715, u'date', 106, 1), (0.22392725897047894, u'thing', 86, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : The Symphony House
Comments for this Plaza : 20
[(0.6494684094275742, u'balcony', 13, 2), (0.4765053580405043, u'routine', 3, 1), (0.46969343746473563, u'com', 81, 2), (0.43634596624436994, u'hurricane', 128, 2), (0.383224293337255, u'homework', 8, 1), (0.383224293337255, u'banana', 9, 1), (0.3581970477838151, u'magnolia', 12, 1), (0.3394536660667255, u'clothes', 8, 1), (0.3247342047137871, u'windy', 11, 1), (0.30279310656411385, u'deal', 12, 1), (0.30279310656411385, u'roof', 15, 1), (0.28695173228265203, u'version', 13, 1), (0.2747964402379244, u'month', 26, 1), (0.26968351175578803, u'bye', 34, 1), (0.25026701779259936, u'river', 85, 1), (0.25026701779259936, u'garden', 56, 1), (0.24443647588626344, u'floor', 54, 1), (0.24180906749867698, u'let', 63, 1), (0.21817298312218497, u'fun', 208, 1), (0.21687655667383804, u'look', 103, 1), (0.21003107949692437, u'midtown', 343, 1), (0.20442288127105387, u'rain', 235, 1), (0.1976111573464833, u'sandy', 314, 1)]
Plaza name : Fountain Of Juice
Comments for this Plaza : 1
[(0.2370299675817646, u'portrait', 41, 1)]
Plaza name : McCarthy Square
Comments for this Plaza : 13
[(0.7163940955676302, u'map', 9, 2), (0.5928334720394498, u'sandy', 314, 3), (0.5393670235115761, u'village', 86, 2), (0.5217554621897583, u'tourists', 48, 2), (0.4765053580405043, u'prince', 4, 1), (0.4765053580405043, u'cell', 3, 1), (0.4765053580405043, u'cellphone', 3, 1), (0.4655670274230531, u'west', 97, 2), (0.41905978419640516, u'bagels', 6, 1), (0.41804362975511816, u'photography', 220, 2), (0.383224293337255, u'earth', 7, 1), (0.383224293337255, u'search', 5, 1), (0.3247342047137871, u'ready', 11, 1), (0.3247342047137871, u'solo', 10, 1), (0.312771272649591, u'use', 11, 1), (0.2942998296638024, u'flight', 15, 1), (0.2942998296638024, u'brunch', 24, 1), (0.2942998296638024, u'boo', 22, 1), (0.26968351175578803, u'shop', 58, 1), (0.25704484358604845, u'pigeons', 49, 1), (0.253521478030654, u'phone', 31, 1), (0.24724797930973505, u'woman', 44, 1), (0.23934588700996243, u'check', 67, 1), (0.23934588700996243, u'bike', 65, 1), (0.23934588700996243, u'birds', 66, 1), (0.2370299675817646, u'portrait', 41, 1), (0.2370299675817646, u'light', 67, 1), (0.23484671873236782, u'mind', 82, 1), (0.22897464218793187, u'ride', 85, 1), (0.22721089587269092, u'heart', 86, 1), (0.22239482227710577, u'rainy', 103, 1), (0.21817298312218497, u'hurricane', 128, 1), (0.21687655667383804, u'look', 103, 1), (0.21442838668808284, u'streets', 136, 1), (0.20804456358819232, u'downtown', 175, 1)]
Plaza name : The Spot
Comments for this Plaza : 1
[(0.4765053580405043, u'coworkers', 3, 1)]
Plaza name : Columbus Square Courtyard
Comments for this Plaza : 5
[(0.3394536660667255, u'elevator', 8, 1), (0.28050889359956055, u'puppy', 24, 1), (0.2650699754534338, u'rainbow', 42, 1), (0.253521478030654, u'movie', 278, 1), (0.24180906749867698, u'let', 63, 1), (0.21817298312218497, u'hurricane', 128, 1), (0.21817298312218497, u'party', 104, 1), (0.21107423703435377, u'snow', 158, 1)]
Plaza name : Solstice in Times Square - Times Square Alliance
Comments for this Plaza : 76
[(10.321451997436503, u'yoga', 188, 33), (7.678009418945336, u'solstice', 15, 13), (4.337531133476761, u'times', 203, 20), (2.002136142340795, u'class', 67, 8), (0.7851844238535843, u'people', 414, 4), (0.7826331932846374, u'madness', 24, 3), (0.76644858667451, u'goodies', 6, 2), (0.7045401561971034, u'mind', 82, 3), (0.678907332133451, u'bow', 11, 2), (0.625542545299182, u'energy', 17, 2), (0.5906161091496412, u'teaching', 3, 1), (0.5906161091496412, u'yogis', 6, 1), (0.5495928804758488, u'degrees', 40, 2), (0.5217554621897583, u'crazy', 66, 2), (0.507042956061308, u'heat', 43, 2), (0.47869177401992485, u'hour', 70, 2), (0.4765053580405043, u'strength', 3, 1), (0.4765053580405043, u'lose', 3, 1), (0.4765053580405043, u'position', 3, 1), (0.41905978419640516, u'midst', 4, 1), (0.41905978419640516, u'noise', 5, 1), (0.41905978419640516, u'wears', 4, 1), (0.41905978419640516, u'starts', 7, 1), (0.41905978419640516, u'problem', 6, 1), (0.41905978419640516, u'student', 4, 1), (0.41419518157927404, u'water', 295, 2), (0.383224293337255, u'thousands', 7, 1), (0.383224293337255, u'yogurt', 13, 1), (0.383224293337255, u'fest', 17, 1), (0.383224293337255, u'classes', 8, 1), (0.3581970477838151, u'focus', 14, 1), (0.3581970477838151, u'bracelets', 10, 1), (0.3581970477838151, u'fitness', 12, 1), (0.3581970477838151, u'studio', 10, 1), (0.3581970477838151, u'pose', 10, 1), (0.3581970477838151, u'balance', 6, 1), (0.3581970477838151, u'mouse', 10, 1), (0.3247342047137871, u'paper', 13, 1), (0.3247342047137871, u'treat', 13, 1), (0.3247342047137871, u'ready', 11, 1), (0.3247342047137871, u'beach', 16, 1), (0.312771272649591, u'gift', 16, 1), (0.312771272649591, u'screen', 31, 1), (0.312771272649591, u'use', 11, 1), (0.30279310656411385, u'practice', 16, 1), (0.30279310656411385, u'minutes', 18, 1), (0.2942998296638024, u'celebration', 18, 1), (0.28050889359956055, u'block', 25, 1), (0.28050889359956055, u'point', 26, 1), (0.28050889359956055, u'standing', 19, 1)]
Plaza name : World Wide Plaza
Comments for this Plaza : 22
[(0.678907332133451, u'clothes', 8, 2), (0.4765053580405043, u'nickelodeon', 3, 1), (0.4765053580405043, u'wee', 3, 1), (0.4765053580405043, u'cartoon', 3, 1), (0.4765053580405043, u'wide', 4, 1), (0.41905978419640516, u'grade', 4, 1), (0.41905978419640516, u'converse', 5, 1), (0.4123585845706722, u'life', 285, 2), (0.383224293337255, u'blazer', 5, 1), (0.3581970477838151, u'hangover', 7, 1), (0.3394536660667255, u'bananas', 7, 1), (0.30279310656411385, u'breeze', 21, 1), (0.2942998296638024, u'sneakers', 11, 1), (0.28695173228265203, u'lovers', 16, 1), (0.2747964402379244, u'nightlife', 27, 1), (0.25704484358604845, u'bar', 32, 1), (0.253521478030654, u'construction', 47, 1), (0.25026701779259936, u'cloud', 49, 1), (0.24724797930973505, u'job', 49, 1), (0.23934588700996243, u'yes', 81, 1), (0.22897464218793187, u'end', 57, 1), (0.22897464218793187, u'post', 170, 1), (0.2156294170196073, u'fashion', 347, 1), (0.21003107949692437, u'midtown', 343, 1), (0.20902181487755908, u'photography', 220, 1), (0.20902181487755908, u'friends', 184, 1), (0.20804456358819232, u'afternoon', 200, 1), (0.20709759078963702, u'water', 295, 1), (0.20442288127105387, u'rain', 235, 1), (0.20442288127105387, u'world', 322, 1), (0.20196945592621895, u'way', 247, 1), (0.20044161109087177, u'sky', 427, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : Park Avenue Atrium
Comments for this Plaza : 3
[(0.3394536660667255, u'type', 11, 1), (0.26968351175578803, u'tea', 44, 1)]
Plaza name : Taxi Of Tomorrow Design Expo
Comments for this Plaza : 1
[(0.4765053580405043, u'expo', 3, 1), (0.383224293337255, u'flatiron', 11, 1)]
Plaza name : Sky East Patio
Comments for this Plaza : 1
[]
Plaza name : 150th St. & Broadway
Comments for this Plaza : 18
[(0.41905978419640516, u'lips', 6, 1), (0.41905978419640516, u'robot', 7, 1), (0.383224293337255, u'ban', 5, 1), (0.3581970477838151, u'human', 6, 1), (0.312771272649591, u'culture', 16, 1), (0.2942998296638024, u'wood', 16, 1), (0.28695173228265203, u'queens', 19, 1), (0.2650699754534338, u'uptown', 31, 1), (0.2650699754534338, u'moon', 72, 1), (0.24180906749867698, u'graffiti', 65, 1), (0.2370299675817646, u'light', 67, 1), (0.23278351371152656, u'right', 58, 1), (0.21107423703435377, u'storm', 126, 1), (0.20902181487755908, u'girl', 208, 1)]
Plaza name : Plaza
Comments for this Plaza : 2
[(0.41905978419640516, u'conversation', 4, 1)]
Plaza name : Bryant Park
Comments for this Plaza : 13924
[(62.61980507357154, u'movie', 278, 247), (60.0, u'carousel', 60, 60), (58.47099480581448, u'wool', 100, 99), (45.47571853189286, u'ice', 267, 190), (45.351834534190694, u'yoga', 188, 145), (38.97255993026568, u'sheep', 96, 93), (38.0, u'backstreet', 38, 38), (36.69091256911884, u'rink', 93, 77), (36.0, u'psycho', 36, 36), (32.05644990631046, u'state', 343, 140), (31.0, u'raiders', 31, 31), (30.496342914592276, u'wizard', 66, 64), (28.186269641309796, u'empire', 274, 114), (26.825700533607847, u'lawn', 77, 70), (25.833822778121696, u'midtown', 343, 123), (25.004533762961607, u'grass', 90, 77), (24.537013245424507, u'people', 414, 125), (24.530745752526464, u'fall', 321, 120), (24.128995804392368, u'buildings', 353, 119), (23.6410051537318, u'movies', 76, 66), (23.22648743151518, u'sun', 338, 115), (22.884901994701153, u'trees', 239, 110), (22.530947913541873, u'film', 110, 85), (21.521007007382252, u'holiday', 138, 89), (20.47927596870987, u'work', 331, 105), (20.260704274802535, u'break', 180, 95), (19.843719497996304, u'sky', 427, 99), (19.17188180788954, u'spring', 247, 96), (19.060214321620172, u'roman', 42, 40), (18.975388697725442, u'fashion', 347, 88), (18.89971549278852, u'ark', 33, 32), (18.762315597965586, u'life', 285, 91), (17.475743341408155, u'afternoon', 200, 84), (16.478644613501963, u'library', 49, 43), (16.144800751041686, u'fun', 208, 74), (15.927225928032072, u'winter', 129, 69), (15.911327193591493, u'festival', 92, 59), (15.542299882772403, u'weather', 186, 74), (15.2908523929503, u'place', 359, 76), (14.770939816508541, u'architecture', 409, 75), (14.340382799964633, u'perfect', 126, 58), (13.828972878481371, u'chairs', 38, 33), (13.738478531275913, u'skyline', 158, 60), (12.944808564277825, u'parks', 81, 48), (12.796234278822654, u'office', 275, 60), (12.783008823649078, u'boys', 81, 49), (12.695614870170493, u'coffee', 121, 55), (12.571793525892156, u'shops', 39, 30), (11.912633951012609, u'campaign', 27, 25), (11.786925580686605, u'nature', 180, 53)]
Plaza name : Pigeon Park
Comments for this Plaza : 3
[(0.5140896871720969, u'pigeons', 49, 2), (0.383224293337255, u'vegan', 7, 1), (0.24443647588626344, u'bag', 37, 1), (0.21817298312218497, u'part', 96, 1), (0.21687655667383804, u'guy', 138, 1)]
Plaza name : Javits Center bench
Comments for this Plaza : 7
[(0.4765053580405043, u'summers', 4, 1), (0.4765053580405043, u'evenings', 3, 1), (0.3247342047137871, u'reminds', 12, 1), (0.3247342047137871, u'celebrity', 8, 1), (0.26968351175578803, u'cold', 25, 1), (0.2650699754534338, u'club', 18, 1), (0.23934588700996243, u'center', 444, 1)]
Plaza name : Public Walk-Thru
Comments for this Plaza : 2
[(0.4765053580405043, u'whole', 3, 1)]
Plaza name : General Grant National Memorial (Grant's Tomb)
Comments for this Plaza : 269
[(25.987108802584213, u'grant', 45, 44), (13.0, u'tomb', 13, 13), (5.0, u'mausoleum', 5, 5), (4.0, u'grants', 4, 4), (1.7657989779828147, u'death', 18, 6), (1.7307358551681455, u'peace', 52, 7), (1.6972683303336276, u'heights', 12, 5), (1.4347586614132601, u'circa', 18, 5), (1.429516074121513, u'dome', 6, 3), (1.209045337493385, u'let', 63, 5), (1.1816751853206833, u'architecture', 409, 6), (1.1478069291306081, u'president', 21, 4), (1.0221144063552694, u'fall', 321, 5), (1.0010680711703974, u'tour', 46, 4), (0.9083793196923415, u'war', 34, 3), (0.8828994889914074, u'ceiling', 27, 3), (0.8381195683928103, u'general', 5, 2), (0.76644858667451, u'branches', 8, 2), (0.76644858667451, u'eagle', 12, 2), (0.76644858667451, u'marriage', 6, 2), (0.7605644340919621, u'calm', 30, 3), (0.750801053377798, u'stroll', 78, 3), (0.7163940955676302, u'guard', 8, 2), (0.6869239265637956, u'post', 170, 3), (0.6627841471497461, u'week', 180, 3), (0.646888251058822, u'fashion', 347, 3), (0.6241336907645769, u'man', 216, 3), (0.6241336907645769, u'photo', 283, 3), (0.6055862131282277, u'monument', 39, 2), (0.5906161091496412, u'eagles', 3, 1), (0.5906161091496412, u'reads', 4, 1), (0.5885996593276048, u'visit', 32, 2), (0.5885996593276048, u'rip', 15, 2), (0.5610177871991211, u'landmark', 28, 2), (0.5393670235115761, u'cold', 25, 2), (0.5301399509068676, u'forever', 19, 2), (0.5217554621897583, u'gallery', 36, 2), (0.5217554621897583, u'jazz', 62, 2), (0.5140896871720969, u'dance', 65, 2), (0.4944959586194701, u'fire', 56, 2), (0.4765053580405043, u'ten', 3, 1), (0.4765053580405043, u'ranger', 3, 1), (0.4765053580405043, u'brought', 3, 1), (0.4765053580405043, u'memory', 5, 1), (0.4765053580405043, u'spa', 5, 1), (0.4765053580405043, u'blustery', 3, 1), (0.4765053580405043, u'beams', 3, 1), (0.4765053580405043, u'arrival', 3, 1), (0.4765053580405043, u'apart', 5, 1), (0.4765053580405043, u'trendy', 3, 1)]
Plaza name : Met Life Building Outdoor Sitting Area
Comments for this Plaza : 3
[(0.253521478030654, u'brother', 32, 1)]
Plaza name : Trump Plaza
Comments for this Plaza : 46
[(2.29934576002353, u'trump', 129, 6), (0.7180376610298872, u'ave', 58, 3), (0.4765053580405043, u'electricity', 3, 1), (0.4765053580405043, u'lecture', 3, 1), (0.4765053580405043, u'lotion', 3, 1), (0.4616587225516543, u'plaza', 209, 2), (0.4243066556948569, u'side', 111, 2), (0.41905978419640516, u'studs', 5, 1), (0.40088322218174355, u'sky', 427, 2), (0.3952223146929666, u'sandy', 314, 2), (0.383224293337255, u'born', 6, 1), (0.383224293337255, u'opera', 45, 1), (0.383224293337255, u'feeling', 8, 1), (0.3581970477838151, u'bacon', 18, 1), (0.3581970477838151, u'delivery', 7, 1), (0.3581970477838151, u'say', 6, 1), (0.3581970477838151, u'egg', 9, 1), (0.3394536660667255, u'overcast', 8, 1), (0.3247342047137871, u'fucking', 10, 1), (0.3247342047137871, u'wisdom', 13, 1), (0.3247342047137871, u'crane', 64, 1), (0.3247342047137871, u'girlfriend', 10, 1), (0.3247342047137871, u'balcony', 13, 1), (0.312771272649591, u'service', 16, 1), (0.30279310656411385, u'lobby', 21, 1), (0.30279310656411385, u'states', 15, 1), (0.2942998296638024, u'number', 26, 1), (0.2942998296638024, u'towers', 31, 1), (0.28695173228265203, u'cookie', 16, 1), (0.28695173228265203, u'beginning', 21, 1), (0.28050889359956055, u'sorry', 20, 1), (0.28050889359956055, u'words', 18, 1), (0.26968351175578803, u'beat', 21, 1), (0.26968351175578803, u'blue', 32, 1), (0.2650699754534338, u'anyone', 53, 1), (0.26087773109487916, u'game', 43, 1), (0.26087773109487916, u'space', 36, 1), (0.26087773109487916, u'filter', 41, 1), (0.25704484358604845, u'performance', 30, 1), (0.24724797930973505, u'east', 32, 1), (0.23934588700996243, u'bike', 65, 1), (0.23278351371152656, u'west', 97, 1), (0.22897464218793187, u'couple', 63, 1), (0.22897464218793187, u'skyline', 158, 1), (0.22553064631951622, u'baby', 103, 1), (0.22239482227710577, u'shot', 81, 1), (0.20902181487755908, u'friends', 184, 1), (0.20804456358819232, u'man', 216, 1), (0.20804456358819232, u'downtown', 175, 1), (0.2035821084092901, u'lights', 274, 1)]
Plaza name : Highgate Courtyard
Comments for this Plaza : 4
[(0.41905978419640516, u'motorcycle', 4, 1), (0.23934588700996243, u'ave', 58, 1)]
Plaza name : W. 175th St. Greenmarket
Comments for this Plaza : 2
[(0.4765053580405043, u'squash', 4, 1)]
Plaza name : Verdi Square
Comments for this Plaza : 215
[(1.6294845959806858, u'west', 97, 7), (1.5272108818552947, u'square', 258, 7), (1.2729199670845708, u'side', 111, 6), (1.1812322182992825, u'balloon', 3, 2), (1.0138233531257297, u'buildings', 353, 5), (0.9530107160810086, u'permission', 4, 2), (0.8957090358819157, u'statue', 345, 4), (0.8895792891084231, u'subway', 206, 4), (0.8381195683928103, u'nostalgia', 5, 2), (0.8176915250842155, u'home', 245, 4), (0.809050535267364, u'dogs', 32, 3), (0.8078778237048758, u'way', 247, 4), (0.7904446293859332, u'sandy', 314, 4), (0.7851844238535843, u'people', 414, 4), (0.76644858667451, u'booth', 9, 2), (0.76644858667451, u'awards', 9, 2), (0.7417439379292052, u'train', 73, 3), (0.7180376610298872, u'yes', 81, 3), (0.7163940955676302, u'upper', 14, 2), (0.6332227111030614, u'snow', 158, 3), (0.6059083677786569, u'sun', 338, 3), (0.5908375926603416, u'architecture', 409, 3), (0.5906161091496412, u'generation', 3, 1), (0.5885996593276048, u'wind', 12, 2), (0.5610177871991211, u'corner', 34, 2), (0.5610177871991211, u'block', 25, 2), (0.507042956061308, u'phone', 31, 2), (0.507042956061308, u'dusk', 47, 2), (0.507042956061308, u'someone', 47, 2), (0.47869177401992485, u'birds', 66, 2), (0.4765053580405043, u'candid', 3, 1), (0.4765053580405043, u'dragons', 3, 1), (0.4765053580405043, u'dirt', 3, 1), (0.4765053580405043, u'circles', 5, 1), (0.4765053580405043, u'leisure', 3, 1), (0.4765053580405043, u'bizarre', 3, 1), (0.4765053580405043, u'tables', 10, 1), (0.4765053580405043, u'roses', 3, 1), (0.4765053580405043, u'lesson', 4, 1), (0.46969343746473563, u'nothing', 69, 2), (0.45794928437586374, u'ride', 85, 2), (0.45442179174538183, u'sign', 73, 2), (0.4478545179409579, u'taxi', 118, 2), (0.44478964455421155, u'reflection', 142, 2), (0.44478964455421155, u'rainy', 103, 2), (0.43634596624436994, u'part', 96, 2), (0.4312588340392146, u'friend', 123, 2), (0.4265411426274218, u'office', 275, 2), (0.41905978419640516, u'humidity', 5, 1), (0.41905978419640516, u'section', 5, 1)]
Plaza name : Little Red Square
Comments for this Plaza : 6
[(0.2747964402379244, u'john', 23, 1), (0.253521478030654, u'fuck', 43, 1)]
Plaza name : Dag Hammarskjold Common
Comments for this Plaza : 11
[(0.4765053580405043, u'protesters', 4, 1), (0.41905978419640516, u'heck', 4, 1), (0.41905978419640516, u'made', 4, 1), (0.383224293337255, u'arms', 7, 1), (0.30279310656411385, u'legs', 17, 1), (0.26968351175578803, u'flag', 41, 1), (0.23934588700996243, u'parade', 56, 1), (0.2370299675817646, u'head', 44, 1), (0.23484671873236782, u'neighborhood', 49, 1), (0.22897464218793187, u'end', 57, 1), (0.22392725897047894, u'statue', 345, 1)]
Plaza name : Christopher Park
Comments for this Plaza : 82
[(7.0, u'liberation', 7, 7), (1.5652663865692749, u'gay', 42, 6), (0.9083793196923415, u'monument', 39, 3), (0.809050535267364, u'village', 86, 3), (0.76644858667451, u'statues', 12, 2), (0.7163940955676302, u'crack', 7, 2), (0.6983505411345796, u'west', 97, 3), (0.678907332133451, u'sculptures', 9, 2), (0.4765053580405043, u'characters', 3, 1), (0.4765053580405043, u'alcohol', 5, 1), (0.4765053580405043, u'pee', 3, 1), (0.4765053580405043, u'blossom', 4, 1), (0.45794928437586374, u'couple', 63, 2), (0.4478545179409579, u'statue', 345, 2), (0.44185609809983073, u'birthday', 99, 2), (0.41905978419640516, u'frame', 4, 1), (0.41905978419640516, u'smells', 5, 1), (0.39259221192679217, u'people', 414, 2), (0.383224293337255, u'billboard', 5, 1), (0.3581970477838151, u'tracks', 8, 1), (0.3394536660667255, u'heads', 10, 1), (0.3394536660667255, u'hay', 8, 1), (0.3394536660667255, u'pieces', 8, 1), (0.3394536660667255, u'congrats', 10, 1), (0.3394536660667255, u'taco', 9, 1), (0.3247342047137871, u'cherry', 10, 1), (0.3247342047137871, u'strawberry', 14, 1), (0.3247342047137871, u'client', 11, 1), (0.312771272649591, u'paint', 13, 1), (0.30279310656411385, u'piano', 19, 1), (0.30279310656411385, u'lazy', 18, 1), (0.30279310656411385, u'notice', 13, 1), (0.30279310656411385, u'homeless', 23, 1), (0.30279310656411385, u'springtime', 14, 1), (0.2942998296638024, u'body', 15, 1), (0.2942998296638024, u'turn', 17, 1), (0.2942998296638024, u'sunlight', 18, 1), (0.2942998296638024, u'sit', 13, 1), (0.2747964402379244, u'leaves', 36, 1), (0.26968351175578803, u'parks', 81, 1), (0.2650699754534338, u'hope', 36, 1), (0.26087773109487916, u'outdoor', 48, 1), (0.26087773109487916, u'places', 43, 1), (0.26087773109487916, u'watch', 26, 1), (0.25704484358604845, u'pigeons', 49, 1), (0.25704484358604845, u'men', 49, 1), (0.253521478030654, u'camera', 44, 1), (0.25026701779259936, u'favorite', 63, 1), (0.25026701779259936, u'photos', 86, 1), (0.24724797930973505, u'tourist', 85, 1)]
Plaza name : Bum Town
Comments for this Plaza : 4
[(0.4765053580405043, u'hail', 4, 1), (0.4765053580405043, u'lipstick', 4, 1), (0.41905978419640516, u'classy', 6, 1), (0.383224293337255, u'arms', 7, 1), (0.383224293337255, u'killer', 7, 1), (0.383224293337255, u'success', 6, 1), (0.3394536660667255, u'leg', 9, 1), (0.2370299675817646, u'portrait', 41, 1), (0.21107423703435377, u'storm', 126, 1)]
Plaza name : Recyclebank & Honest Tea: The Great Recycle
Comments for this Plaza : 1
[(0.25026701779259936, u'see', 43, 1)]
Plaza name : The Battery Conservancy
Comments for this Plaza : 12
[(0.4765053580405043, u'says', 3, 1), (0.3581970477838151, u'battery', 259, 1), (0.3247342047137871, u'trade', 65, 1), (0.2942998296638024, u'memorial', 28, 1), (0.23934588700996243, u'center', 444, 1), (0.2370299675817646, u'looks', 75, 1), (0.20804456358819232, u'photo', 283, 1), (0.2035821084092901, u'lights', 274, 1), (0.19970710216551604, u'spring', 247, 1)]
Plaza name : 325 Fifth Avenue Plaza
Comments for this Plaza : 9
[(0.383224293337255, u'scarf', 6, 1), (0.3581970477838151, u'comfy', 9, 1), (0.3394536660667255, u'accessories', 8, 1), (0.3394536660667255, u'escape', 10, 1), (0.312771272649591, u'lots', 18, 1), (0.312771272649591, u'nails', 12, 1), (0.26087773109487916, u'orange', 28, 1), (0.25704484358604845, u'pigeons', 49, 1), (0.25704484358604845, u'vintage', 43, 1), (0.24443647588626344, u'bag', 37, 1), (0.2132705713137109, u'break', 180, 1), (0.21003107949692437, u'midtown', 343, 1), (0.20196945592621895, u'sun', 338, 1)]
Plaza name : Eventi open air plaza
Comments for this Plaza : 13
[(1.563856363247955, u'screen', 31, 5), (0.6924880838274814, u'plaza', 209, 3), (0.5301399509068676, u'rest', 36, 2), (0.47869177401992485, u'random', 69, 2), (0.4765053580405043, u'rotation', 3, 1), (0.4765053580405043, u'soccer', 3, 1), (0.4765053580405043, u'venue', 3, 1), (0.42006215899384874, u'midtown', 343, 2), (0.41905978419640516, u'cinema', 10, 1), (0.41905978419640516, u'sports', 13, 1), (0.41905978419640516, u'main', 9, 1), (0.41905978419640516, u'profile', 4, 1), (0.41804362975511816, u'photography', 220, 2), (0.383224293337255, u'seeing', 8, 1), (0.383224293337255, u'mix', 6, 1), (0.3581970477838151, u'duck', 10, 1), (0.3581970477838151, u'events', 8, 1), (0.3581970477838151, u'vendors', 6, 1), (0.312771272649591, u'snack', 19, 1), (0.312771272649591, u'foot', 17, 1), (0.30279310656411385, u'arts', 24, 1), (0.30279310656411385, u'non', 10, 1), (0.28695173228265203, u'joy', 24, 1), (0.28695173228265203, u'news', 27, 1), (0.2650699754534338, u'beer', 38, 1), (0.2650699754534338, u'smile', 32, 1), (0.26087773109487916, u'outdoor', 48, 1), (0.25704484358604845, u'nights', 64, 1), (0.25026701779259936, u'photos', 86, 1), (0.24724797930973505, u'hotel', 115, 1), (0.24443647588626344, u'avenue', 47, 1), (0.23934588700996243, u'air', 73, 1), (0.23484671873236782, u'com', 81, 1), (0.23278351371152656, u'bit', 58, 1), (0.23278351371152656, u'truck', 66, 1), (0.22897464218793187, u'face', 64, 1), (0.22392725897047894, u'tonight', 106, 1), (0.22392725897047894, u'line', 84, 1), (0.2156294170196073, u'fashion', 347, 1), (0.2132705713137109, u'food', 165, 1), (0.21003107949692437, u'weather', 186, 1), (0.20804456358819232, u'photo', 283, 1)]
Plaza name : Linden Terrace
Comments for this Plaza : 46
[(1.2571793525892154, u'fort', 8, 3), (1.1812322182992825, u'wink', 3, 2), (0.678907332133451, u'terrace', 26, 2), (0.5906161091496412, u'skunk', 5, 1), (0.5217554621897583, u'gallery', 36, 2), (0.47869177401992485, u'check', 67, 2), (0.4765053580405043, u'prettiest', 3, 1), (0.46969343746473563, u'neighborhood', 49, 2), (0.4312588340392146, u'friend', 123, 2), (0.4243066556948569, u'picture', 148, 2), (0.41905978419640516, u'fucks', 4, 1), (0.41905978419640516, u'wears', 4, 1), (0.41905978419640516, u'promenade', 5, 1), (0.41608912717638463, u'trees', 239, 2), (0.40239085244606054, u'place', 359, 2), (0.383224293337255, u'twins', 6, 1), (0.383224293337255, u'guest', 6, 1), (0.3394536660667255, u'custom', 8, 1), (0.312771272649591, u'win', 9, 1), (0.30279310656411385, u'bride', 20, 1), (0.30279310656411385, u'football', 24, 1), (0.2942998296638024, u'fancy', 25, 1), (0.28695173228265203, u'surprise', 18, 1), (0.28050889359956055, u'secret', 24, 1), (0.2747964402379244, u'john', 23, 1), (0.2650699754534338, u'shoes', 26, 1), (0.2650699754534338, u'aka', 30, 1), (0.2650699754534338, u'uptown', 31, 1), (0.2650699754534338, u'bridge', 142, 1), (0.2650699754534338, u'forever', 19, 1), (0.25704484358604845, u'con', 43, 1), (0.253521478030654, u'someone', 47, 1), (0.25026701779259936, u'river', 85, 1), (0.24724797930973505, u'everything', 42, 1), (0.24724797930973505, u'think', 39, 1), (0.24180906749867698, u'sister', 54, 1), (0.23934588700996243, u'thanks', 82, 1), (0.23484671873236782, u'nice', 111, 1), (0.22553064631951622, u'years', 89, 1), (0.22392725897047894, u'spot', 118, 1), (0.22092804904991536, u'dog', 121, 1), (0.20902181487755908, u'girl', 208, 1), (0.1976111573464833, u'sandy', 314, 1)]
Plaza name : Duarte Square
Comments for this Plaza : 1
[(0.21817298312218497, u'square', 258, 1)]
Plaza name : Rutherford Place - Stuyvesant Square Historic District
Comments for this Plaza : 5
[(0.4765053580405043, u'digs', 3, 1), (0.22239482227710577, u'rainy', 103, 1), (0.22239482227710577, u'nature', 180, 1), (0.22092804904991536, u'week', 180, 1), (0.20804456358819232, u'trees', 239, 1)]
Plaza name : A. Philip Randolph Square
Comments for this Plaza : 6
[(0.28695173228265203, u'children', 16, 1), (0.26087773109487916, u'stuff', 30, 1), (0.20276467062514594, u'buildings', 353, 1)]
Plaza name : One East River Place
Comments for this Plaza : 40
[(1.2513350889629966, u'river', 85, 5), (0.5906161091496412, u'ivy', 5, 1), (0.4765053580405043, u'creep', 3, 1), (0.4765053580405043, u'digs', 3, 1), (0.41905978419640516, u'insert', 5, 1), (0.41608912717638463, u'man', 216, 2), (0.383224293337255, u'sup', 6, 1), (0.383224293337255, u'tides', 5, 1), (0.383224293337255, u'endless', 5, 1), (0.3581970477838151, u'shrimp', 8, 1), (0.3581970477838151, u'rice', 8, 1), (0.3581970477838151, u'lane', 7, 1), (0.3394536660667255, u'ran', 7, 1), (0.3394536660667255, u'homemade', 8, 1), (0.3394536660667255, u'gang', 8, 1), (0.3247342047137871, u'blizzard', 8, 1), (0.3247342047137871, u'min', 13, 1), (0.3247342047137871, u'brown', 10, 1), (0.3247342047137871, u'client', 11, 1), (0.30279310656411385, u'bride', 20, 1), (0.28695173228265203, u'story', 19, 1), (0.28050889359956055, u'bitch', 21, 1), (0.28050889359956055, u'dude', 34, 1), (0.26968351175578803, u'dad', 24, 1), (0.2650699754534338, u'moon', 72, 1), (0.2650699754534338, u'change', 21, 1), (0.24724797930973505, u'job', 49, 1), (0.24443647588626344, u'skyscraper', 109, 1), (0.22897464218793187, u'wall', 83, 1), (0.22392725897047894, u'tonight', 106, 1), (0.22392725897047894, u'spot', 118, 1), (0.22239482227710577, u'evening', 130, 1), (0.22092804904991536, u'year', 99, 1), (0.21952219380422947, u'awesome', 145, 1), (0.2132705713137109, u'food', 165, 1), (0.21215332784742846, u'side', 111, 1), (0.20902181487755908, u'photography', 220, 1), (0.1969458642201139, u'architecture', 409, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : Smoking Section
Comments for this Plaza : 3
[(0.41905978419640516, u'problem', 6, 1), (0.41905978419640516, u'kitchen', 4, 1), (0.3247342047137871, u'juice', 19, 1), (0.312771272649591, u'happens', 14, 1), (0.28050889359956055, u'candy', 23, 1), (0.2650699754534338, u'person', 46, 1), (0.26087773109487916, u'tourists', 48, 1), (0.2132705713137109, u'office', 275, 1)]
Plaza name : The Arthur Ross Terrace
Comments for this Plaza : 7
[(0.30279310656411385, u'museum', 55, 1), (0.28695173228265203, u'entrance', 20, 1), (0.28050889359956055, u'fountains', 54, 1), (0.2747964402379244, u'summertime', 36, 1), (0.253521478030654, u'history', 29, 1), (0.24724797930973505, u'hours', 54, 1), (0.20276467062514594, u'buildings', 353, 1)]
Plaza name : 34th Street
Comments for this Plaza : 638
[(8.243087118765548, u'state', 343, 36), (7.417439379292052, u'empire', 274, 30), (3.5583171564336924, u'subway', 206, 16), (3.0, u'wax', 3, 3), (1.8902797154723192, u'midtown', 343, 9), (1.8556136305680249, u'life', 285, 9), (1.803974499817846, u'sky', 427, 9), (1.6885938962748301, u'sunset', 352, 8), (1.635383050168431, u'rain', 235, 8), (1.628656867274321, u'lights', 274, 8), (1.50099870681658, u'streets', 136, 7), (1.430960168897377, u'home', 245, 7), (1.429516074121513, u'miracle', 5, 3), (1.4137861914835328, u'way', 247, 7), (1.357814664266902, u'pumpkins', 27, 4), (1.2265372876263232, u'happy', 220, 6), (1.2165880237508757, u'buildings', 353, 6), (1.1812322182992825, u'kebab', 3, 2), (1.174233593661839, u'mind', 82, 5), (1.1196362948523946, u'taxi', 118, 5), (1.0745911433514455, u'tennis', 11, 3), (1.0451090743877953, u'girl', 208, 5), (1.0451090743877953, u'photography', 220, 5), (1.0098472796310949, u'sun', 338, 5), (0.9880557867324165, u'sandy', 314, 5), (0.9777459035450538, u'avenue', 47, 4), (0.9752036175576129, u'work', 331, 5), (0.9742026141413613, u'jewelry', 17, 3), (0.9530107160810086, u'magnificent', 4, 2), (0.9530107160810086, u'thinks', 4, 2), (0.9383138179487729, u'interview', 24, 3), (0.9311340548461062, u'cab', 73, 4), (0.9311340548461062, u'truck', 66, 4), (0.9083793196923415, u'fireworks', 21, 3), (0.8895792891084231, u'evening', 130, 4), (0.8726919324887399, u'fun', 208, 4), (0.8625176680784292, u'fashion', 347, 4), (0.8415266807986816, u'pride', 22, 3), (0.8415266807986816, u'blocks', 20, 3), (0.8415266807986816, u'shine', 20, 3), (0.8381195683928103, u'diamond', 5, 2), (0.8381195683928103, u'rocking', 5, 2), (0.8321782543527693, u'man', 216, 4), (0.8243893207137731, u'good', 36, 3), (0.8176915250842155, u'world', 322, 4), (0.7952099263603014, u'feet', 60, 3), (0.7877834568804556, u'architecture', 409, 4), (0.7851844238535843, u'people', 414, 4), (0.7826331932846374, u'tomorrow', 43, 3), (0.76644858667451, u'amber', 6, 2)]
Plaza name : Ivy Tower Roof Top
Comments for this Plaza : 1
[(0.21817298312218497, u'party', 104, 1)]
Plaza name : 5 Avenue
Comments for this Plaza : 21
[(0.4888729517725269, u'avenue', 47, 2), (0.4765053580405043, u'grader', 6, 1), (0.3581970477838151, u'est', 11, 1), (0.3394536660667255, u'coke', 9, 1), (0.3247342047137871, u'cherry', 10, 1), (0.312771272649591, u'trash', 22, 1), (0.312771272649591, u'contrast', 12, 1), (0.30279310656411385, u'states', 15, 1), (0.28695173228265203, u'lines', 17, 1), (0.28050889359956055, u'shadows', 20, 1), (0.2650699754534338, u'team', 31, 1), (0.26087773109487916, u'boys', 81, 1), (0.24180906749867698, u'boy', 65, 1), (0.2370299675817646, u'design', 57, 1), (0.22392725897047894, u'taxi', 118, 1), (0.21215332784742846, u'side', 111, 1), (0.2035821084092901, u'lights', 274, 1), (0.1969458642201139, u'architecture', 409, 1)]
Plaza name : Broadway & 42nd
Comments for this Plaza : 4
[(0.3581970477838151, u'crossroads', 7, 1), (0.20442288127105387, u'world', 322, 1)]
Plaza name : South Street Seaport
Comments for this Plaza : 468
[(25.07379334486706, u'seaport', 77, 70), (8.694890923245264, u'sandy', 314, 44), (7.6870292881495805, u'south', 62, 29), (4.288548222364539, u'ship', 18, 9), (3.2725947468327745, u'hurricane', 128, 15), (3.0, u'kidney', 3, 3), (2.899366271054918, u'water', 295, 14), (2.362464436598565, u'lupus', 5, 4), (1.916121466686275, u'ships', 10, 5), (1.8766276358975458, u'sea', 31, 6), (1.7718483274489236, u'cleanup', 4, 3), (1.6885938962748301, u'walk', 212, 8), (1.6762391367856206, u'ferry', 46, 4), (1.6643565087055385, u'downtown', 175, 8), (1.5139655328205692, u'fireworks', 21, 5), (1.2989368188551484, u'boats', 23, 4), (1.2571793525892154, u'port', 6, 3), (1.2571793525892154, u'jets', 7, 3), (1.2571793525892154, u'boardwalk', 9, 3), (1.2513350889629966, u'river', 85, 5), (1.2221823794313171, u'follow', 102, 5), (1.2026496665452306, u'sky', 427, 6), (1.1812322182992825, u'volunteers', 3, 2), (1.1812322182992825, u'cannon', 3, 2), (1.1812322182992825, u'sticks', 3, 2), (1.1478069291306081, u'aftermath', 25, 4), (1.090864915610925, u'fun', 208, 5), (1.0602799018137352, u'feet', 60, 4), (1.0602799018137352, u'bridge', 142, 4), (1.0553711851717689, u'sunset', 352, 5), (1.0402228179409616, u'clouds', 252, 5), (1.0221144063552694, u'rain', 235, 5), (0.9742026141413613, u'beach', 16, 3), (0.9573835480398497, u'show', 171, 4), (0.9573835480398497, u'air', 73, 4), (0.9530107160810086, u'slick', 4, 2), (0.9530107160810086, u'winds', 4, 2), (0.9530107160810086, u'slip', 4, 2), (0.9530107160810086, u'foundation', 4, 2), (0.9530107160810086, u'seagull', 5, 2), (0.9530107160810086, u'evacuation', 4, 2), (0.9530107160810086, u'flood', 4, 2), (0.9530107160810086, u'basement', 4, 2), (0.8780887752169179, u'awesome', 145, 4), (0.8381195683928103, u'bread', 8, 2), (0.8381195683928103, u'sailor', 5, 2), (0.8381195683928103, u'glow', 5, 2), (0.8381195683928103, u'sail', 9, 2), (0.8381195683928103, u'cure', 5, 2), (0.8176915250842155, u'fall', 321, 4)]
Plaza name : Don't Forget Ed $1.5 Billion Installation
Comments for this Plaza : 4
[(1.1812322182992825, u'rate', 3, 2), (0.8381195683928103, u'economy', 5, 2), (0.2650699754534338, u'team', 31, 1), (0.25026701779259936, u'money', 37, 1), (0.2370299675817646, u'school', 63, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : Third Tree From Left
Comments for this Plaza : 1
[(0.3581970477838151, u'pure', 7, 1)]
Plaza name : 59 Maiden Lane Outdoor Courtyard/Plaza
Comments for this Plaza : 5
[(0.41905978419640516, u'vans', 5, 1), (0.41905978419640516, u'cop', 8, 1), (0.383224293337255, u'purchase', 7, 1), (0.3247342047137871, u'chicken', 10, 1), (0.30279310656411385, u'spots', 25, 1), (0.2942998296638024, u'death', 18, 1), (0.2942998296638024, u'district', 19, 1), (0.28695173228265203, u'news', 27, 1), (0.26087773109487916, u'cars', 33, 1), (0.25704484358604845, u'pigeons', 49, 1)]
Plaza name : Marsh & McLennan - Public Plaza
Comments for this Plaza : 8
[(1.61580552893079, u'plaza', 209, 7), (0.4765053580405043, u'daffodils', 3, 1), (0.45442179174538183, u'flowers', 161, 2), (0.4478545179409579, u'autumn', 119, 2), (0.40884576254210775, u'fall', 321, 2), (0.2747964402379244, u'area', 21, 1), (0.2747964402379244, u'purple', 28, 1), (0.2747964402379244, u'leaves', 36, 1), (0.26087773109487916, u'orange', 28, 1), (0.23934588700996243, u'parade', 56, 1), (0.23934588700996243, u'pink', 63, 1), (0.22239482227710577, u'reflection', 142, 1), (0.21817298312218497, u'colors', 90, 1), (0.2132705713137109, u'office', 275, 1), (0.20902181487755908, u'friends', 184, 1), (0.20804456358819232, u'trees', 239, 1)]
Plaza name : Public Atrium - 575 FIFTH AVE
Comments for this Plaza : 5
[(0.4765053580405043, u'seating', 3, 1), (0.383224293337255, u'doll', 5, 1), (0.3394536660667255, u'areas', 10, 1), (0.25026701779259936, u'money', 37, 1), (0.24724797930973505, u'jungle', 43, 1), (0.22239482227710577, u'beauty', 117, 1), (0.20119542622303027, u'place', 359, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : Arthur W. Strickler Triangle
Comments for this Plaza : 1
[(0.3581970477838151, u'streetlights', 7, 1)]
Plaza name : Paramount Plaza
Comments for this Plaza : 142
[(3.0, u'paramount', 3, 3), (2.7699523353099256, u'date', 106, 12), (1.5603257880921806, u'work', 331, 8), (1.090864915610925, u'fun', 208, 5), (1.0745911433514455, u'patch', 19, 3), (1.0745911433514455, u'desk', 13, 3), (1.0183609982001767, u'pumpkins', 27, 3), (0.9233174451033086, u'plaza', 209, 4), (0.8675062266953522, u'times', 203, 4), (0.860855196847956, u'pumpkin', 33, 3), (0.8078778237048758, u'way', 247, 4), (0.8017664443634871, u'sky', 427, 4), (0.6132686438131616, u'fall', 321, 3), (0.5906161091496412, u'carter', 10, 1), (0.5495928804758488, u'shots', 28, 2), (0.5005340355851987, u'class', 67, 2), (0.47869177401992485, u'show', 171, 2), (0.47869177401992485, u'yes', 81, 2), (0.4765053580405043, u'tail', 3, 1), (0.4765053580405043, u'juxtaposition', 3, 1), (0.4765053580405043, u'perspective', 4, 1), (0.4765053580405043, u'marketing', 6, 1), (0.4765053580405043, u'baseball', 4, 1), (0.4765053580405043, u'wallpaper', 30, 1), (0.4765053580405043, u'nickelodeon', 3, 1), (0.4765053580405043, u'arc', 8, 1), (0.4765053580405043, u'rhymes', 3, 1), (0.4765053580405043, u'enterprise', 12, 1), (0.46969343746473563, u'get', 84, 2), (0.4288567733761657, u'streets', 136, 2), (0.4265411426274218, u'office', 275, 2), (0.42214847406870754, u'sunset', 352, 2), (0.42006215899384874, u'midtown', 343, 2), (0.41905978419640516, u'pray', 4, 1), (0.41905978419640516, u'moss', 4, 1), (0.41905978419640516, u'fuel', 7, 1), (0.41905978419640516, u'gaga', 7, 1), (0.41905978419640516, u'crosswalk', 4, 1), (0.41905978419640516, u'addition', 6, 1), (0.41905978419640516, u'collar', 4, 1), (0.41905978419640516, u'zombies', 5, 1), (0.41905978419640516, u'nonsense', 4, 1), (0.41608912717638463, u'man', 216, 2), (0.41608912717638463, u'photo', 283, 2), (0.40884576254210775, u'world', 322, 2), (0.3938917284402278, u'architecture', 409, 2), (0.383224293337255, u'exercise', 6, 1), (0.383224293337255, u'goal', 5, 1), (0.383224293337255, u'coast', 11, 1), (0.383224293337255, u'disco', 7, 1)]
Plaza name : Belmont Public Plaza
Comments for this Plaza : 1
[(0.19970710216551604, u'spring', 247, 1)]
Plaza name : Taras Shevchenko Place
Comments for this Plaza : 1
[]
Plaza name : 6 chatham square
Comments for this Plaza : 2
[(0.22239482227710577, u'nature', 180, 1), (0.22092804904991536, u'dog', 121, 1), (0.22092804904991536, u'year', 99, 1), (0.2156294170196073, u'fashion', 347, 1), (0.2132705713137109, u'food', 165, 1), (0.20902181487755908, u'girl', 208, 1), (0.20196945592621895, u'sun', 338, 1), (0.20044161109087177, u'sky', 427, 1)]
Plaza name : Avenue of the Immigrants
Comments for this Plaza : 2
[(0.4765053580405043, u'debate', 3, 1)]
Plaza name : Chealse
Comments for this Plaza : 8
[(0.3394536660667255, u'voice', 8, 1), (0.3394536660667255, u'costume', 9, 1), (0.24724797930973505, u'hotel', 115, 1), (0.24724797930973505, u'east', 32, 1), (0.1976111573464833, u'sandy', 314, 1)]
Plaza name : Madison Ave Advertising Walk of Fame
Comments for this Plaza : 0
[]
Plaza name : Benches at Hester and Allen
Comments for this Plaza : 2
[(0.2370299675817646, u'design', 57, 1), (0.22721089587269092, u'tree', 148, 1), (0.22239482227710577, u'nature', 180, 1)]
Plaza name : Bethesda Fountain
Comments for this Plaza : 2518
[(12.402938292142466, u'lake', 23, 21), (11.885308360684457, u'angel', 53, 38), (9.940684357902576, u'water', 295, 48), (7.33902913514449, u'nature', 180, 33), (7.154800844486886, u'fall', 321, 35), (7.0, u'boathouse', 7, 7), (6.661448344410505, u'bubbles', 43, 22), (6.110165989201059, u'terrace', 26, 18), (5.598181474261973, u'autumn', 119, 25), (5.231081081798787, u'place', 359, 26), (4.810598666180923, u'sky', 427, 24), (4.765053580405043, u'turtle', 12, 10), (4.2214847406870755, u'walk', 212, 20), (4.190597841964052, u'waters', 13, 10), (4.134312764047489, u'arches', 8, 7), (4.073443992800707, u'angels', 21, 12), (4.0, u'harp', 4, 4), (3.461471710336291, u'perfect', 126, 14), (3.3524782735712413, u'pond', 28, 8), (3.328713017411077, u'photo', 283, 16), (3.328713017411077, u'afternoon', 200, 16), (3.2534712313037915, u'stroll', 78, 13), (3.1407376954143373, u'people', 414, 16), (3.135327223163386, u'friends', 184, 15), (3.1206684538228844, u'trees', 239, 15), (3.018811838274502, u'urban', 124, 14), (3.0, u'geese', 3, 3), (3.0, u'burden', 3, 3), (2.953080545748206, u'blink', 6, 5), (2.9110543666162263, u'spot', 118, 13), (2.859032148243026, u'wings', 8, 6), (2.6871271076457472, u'statue', 345, 12), (2.6180757974662194, u'part', 96, 12), (2.5961923281517088, u'spring', 247, 13), (2.5833139060560457, u'travel', 98, 11), (2.5328908444122455, u'sunset', 352, 12), (2.5026701779259932, u'favorite', 63, 10), (2.4965347630583077, u'man', 216, 12), (2.3825267902025216, u'musicians', 8, 5), (2.3478995798539124, u'wish', 61, 9), (2.2992399636531498, u'photography', 220, 11), (2.281693302275886, u'shoot', 57, 9), (2.27313943299651, u'boat', 16, 7), (2.1999282829763707, u'follow', 102, 9), (2.119551745948797, u'spots', 25, 7), (2.1003107949692437, u'weather', 186, 10), (2.044228812710539, u'happy', 220, 10), (2.044228812710539, u'world', 322, 10), (2.0367219964003533, u'canon', 19, 6), (1.9779838344778804, u'tourist', 85, 8)]
Plaza name : Lafayette Square
Comments for this Plaza : 1
[(0.7163940955676302, u'mouse', 10, 2), (0.44478964455421155, u'subway', 206, 2)]
Plaza name : Black Rock Plaza
Comments for this Plaza : 2
[(0.312771272649591, u'nails', 12, 1), (0.21003107949692437, u'midtown', 343, 1)]
Plaza name : 2025 Broadway
Comments for this Plaza : 1
[(0.22239482227710577, u'hello', 83, 1)]
Plaza name : pineapplesurprise 2010
Comments for this Plaza : 1
[]
Plaza name : Macy's Parade Celebrity Rehearsals
Comments for this Plaza : 9
[(0.41905978419640516, u'frog', 8, 1), (0.30279310656411385, u'display', 18, 1), (0.28050889359956055, u'shine', 20, 1), (0.24724797930973505, u'empire', 274, 1), (0.23484671873236782, u'window', 60, 1), (0.22897464218793187, u'state', 343, 1), (0.21952219380422947, u'days', 128, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : Broad Street Pedestrian Plaza
Comments for this Plaza : 1
[]
Plaza name : Federal Plaza
Comments for this Plaza : 13
[(0.4616587225516543, u'plaza', 209, 2), (0.42214847406870754, u'storm', 126, 2), (0.41905978419640516, u'prayer', 4, 1), (0.41905978419640516, u'faith', 4, 1), (0.3394536660667255, u'challenge', 8, 1), (0.3247342047137871, u'blizzard', 8, 1), (0.3247342047137871, u'cute', 17, 1), (0.28695173228265203, u'land', 19, 1), (0.26968351175578803, u'eat', 21, 1), (0.23082936127582715, u'winter', 129, 1), (0.22721089587269092, u'sign', 73, 1), (0.22392725897047894, u'line', 84, 1), (0.21003107949692437, u'weather', 186, 1), (0.20804456358819232, u'clouds', 252, 1), (0.20442288127105387, u'fall', 321, 1)]
Plaza name : Bolivar Plaza
Comments for this Plaza : 3
[(0.312771272649591, u'horse', 33, 1), (0.2942998296638024, u'relax', 39, 1), (0.26087773109487916, u'cars', 33, 1), (0.22239482227710577, u'evening', 130, 1), (0.21817298312218497, u'colors', 90, 1), (0.20804456358819232, u'photo', 283, 1)]
Plaza name : Syosset
Comments for this Plaza : 4
[(0.28050889359956055, u'puppy', 24, 1), (0.22897464218793187, u'car', 68, 1)]
Plaza name : Union Square Steps
Comments for this Plaza : 208
[(6.1711956591903325, u'union', 88, 22), (4.581632645565884, u'square', 258, 21), (1.53289717334902, u'sand', 11, 4), (1.0451090743877953, u'photography', 220, 5), (1.0435109243795166, u'crazy', 66, 4), (1.0402228179409616, u'man', 216, 5), (0.8828994889914074, u'trucks', 13, 3), (0.8415266807986816, u'gonna', 40, 3), (0.7711345307581454, u'nights', 64, 3), (0.750801053377798, u'color', 95, 3), (0.7163940955676302, u'chess', 40, 2), (0.6983505411345796, u'west', 97, 3), (0.6983505411345796, u'right', 58, 3), (0.678907332133451, u'hat', 8, 2), (0.6107463252278704, u'lights', 274, 3), (0.6013248332726153, u'sky', 427, 3), (0.5906161091496412, u'puppets', 3, 1), (0.5906161091496412, u'drug', 4, 1), (0.5906161091496412, u'grown', 3, 1), (0.5739034645653041, u'cat', 19, 2), (0.5495928804758488, u'yorkers', 33, 2), (0.5301399509068676, u'police', 30, 2), (0.5217554621897583, u'swag', 54, 2), (0.507042956061308, u'history', 29, 2), (0.48361813499735395, u'something', 78, 2), (0.4765053580405043, u'environment', 3, 1), (0.4765053580405043, u'travels', 3, 1), (0.4765053580405043, u'dragons', 3, 1), (0.4765053580405043, u'clothing', 4, 1), (0.4765053580405043, u'exploring', 4, 1), (0.4765053580405043, u'candles', 4, 1), (0.4765053580405043, u'grandmaster', 3, 1), (0.4765053580405043, u'clean', 3, 1), (0.4765053580405043, u'rapture', 3, 1), (0.4765053580405043, u'cartoon', 3, 1), (0.4765053580405043, u'judge', 3, 1), (0.4765053580405043, u'lesson', 4, 1), (0.4765053580405043, u'exposure', 3, 1), (0.4478545179409579, u'style', 140, 2), (0.4478545179409579, u'statue', 345, 2), (0.4337531133476761, u'guy', 138, 2), (0.4312588340392146, u'fashion', 347, 2), (0.4265411426274218, u'break', 180, 2), (0.41905978419640516, u'stick', 4, 1), (0.41905978419640516, u'pleasure', 5, 1), (0.41905978419640516, u'pray', 4, 1), (0.41905978419640516, u'farmer', 6, 1), (0.41905978419640516, u'mint', 9, 1), (0.41905978419640516, u'humans', 6, 1), (0.41905978419640516, u'stolen', 4, 1)]
Plaza name : Pulitzer Fountain
Comments for this Plaza : 99
[(3.8120428643240345, u'zodiac', 12, 8), (1.0183609982001767, u'heads', 10, 3), (0.8828994889914074, u'animals', 22, 3), (0.7045401561971034, u'apple', 90, 3), (0.6494684094275742, u'circle', 461, 2), (0.5005340355851987, u'tour', 46, 2), (0.47869177401992485, u'ave', 58, 2), (0.41905978419640516, u'fifth', 4, 1), (0.41905978419640516, u'newsies', 7, 1), (0.41905978419640516, u'appointment', 4, 1), (0.41905978419640516, u'macaroons', 4, 1), (0.383224293337255, u'sleepy', 10, 1), (0.383224293337255, u'pause', 8, 1), (0.383224293337255, u'exercise', 6, 1), (0.383224293337255, u'seeing', 8, 1), (0.383224293337255, u'performer', 8, 1), (0.3581970477838151, u'sex', 8, 1), (0.3581970477838151, u'figure', 9, 1), (0.3581970477838151, u'lens', 6, 1), (0.3394536660667255, u'sculptures', 9, 1), (0.3247342047137871, u'flow', 15, 1), (0.30279310656411385, u'present', 15, 1), (0.2942998296638024, u'shoe', 16, 1), (0.2942998296638024, u'magazine', 16, 1), (0.28695173228265203, u'star', 31, 1), (0.28695173228265203, u'tulips', 26, 1), (0.28050889359956055, u'detail', 21, 1), (0.28050889359956055, u'corner', 34, 1), (0.28050889359956055, u'fountains', 54, 1), (0.2747964402379244, u'degrees', 40, 1), (0.2747964402379244, u'purple', 28, 1), (0.2747964402379244, u'holidays', 46, 1), (0.2650699754534338, u'course', 28, 1), (0.2650699754534338, u'bro', 24, 1), (0.2650699754534338, u'wet', 28, 1), (0.25026701779259936, u'bus', 47, 1), (0.25026701779259936, u'playing', 54, 1), (0.24724797930973505, u'tourist', 85, 1), (0.24724797930973505, u'peace', 52, 1), (0.24443647588626344, u'avenue', 47, 1), (0.24443647588626344, u'town', 69, 1), (0.24180906749867698, u'action', 35, 1), (0.23934588700996243, u'birds', 66, 1), (0.23934588700996243, u'bike', 65, 1), (0.23934588700996243, u'parade', 56, 1), (0.2370299675817646, u'head', 44, 1), (0.23484671873236782, u'sculpture', 110, 1), (0.23278351371152656, u'west', 97, 1), (0.23082936127582715, u'date', 106, 1), (0.22897464218793187, u'ride', 85, 1)]
Plaza name : Titanic Memorial Park
Comments for this Plaza : 22
[(0.7163940955676302, u'seaport', 77, 2), (0.5885996593276048, u'memorial', 28, 2), (0.41905978419640516, u'grade', 4, 1), (0.41905978419640516, u'tours', 4, 1), (0.41905978419640516, u'speech', 4, 1), (0.41905978419640516, u'nose', 4, 1), (0.383224293337255, u'awards', 9, 1), (0.312771272649591, u'exhibit', 53, 1), (0.2650699754534338, u'south', 62, 1), (0.26087773109487916, u'stuff', 30, 1), (0.25026701779259936, u'cloud', 49, 1), (0.25026701779259936, u'river', 85, 1), (0.24724797930973505, u'think', 39, 1), (0.23934588700996243, u'bike', 65, 1), (0.2370299675817646, u'school', 63, 1), (0.22553064631951622, u'years', 89, 1), (0.22239482227710577, u'beauty', 117, 1), (0.22092804904991536, u'birthday', 99, 1), (0.21817298312218497, u'party', 104, 1), (0.21817298312218497, u'fun', 208, 1), (0.20804456358819232, u'trees', 239, 1), (0.20804456358819232, u'downtown', 175, 1), (0.20442288127105387, u'home', 245, 1), (0.19970710216551604, u'spring', 247, 1), (0.1976111573464833, u'sandy', 314, 1)]
Plaza name : The Buchanan Courtyard
Comments for this Plaza : 1
[(0.22553064631951622, u'girls', 90, 1)]
Plaza name : KV Courtyard
Comments for this Plaza : 1
[(0.28695173228265203, u'sick', 17, 1), (0.2650699754534338, u'hell', 31, 1)]
Plaza name : Korean Way
Comments for this Plaza : 2
[(0.2747964402379244, u'minute', 24, 1), (0.20442288127105387, u'home', 245, 1)]
Plaza name : Broadway Mall 79th Street
Comments for this Plaza : 19
[(0.41905978419640516, u'saint', 4, 1), (0.41905978419640516, u'put', 4, 1), (0.383224293337255, u'chalk', 7, 1), (0.3394536660667255, u'pick', 10, 1), (0.2942998296638024, u'caught', 15, 1), (0.2942998296638024, u'installation', 39, 1), (0.26968351175578803, u'eye', 32, 1), (0.26968351175578803, u'sidewalk', 35, 1), (0.2650699754534338, u'church', 19, 1), (0.2650699754534338, u'call', 32, 1), (0.2650699754534338, u'smile', 32, 1), (0.2650699754534338, u'bird', 65, 1), (0.25704484358604845, u'glass', 56, 1), (0.253521478030654, u'phone', 31, 1), (0.25026701779259936, u'dream', 31, 1), (0.23934588700996243, u'center', 444, 1), (0.22392725897047894, u'tonight', 106, 1), (0.20804456358819232, u'downtown', 175, 1), (0.20442288127105387, u'rain', 235, 1), (0.20442288127105387, u'home', 245, 1)]
Plaza name : Herald Square
Comments for this Plaza : 2415
[(30.172304462141174, u'herald', 78, 72), (22.668489576605257, u'state', 343, 99), (20.274334303398277, u'empire', 274, 82), (13.090378987331098, u'square', 258, 60), (10.711585054343143, u'midtown', 343, 51), (7.50801053377798, u'photos', 86, 30), (7.216506769926335, u'work', 331, 37), (6.674067602755467, u'people', 414, 34), (5.60636484250979, u'fashion', 347, 26), (5.115080912373433, u'subway', 206, 23), (4.4620876559149885, u'mind', 82, 19), (4.317007021581127, u'flowers', 161, 19), (4.088457625421078, u'home', 245, 20), (4.055293412502919, u'buildings', 353, 20), (4.0, u'ringers', 4, 4), (3.8680600597765125, u'lights', 274, 19), (3.7623926677960635, u'photography', 220, 18), (3.6354502066719414, u'way', 247, 18), (3.4334807507457223, u'sun', 338, 17), (3.2975572828550925, u'giants', 46, 12), (3.270766100336862, u'world', 322, 16), (3.1504661924538655, u'weather', 186, 15), (3.1206684538228844, u'clouds', 252, 15), (2.9541879633017083, u'architecture', 409, 15), (2.872150644119549, u'parade', 56, 12), (2.8720646376489, u'week', 180, 13), (2.861920337794754, u'rain', 235, 14), (2.861920337794754, u'fall', 321, 14), (2.7529371957185926, u'color', 95, 11), (2.7529371957185926, u'store', 51, 11), (2.743965081446599, u'sunset', 352, 13), (2.7197277724070856, u'train', 73, 11), (2.6871271076457472, u'taxi', 118, 12), (2.680330799709369, u'life', 285, 13), (2.6598997424854467, u'middle', 88, 11), (2.573140640256994, u'streets', 136, 12), (2.560618650826792, u'cab', 73, 11), (2.5592468557645307, u'office', 275, 12), (2.4223448525129108, u'umbrella', 25, 8), (2.41809067498677, u'let', 63, 10), (2.414744131846524, u'awesome', 145, 11), (2.3999028143440344, u'colors', 90, 11), (2.362464436598565, u'carnival', 6, 4), (2.3543986373104193, u'truth', 25, 8), (2.34597628445082, u'break', 180, 11), (2.29934576002353, u'bell', 11, 6), (2.2992399636531498, u'girl', 208, 11), (2.2884901994701154, u'man', 216, 11), (2.27313943299651, u'paradise', 16, 7), (2.2252318137876155, u'lot', 52, 9)]
Plaza name : W New York - Times Square
Comments for this Plaza : 795
[(18.65138387395007, u'times', 203, 86), (6.763362476787734, u'square', 258, 31), (6.718779349780432, u'sandy', 314, 34), (3.4907677299549595, u'hurricane', 128, 16), (3.053731626139352, u'lights', 274, 15), (2.524580042396045, u'election', 51, 9), (2.2252318137876155, u'hotel', 115, 9), (2.1107423703435377, u'storm', 126, 10), (1.563856363247955, u'screen', 31, 5), (1.456311945117346, u'photo', 283, 7), (1.4347586614132601, u'aftermath', 25, 5), (1.4221798054905874, u'power', 50, 6), (1.3632653752361454, u'weekend', 103, 6), (1.3255682942994922, u'birthday', 99, 6), (1.2571793525892154, u'las', 9, 3), (1.2571793525892154, u'stores', 6, 3), (1.2370757537120165, u'life', 285, 6), (1.174233593661839, u'nothing', 69, 5), (1.149672880011765, u'cowboy', 8, 3), (1.1276532315975811, u'baby', 103, 5), (1.1276532315975811, u'girls', 90, 5), (1.1119741113855288, u'hello', 83, 5), (1.0221144063552694, u'fall', 321, 5), (1.0221144063552694, u'world', 322, 5), (0.9814805298169804, u'people', 414, 5), (0.9777459035450538, u'dinner', 99, 4), (0.9742026141413613, u'sleep', 11, 3), (0.9530107160810086, u'fast', 5, 2), (0.9530107160810086, u'fin', 4, 2), (0.9530107160810086, u'elections', 9, 2), (0.9530107160810086, u'advertisements', 4, 2), (0.9530107160810086, u'costumes', 5, 2), (0.9530107160810086, u'jumbo', 4, 2), (0.9530107160810086, u'request', 4, 2), (0.9530107160810086, u'coverage', 4, 2), (0.9393868749294713, u'apple', 90, 4), (0.8780887752169179, u'awesome', 145, 4), (0.8381195683928103, u'tunnels', 5, 2), (0.8381195683928103, u'shops', 39, 2), (0.8360872595102363, u'girl', 208, 4), (0.8243893207137731, u'yesterday', 49, 3), (0.8176915250842155, u'happy', 220, 4), (0.8176915250842155, u'rain', 235, 4), (0.8176915250842155, u'home', 245, 4), (0.8047817048921211, u'place', 359, 4), (0.7826331932846374, u'tomorrow', 43, 3), (0.7826331932846374, u'breakfast', 43, 3), (0.7711345307581454, u'con', 43, 3), (0.750801053377798, u'trip', 68, 3), (0.750801053377798, u'tour', 46, 3)]
Plaza name : 388 Greenwich St Courtyard
Comments for this Plaza : 3
[(0.41905978419640516, u'var', 5, 1), (0.30279310656411385, u'breeze', 21, 1), (0.20804456358819232, u'trees', 239, 1), (0.20276467062514594, u'buildings', 353, 1)]
Plaza name : 1114 Sixth Avenue
Comments for this Plaza : 1
[(0.3247342047137871, u'min', 13, 1), (0.30279310656411385, u'silver', 15, 1), (0.28050889359956055, u'stuck', 19, 1), (0.22239482227710577, u'shot', 81, 1), (0.21687655667383804, u'times', 203, 1), (0.20442288127105387, u'world', 322, 1)]
Plaza name : Greenacre Park
Comments for this Plaza : 64
[(1.357814664266902, u'waterfall', 12, 4), (1.0501553974846218, u'midtown', 343, 5), (0.8381195683928103, u'pocket', 5, 2), (0.8381195683928103, u'alright', 9, 2), (0.76644858667451, u'serene', 7, 2), (0.7417439379292052, u'peace', 52, 3), (0.678907332133451, u'oasis', 19, 2), (0.6494684094275742, u'gem', 11, 2), (0.5851221705345677, u'work', 331, 3), (0.5739034645653041, u'amazing', 25, 2), (0.5495928804758488, u'enjoy', 26, 2), (0.4944959586194701, u'book', 58, 2), (0.4765053580405043, u'imagine', 4, 1), (0.4765053580405043, u'delight', 3, 1), (0.46969343746473563, u'neighborhood', 49, 2), (0.4312588340392146, u'urban', 124, 2), (0.41905978419640516, u'photographs', 4, 1), (0.41905978419640516, u'discovery', 6, 1), (0.41905978419640516, u'midst', 4, 1), (0.40239085244606054, u'place', 359, 2), (0.383224293337255, u'serenity', 5, 1), (0.3581970477838151, u'seats', 10, 1), (0.3581970477838151, u'bakery', 9, 1), (0.3581970477838151, u'points', 7, 1), (0.3394536660667255, u'meetings', 10, 1), (0.3247342047137871, u'flow', 15, 1), (0.312771272649591, u'list', 21, 1), (0.312771272649591, u'seat', 23, 1), (0.30279310656411385, u'honor', 12, 1), (0.30279310656411385, u'bagel', 17, 1), (0.2942998296638024, u'relax', 39, 1), (0.28695173228265203, u'surprise', 18, 1), (0.2747964402379244, u'yummy', 32, 1), (0.2747964402379244, u'reading', 63, 1), (0.2747964402379244, u'everyday', 25, 1), (0.26968351175578803, u'kinda', 27, 1), (0.2650699754534338, u'hell', 31, 1), (0.2650699754534338, u'play', 24, 1), (0.2650699754534338, u'mini', 30, 1), (0.26087773109487916, u'crazy', 66, 1), (0.253521478030654, u'camera', 44, 1), (0.253521478030654, u'calm', 30, 1), (0.25026701779259936, u'garden', 56, 1), (0.25026701779259936, u'see', 43, 1), (0.25026701779259936, u'trip', 68, 1), (0.24724797930973505, u'east', 32, 1), (0.24724797930973505, u'pictures', 43, 1), (0.24180906749867698, u'holiday', 138, 1), (0.2370299675817646, u'looks', 75, 1), (0.23484671873236782, u'mind', 82, 1)]
Plaza name : Central Park - Girls' Gate
Comments for this Plaza : 21
[(0.5906161091496412, u'turtles', 4, 1), (0.41905978419640516, u'shoulders', 4, 1), (0.41905978419640516, u'insert', 5, 1), (0.383224293337255, u'smell', 12, 1), (0.3581970477838151, u'million', 6, 1), (0.3394536660667255, u'garbage', 7, 1), (0.3394536660667255, u'weight', 9, 1), (0.3247342047137871, u'juice', 19, 1), (0.3247342047137871, u'mile', 11, 1), (0.28050889359956055, u'take', 29, 1), (0.28050889359956055, u'dope', 34, 1), (0.26968351175578803, u'sidewalk', 35, 1), (0.2370299675817646, u'head', 44, 1), (0.23484671873236782, u'get', 84, 1), (0.22897464218793187, u'car', 68, 1), (0.22553064631951622, u'girls', 90, 1), (0.21107423703435377, u'snow', 158, 1)]
Plaza name : Public Space - Courtyard Behind Barclays
Comments for this Plaza : 1
[]
Plaza name : Duarte Square
Comments for this Plaza : 56
[(2.095298920982026, u'protests', 11, 5), (1.6762391367856206, u'puppet', 8, 4), (1.4025444679978027, u'protest', 33, 5), (0.5906161091496412, u'capitalism', 3, 1), (0.5906161091496412, u'wildlife', 3, 1), (0.5906161091496412, u'seeds', 3, 1), (0.5906161091496412, u'schnitzel', 3, 1), (0.5495928804758488, u'liberty', 299, 2), (0.5140896871720969, u'pigeons', 49, 2), (0.4765053580405043, u'planters', 4, 1), (0.4765053580405043, u'score', 3, 1), (0.4740599351635292, u'portrait', 41, 2), (0.4655670274230531, u'truck', 66, 2), (0.43634596624436994, u'square', 258, 2), (0.41905978419640516, u'mask', 4, 1), (0.41905978419640516, u'tents', 10, 1), (0.41905978419640516, u'alley', 9, 1), (0.41905978419640516, u'speech', 4, 1), (0.41905978419640516, u'economy', 5, 1), (0.41608912717638463, u'man', 216, 2), (0.383224293337255, u'know', 7, 1), (0.383224293337255, u'shades', 10, 1), (0.3394536660667255, u'monster', 7, 1), (0.3247342047137871, u'bright', 10, 1), (0.3247342047137871, u'balloons', 12, 1), (0.312771272649591, u'grounds', 11, 1), (0.30279310656411385, u'lobby', 21, 1), (0.2942998296638024, u'march', 12, 1), (0.2942998296638024, u'trucks', 13, 1), (0.2942998296638024, u'flight', 15, 1), (0.2942998296638024, u'sunglasses', 23, 1), (0.26087773109487916, u'jazz', 62, 1), (0.26087773109487916, u'station', 44, 1), (0.25704484358604845, u'con', 43, 1), (0.25026701779259936, u'band', 40, 1), (0.24724797930973505, u'woman', 44, 1), (0.24724797930973505, u'job', 49, 1), (0.23934588700996243, u'parade', 56, 1), (0.23934588700996243, u'air', 73, 1), (0.2370299675817646, u'school', 63, 1), (0.2370299675817646, u'light', 67, 1), (0.23278351371152656, u'west', 97, 1), (0.22721089587269092, u'tree', 148, 1), (0.2132705713137109, u'food', 165, 1), (0.21107423703435377, u'sunset', 352, 1), (0.2061792922853361, u'life', 285, 1), (0.2035821084092901, u'lights', 274, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : us olympic committee - 100 days to london
Comments for this Plaza : 2
[(0.7952099263603014, u'team', 31, 3), (0.41905978419640516, u'join', 8, 1), (0.28695173228265203, u'road', 20, 1), (0.21687655667383804, u'times', 203, 1)]
Plaza name : Bennett Park Manhattan
Comments for this Plaza : 3
[(0.40088322218174355, u'sky', 427, 2), (0.20804456358819232, u'clouds', 252, 1)]
Plaza name : Waterside Plaza
Comments for this Plaza : 167
[(6.0, u'waterside', 6, 6), (1.325349877267169, u'bridge', 142, 5), (1.0010680711703974, u'river', 85, 4), (0.9393868749294713, u'travel', 98, 4), (0.8381195683928103, u'apartments', 6, 2), (0.8381195683928103, u'decor', 5, 2), (0.7163940955676302, u'living', 89, 2), (0.6494684094275742, u'apt', 13, 2), (0.625542545299182, u'wonder', 20, 2), (0.6241336907645769, u'clouds', 252, 3), (0.6132686438131616, u'home', 245, 3), (0.5906161091496412, u'sailors', 3, 1), (0.5739034645653041, u'queens', 19, 2), (0.5393670235115761, u'beat', 21, 2), (0.5217554621897583, u'swag', 54, 2), (0.5140896871720969, u'sunrise', 33, 2), (0.4944959586194701, u'kind', 48, 2), (0.4944959586194701, u'room', 185, 2), (0.4765053580405043, u'audience', 4, 1), (0.4765053580405043, u'thrift', 3, 1), (0.4765053580405043, u'worst', 3, 1), (0.4765053580405043, u'flooding', 3, 1), (0.4765053580405043, u'mobile', 6, 1), (0.4740599351635292, u'school', 63, 2), (0.46969343746473563, u'nice', 111, 2), (0.45442179174538183, u'flowers', 161, 2), (0.44185609809983073, u'year', 99, 2), (0.42214847406870754, u'sunset', 352, 2), (0.41905978419640516, u'equality', 4, 1), (0.41905978419640516, u'teacher', 4, 1), (0.41905978419640516, u'reindeer', 4, 1), (0.41905978419640516, u'complain', 5, 1), (0.41419518157927404, u'water', 295, 2), (0.40884576254210775, u'happy', 220, 2), (0.4039389118524379, u'sun', 338, 2), (0.40088322218174355, u'sky', 427, 2), (0.3952223146929666, u'sandy', 314, 2), (0.3938917284402278, u'architecture', 409, 2), (0.383224293337255, u'indoor', 7, 1), (0.383224293337255, u'midday', 9, 1), (0.383224293337255, u'entire', 6, 1), (0.383224293337255, u'ever', 6, 1), (0.3581970477838151, u'deck', 7, 1), (0.3581970477838151, u'duck', 10, 1), (0.3581970477838151, u'mama', 12, 1), (0.3581970477838151, u'beef', 6, 1), (0.3581970477838151, u'towards', 9, 1), (0.3394536660667255, u'gang', 8, 1), (0.3394536660667255, u'tiffany', 7, 1), (0.3247342047137871, u'courtesy', 13, 1)]
Plaza name : Summer Soltice Yoga 6/20
Comments for this Plaza : 3
[(0.312771272649591, u'yoga', 188, 1), (0.26087773109487916, u'madness', 24, 1), (0.23934588700996243, u'ass', 57, 1), (0.23484671873236782, u'mind', 82, 1), (0.21687655667383804, u'times', 203, 1)]
Plaza name : Public Space
Comments for this Plaza : 1
[]
Plaza name : Behind the Eventi
Comments for this Plaza : 4
[(0.4765053580405043, u'turf', 3, 1), (0.3581970477838151, u'match', 6, 1), (0.312771272649591, u'interview', 24, 1), (0.30279310656411385, u'japan', 11, 1), (0.25704484358604845, u'men', 49, 1), (0.22897464218793187, u'face', 64, 1), (0.20442288127105387, u'home', 245, 1)]
Plaza name : New York Plaza
Comments for this Plaza : 2
[(0.4616587225516543, u'plaza', 209, 2), (0.2942998296638024, u'busy', 17, 1)]
Plaza name : Red Stairs Times Square
Comments for this Plaza : 18
[(0.7952099263603014, u'stairs', 38, 3), (0.6506296700215141, u'times', 203, 3), (0.39259221192679217, u'people', 414, 2), (0.3581970477838151, u'panda', 6, 1), (0.28695173228265203, u'steps', 94, 1), (0.2747964402379244, u'nightlife', 27, 1), (0.26968351175578803, u'neon', 23, 1), (0.2650699754534338, u'signs', 24, 1), (0.2650699754534338, u'memories', 22, 1), (0.23484671873236782, u'travel', 98, 1), (0.21817298312218497, u'hurricane', 128, 1), (0.1976111573464833, u'sandy', 314, 1)]
Plaza name : Awesome seating area btwn 52nd and 53rd
Comments for this Plaza : 0
[]
Plaza name : The National Debt Clock
Comments for this Plaza : 14
[(0.4765053580405043, u'debt', 3, 1), (0.41905978419640516, u'bummer', 4, 1), (0.41905978419640516, u'mall', 10, 1), (0.3581970477838151, u'makes', 8, 1), (0.3394536660667255, u'shopping', 11, 1), (0.312771272649591, u'bill', 16, 1), (0.30279310656411385, u'clock', 16, 1), (0.28050889359956055, u'pride', 22, 1), (0.2747964402379244, u'good', 36, 1), (0.2650699754534338, u'feel', 23, 1), (0.24724797930973505, u'hotel', 115, 1), (0.23934588700996243, u'yes', 81, 1)]
Plaza name : Chesapeake Roof Terrace
Comments for this Plaza : 1
[]
Plaza name : Winston Churchill Square
Comments for this Plaza : 27
[(0.8381195683928103, u'breath', 5, 2), (0.76644858667451, u'waste', 6, 2), (0.5393670235115761, u'parks', 81, 2), (0.4765053580405043, u'thinking', 3, 1), (0.45106129263903244, u'years', 89, 2), (0.383224293337255, u'jam', 10, 1), (0.383224293337255, u'benches', 6, 1), (0.3581970477838151, u'rats', 7, 1), (0.3581970477838151, u'vendors', 6, 1), (0.3581970477838151, u'balance', 6, 1), (0.3394536660667255, u'crew', 12, 1), (0.3247342047137871, u'edit', 12, 1), (0.312771272649591, u'round', 26, 1), (0.2942998296638024, u'death', 18, 1), (0.28050889359956055, u'miles', 24, 1), (0.2747964402379244, u'outfit', 25, 1), (0.26968351175578803, u'village', 86, 1), (0.26968351175578803, u'photographer', 39, 1), (0.2650699754534338, u'church', 19, 1), (0.23934588700996243, u'ass', 57, 1), (0.23278351371152656, u'west', 97, 1), (0.23082936127582715, u'winter', 129, 1), (0.22392725897047894, u'spot', 118, 1), (0.21817298312218497, u'square', 258, 1), (0.20804456358819232, u'afternoon', 200, 1), (0.2061792922853361, u'life', 285, 1), (0.1969458642201139, u'architecture', 409, 1)]
Plaza name : Times Square New York
Comments for this Plaza : 34
[(1.5181358967168663, u'times', 203, 7), (0.5906161091496412, u'marquee', 3, 1), (0.4765053580405043, u'true', 3, 1), (0.4765053580405043, u'debut', 3, 1), (0.41905978419640516, u'shines', 5, 1), (0.41905978419640516, u'pack', 4, 1), (0.40884576254210775, u'rain', 235, 2), (0.383224293337255, u'twitter', 6, 1), (0.28695173228265203, u'amazing', 25, 1), (0.28695173228265203, u'hand', 28, 1), (0.28050889359956055, u'shine', 20, 1), (0.2747964402379244, u'skyscrapers', 67, 1), (0.26087773109487916, u'wish', 61, 1), (0.25704484358604845, u'men', 49, 1), (0.25026701779259936, u'money', 37, 1), (0.24443647588626344, u'things', 106, 1), (0.23934588700996243, u'come', 48, 1), (0.22897464218793187, u'face', 64, 1), (0.22897464218793187, u'ride', 85, 1), (0.22392725897047894, u'taxi', 118, 1), (0.22392725897047894, u'line', 84, 1), (0.22092804904991536, u'birthday', 99, 1), (0.21817298312218497, u'square', 258, 1), (0.2156294170196073, u'urban', 124, 1), (0.20442288127105387, u'happy', 220, 1), (0.20442288127105387, u'world', 322, 1), (0.2035821084092901, u'lights', 274, 1)]
Plaza name : Battery Park
Comments for this Plaza : 3750
[(89.9074589937376, u'battery', 259, 251), (76.39341038614297, u'liberty', 299, 278), (30.901961737926094, u'statue', 345, 138), (24.695685733019392, u'sunset', 352, 117), (19.270560370030147, u'lady', 120, 77), (18.89971549278852, u'sphere', 33, 32), (16.762391367856207, u'ferry', 46, 40), (15.262507621547995, u'trade', 65, 47), (11.85854012452696, u'photo', 283, 57), (11.183269902640399, u'water', 295, 54), (10.502411708163386, u'sun', 338, 52), (10.22252216563446, u'sky', 427, 51), (9.812298301010586, u'world', 322, 48), (9.153960797880462, u'downtown', 175, 44), (9.053601802769583, u'turkey', 21, 19), (8.976284595185938, u'island', 61, 32), (8.529827107115885, u'clouds', 252, 41), (8.299668608552299, u'sandy', 314, 42), (7.89841427132876, u'center', 444, 33), (7.6870292881495805, u'freedom', 58, 29), (7.2812615734078445, u'squirrel', 41, 19), (7.25774351598538, u'river', 85, 29), (7.124016331338888, u'harbor', 20, 17), (6.4796762612043315, u'photography', 220, 31), (6.411289981262093, u'skyline', 158, 28), (6.0046602014818555, u'nature', 180, 27), (5.731152764541042, u'jersey', 36, 16), (5.692587072938486, u'people', 414, 29), (5.217554621897583, u'background', 49, 20), (5.192207565504436, u'tourist', 85, 21), (5.0, u'immigrants', 5, 5), (5.0, u'attacks', 5, 5), (4.879526540490855, u'picture', 148, 23), (4.854707451790137, u'walk', 212, 23), (4.816908082582426, u'tower', 95, 19), (4.799805628688069, u'hurricane', 128, 22), (4.785024962528423, u'trees', 239, 23), (4.765053580405043, u'enterprise', 12, 10), (4.535944430277394, u'life', 285, 22), (4.414497444957036, u'memorial', 28, 15), (4.2272409371826205, u'sculpture', 110, 18), (4.193849145475837, u'spring', 247, 21), (4.134312764047489, u'squirrels', 17, 7), (4.055293412502919, u'buildings', 353, 20), (4.017324251957128, u'distance', 28, 14), (4.00427228468159, u'photos', 86, 16), (4.0, u'seagulls', 4, 4), (4.0, u'cruises', 4, 4), (3.9760496318015073, u'bird', 65, 15), (3.910983614180215, u'miss', 89, 16)]
Plaza name : Cooper Square
Comments for this Plaza : 239
[(9.19738304009412, u'cooper', 35, 24), (2.7572420990815942, u'architecture', 409, 14), (1.9635568480996646, u'square', 258, 9), (1.53289717334902, u'cube', 89, 4), (1.4025444679978027, u'union', 88, 5), (1.149672880011765, u'cactus', 17, 3), (1.0183609982001767, u'peter', 11, 3), (0.9672362699947079, u'graffiti', 65, 4), (0.8243893207137731, u'boss', 23, 3), (0.8110586825005838, u'buildings', 353, 4), (0.809050535267364, u'village', 86, 3), (0.7904446293859332, u'sandy', 314, 4), (0.76644858667451, u'ties', 30, 2), (0.7163940955676302, u'tracks', 8, 2), (0.6717817769114368, u'statue', 345, 3), (0.6671844668313173, u'reflection', 142, 3), (0.6494684094275742, u'bldg', 11, 2), (0.646888251058822, u'friend', 123, 3), (0.6332227111030614, u'snow', 158, 3), (0.6241336907645769, u'downtown', 175, 3), (0.6055862131282277, u'college', 17, 2), (0.6013248332726153, u'sky', 427, 3), (0.5906161091496412, u'precinct', 3, 1), (0.5885996593276048, u'project', 27, 2), (0.5851221705345677, u'work', 331, 3), (0.5739034645653041, u'future', 18, 2), (0.5495928804758488, u'yesterday', 49, 2), (0.5393670235115761, u'vacation', 38, 2), (0.5301399509068676, u'shoes', 26, 2), (0.5301399509068676, u'rainbow', 42, 2), (0.4944959586194701, u'kind', 48, 2), (0.4888729517725269, u'miss', 89, 2), (0.47869177401992485, u'air', 73, 2), (0.4765053580405043, u'shares', 3, 1), (0.4765053580405043, u'crush', 3, 1), (0.4765053580405043, u'blur', 3, 1), (0.4765053580405043, u'bond', 3, 1), (0.4765053580405043, u'copper', 3, 1), (0.4765053580405043, u'rad', 3, 1), (0.4765053580405043, u'assholes', 3, 1), (0.4765053580405043, u'proposal', 6, 1), (0.4765053580405043, u'surreal', 4, 1), (0.4765053580405043, u'railroad', 4, 1), (0.4765053580405043, u'flood', 4, 1), (0.4740599351635292, u'school', 63, 2), (0.4740599351635292, u'design', 57, 2), (0.4740599351635292, u'looks', 75, 2), (0.45442179174538183, u'tree', 148, 2), (0.4478545179409579, u'tonight', 106, 2), (0.4478545179409579, u'taxi', 118, 2)]
Plaza name : 1500 B'way Offices
Comments for this Plaza : 27
[(0.4765053580405043, u'swift', 17, 1), (0.4337531133476761, u'times', 203, 2), (0.42006215899384874, u'midtown', 343, 2), (0.41905978419640516, u'curves', 4, 1), (0.383224293337255, u'papa', 5, 1), (0.3581970477838151, u'heatwave', 6, 1), (0.3581970477838151, u'age', 6, 1), (0.3394536660667255, u'theater', 11, 1), (0.2942998296638024, u'district', 19, 1), (0.28695173228265203, u'cake', 17, 1), (0.2747964402379244, u'john', 23, 1), (0.26968351175578803, u'mother', 29, 1), (0.2650699754534338, u'feet', 60, 1), (0.25704484358604845, u'dreams', 33, 1), (0.24443647588626344, u'floor', 54, 1), (0.23934588700996243, u'hour', 70, 1), (0.22239482227710577, u'subway', 206, 1), (0.22092804904991536, u'birthday', 99, 1), (0.2132705713137109, u'office', 275, 1), (0.20442288127105387, u'happy', 220, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : The Plaza Hotel Fountain
Comments for this Plaza : 68
[(1.8466348902066172, u'plaza', 209, 8), (1.7307358551681455, u'hotel', 115, 7), (0.5906161091496412, u'ring', 3, 1), (0.4765053580405043, u'charge', 3, 1), (0.4765053580405043, u'thats', 4, 1), (0.4765053580405043, u'zodiac', 12, 1), (0.42006215899384874, u'midtown', 343, 2), (0.41905978419640516, u'someday', 5, 1), (0.41905978419640516, u'palm', 9, 1), (0.41905978419640516, u'gig', 6, 1), (0.41905978419640516, u'put', 4, 1), (0.41905978419640516, u'amigos', 4, 1), (0.41905978419640516, u'court', 11, 1), (0.41905978419640516, u'profile', 4, 1), (0.383224293337255, u'marathon', 21, 1), (0.3581970477838151, u'pose', 10, 1), (0.3581970477838151, u'wants', 8, 1), (0.3394536660667255, u'peter', 11, 1), (0.3394536660667255, u'card', 8, 1), (0.3394536660667255, u'heads', 10, 1), (0.3394536660667255, u'dos', 10, 1), (0.3247342047137871, u'training', 11, 1), (0.312771272649591, u'cities', 14, 1), (0.312771272649591, u'ask', 13, 1), (0.2942998296638024, u'artist', 33, 1), (0.2942998296638024, u'animals', 22, 1), (0.28695173228265203, u'please', 30, 1), (0.28695173228265203, u'surprise', 18, 1), (0.28050889359956055, u'father', 16, 1), (0.2747964402379244, u'series', 46, 1), (0.2747964402379244, u'shots', 28, 1), (0.2747964402379244, u'lives', 25, 1), (0.26968351175578803, u'tea', 44, 1), (0.2650699754534338, u'easter', 27, 1), (0.25704484358604845, u'dreams', 33, 1), (0.25704484358604845, u'cityscape', 54, 1), (0.25704484358604845, u'con', 43, 1), (0.253521478030654, u'heat', 43, 1), (0.25026701779259936, u'stroll', 78, 1), (0.24724797930973505, u'room', 185, 1), (0.24724797930973505, u'model', 37, 1), (0.24443647588626344, u'floor', 54, 1), (0.24180906749867698, u'kids', 72, 1), (0.23934588700996243, u'ave', 58, 1), (0.23484671873236782, u'apple', 90, 1), (0.23484671873236782, u'mind', 82, 1), (0.23082936127582715, u'front', 86, 1), (0.22897464218793187, u'car', 68, 1), (0.22721089587269092, u'weekend', 103, 1), (0.22392725897047894, u'statue', 345, 1)]
Plaza name : Gould Plaza
Comments for this Plaza : 16
[(0.4765053580405043, u'cones', 3, 1), (0.4765053580405043, u'pirate', 3, 1), (0.4265411426274218, u'food', 165, 2), (0.41905978419640516, u'sauce', 5, 1), (0.41905978419640516, u'triangle', 5, 1), (0.41905978419640516, u'hawk', 4, 1), (0.41905978419640516, u'graduation', 4, 1), (0.383224293337255, u'born', 6, 1), (0.383224293337255, u'foodie', 5, 1), (0.383224293337255, u'students', 5, 1), (0.3581970477838151, u'panda', 6, 1), (0.3581970477838151, u'silence', 6, 1), (0.3247342047137871, u'catch', 11, 1), (0.3247342047137871, u'fries', 11, 1), (0.312771272649591, u'row', 11, 1), (0.2942998296638024, u'fan', 16, 1), (0.28695173228265203, u'welcome', 23, 1), (0.28050889359956055, u'block', 25, 1), (0.26087773109487916, u'swag', 54, 1), (0.24724797930973505, u'fire', 56, 1), (0.23934588700996243, u'yes', 81, 1), (0.23934588700996243, u'birds', 66, 1), (0.23278351371152656, u'truck', 66, 1), (0.23082936127582715, u'front', 86, 1), (0.23082936127582715, u'plaza', 209, 1), (0.22092804904991536, u'week', 180, 1), (0.21817298312218497, u'party', 104, 1), (0.21107423703435377, u'snow', 158, 1)]
Plaza name : The Atrium Courtyard
Comments for this Plaza : 3
[(0.26087773109487916, u'jazz', 62, 1), (0.25026701779259936, u'band', 40, 1), (0.24180906749867698, u'action', 35, 1)]
Plaza name : St. Andrew's Plaza
Comments for this Plaza : 14
[(0.5301399509068676, u'church', 19, 2), (0.4765053580405043, u'arc', 8, 1), (0.4765053580405043, u'arch', 5, 1), (0.41905978419640516, u'cheap', 5, 1), (0.41608912717638463, u'trees', 239, 2), (0.4055293412502919, u'buildings', 353, 2), (0.40239085244606054, u'place', 359, 2), (0.3938917284402278, u'architecture', 409, 2), (0.383224293337255, u'vegan', 7, 1), (0.383224293337255, u'triumph', 6, 1), (0.3394536660667255, u'reasons', 9, 1), (0.28695173228265203, u'yum', 33, 1), (0.2747964402379244, u'door', 26, 1), (0.25704484358604845, u'glass', 56, 1), (0.25026701779259936, u'garden', 56, 1), (0.24443647588626344, u'skyscraper', 109, 1), (0.20804456358819232, u'downtown', 175, 1), (0.20044161109087177, u'sky', 427, 1)]
Plaza name : Schwartz Plaza
Comments for this Plaza : 1
[]
Plaza name : David Beckham Statue
Comments for this Plaza : 2
[(0.4765053580405043, u'checks', 3, 1), (0.3394536660667255, u'shiny', 9, 1), (0.23934588700996243, u'yes', 81, 1), (0.22392725897047894, u'statue', 345, 1)]
Plaza name : Macri Triangle
Comments for this Plaza : 70
[(2.362464436598565, u'pug', 5, 4), (0.8381195683928103, u'triangle', 5, 2), (0.76644858667451, u'momma', 8, 2), (0.5906161091496412, u'mention', 3, 1), (0.5906161091496412, u'creature', 3, 1), (0.5610177871991211, u'puppy', 24, 2), (0.5301399509068676, u'hood', 33, 2), (0.4765053580405043, u'blast', 3, 1), (0.4765053580405043, u'pepper', 3, 1), (0.4765053580405043, u'confusion', 3, 1), (0.4765053580405043, u'swing', 4, 1), (0.4765053580405043, u'lamps', 10, 1), (0.4765053580405043, u'ponytail', 3, 1), (0.4740599351635292, u'head', 44, 2), (0.44185609809983073, u'birthday', 99, 2), (0.41905978419640516, u'hipsters', 7, 1), (0.41905978419640516, u'ways', 5, 1), (0.41905978419640516, u'stick', 4, 1), (0.40884576254210775, u'happy', 220, 2), (0.383224293337255, u'snake', 12, 1), (0.383224293337255, u'ginger', 6, 1), (0.383224293337255, u'resist', 8, 1), (0.383224293337255, u'spray', 5, 1), (0.383224293337255, u'bum', 8, 1), (0.383224293337255, u'tip', 8, 1), (0.383224293337255, u'blunt', 5, 1), (0.3581970477838151, u'bull', 8, 1), (0.3581970477838151, u'patch', 19, 1), (0.3394536660667255, u'princess', 8, 1), (0.3247342047137871, u'pup', 13, 1), (0.3247342047137871, u'damn', 16, 1), (0.3247342047137871, u'brown', 10, 1), (0.3247342047137871, u'ready', 11, 1), (0.3247342047137871, u'min', 13, 1), (0.3247342047137871, u'hang', 10, 1), (0.312771272649591, u'smoking', 10, 1), (0.312771272649591, u'walks', 12, 1), (0.30279310656411385, u'dirty', 13, 1), (0.30279310656411385, u'drunk', 13, 1), (0.30279310656411385, u'war', 34, 1), (0.2942998296638024, u'caught', 15, 1), (0.28695173228265203, u'pumpkin', 33, 1), (0.28695173228265203, u'cat', 19, 1), (0.28695173228265203, u'please', 30, 1), (0.28695173228265203, u'welcome', 23, 1), (0.28695173228265203, u'shade', 16, 1), (0.28050889359956055, u'dude', 34, 1), (0.2747964402379244, u'pigeon', 34, 1), (0.2747964402379244, u'lives', 25, 1), (0.26968351175578803, u'kinda', 27, 1)]
Plaza name : One Bryant Park
Comments for this Plaza : 301
[(4.620683748932336, u'midtown', 343, 22), (2.0367219964003533, u'developer', 13, 6), (1.9060214321620172, u'tons', 7, 4), (1.774650346214578, u'tower', 95, 7), (1.7718483274489236, u'built', 6, 3), (1.4360753220597744, u'air', 73, 6), (1.429516074121513, u'decades', 6, 3), (1.429516074121513, u'contractor', 5, 3), (1.3738478531275913, u'state', 343, 6), (1.2571793525892154, u'addition', 6, 3), (1.2221823794313171, u'skyscraper', 109, 5), (1.196729435049812, u'ice', 267, 5), (1.0745911433514455, u'bank', 22, 3), (1.0183609982001767, u'areas', 10, 3), (0.9530107160810086, u'perspective', 4, 2), (0.9383138179487729, u'owner', 14, 3), (0.9083793196923415, u'architect', 26, 3), (0.8895792891084231, u'reflection', 142, 4), (0.8530822852548436, u'office', 275, 4), (0.8247171691413444, u'life', 285, 4), (0.8176915250842155, u'home', 245, 4), (0.8017664443634871, u'sky', 427, 4), (0.7877834568804556, u'architecture', 409, 4), (0.76644858667451, u'belongs', 9, 2), (0.7417439379292052, u'empire', 274, 3), (0.7163940955676302, u'boa', 14, 2), (0.6241336907645769, u'trees', 239, 3), (0.6241336907645769, u'photo', 283, 3), (0.6132686438131616, u'rain', 235, 3), (0.6082940118754379, u'buildings', 353, 3), (0.5991213064965482, u'spring', 247, 3), (0.5906161091496412, u'crumbs', 10, 1), (0.5906161091496412, u'limelight', 3, 1), (0.5906161091496412, u'calories', 3, 1), (0.5906161091496412, u'radiator', 6, 1), (0.5906161091496412, u'downward', 3, 1), (0.5906161091496412, u'magazines', 4, 1), (0.5851221705345677, u'work', 331, 3), (0.5739034645653041, u'star', 31, 2), (0.5495928804758488, u'shadow', 30, 2), (0.5393670235115761, u'foggy', 36, 2), (0.5393670235115761, u'sidewalk', 35, 2), (0.5301399509068676, u'ladies', 40, 2), (0.507042956061308, u'idea', 29, 2), (0.5005340355851987, u'store', 51, 2), (0.4944959586194701, u'train', 73, 2), (0.4944959586194701, u'event', 55, 2), (0.48361813499735395, u'something', 78, 2), (0.47869177401992485, u'hour', 70, 2), (0.47869177401992485, u'thanks', 82, 2)]
Plaza name : Tavern on the Green
Comments for this Plaza : 90
[(5.0, u'tavern', 5, 5), (1.1812322182992825, u'cheer', 4, 2), (1.149672880011765, u'squirrel', 41, 3), (1.149672880011765, u'marathon', 21, 3), (0.6869239265637956, u'face', 64, 3), (0.678907332133451, u'media', 15, 2), (0.6132686438131616, u'fall', 321, 3), (0.5495928804758488, u'door', 26, 2), (0.5140896871720969, u'sunrise', 33, 2), (0.507042956061308, u'construction', 47, 2), (0.507042956061308, u'dusk', 47, 2), (0.4888729517725269, u'town', 69, 2), (0.47869177401992485, u'ice', 267, 2), (0.47869177401992485, u'center', 444, 2), (0.4765053580405043, u'pencil', 3, 1), (0.4765053580405043, u'riders', 3, 1), (0.4765053580405043, u'mountain', 3, 1), (0.4478545179409579, u'line', 84, 2), (0.44185609809983073, u'year', 99, 2), (0.42006215899384874, u'weather', 186, 2), (0.41905978419640516, u'humidity', 5, 1), (0.41905978419640516, u'collage', 4, 1), (0.41905978419640516, u'sports', 13, 1), (0.41905978419640516, u'parents', 6, 1), (0.41905978419640516, u'walker', 4, 1), (0.41905978419640516, u'reward', 5, 1), (0.383224293337255, u'sport', 6, 1), (0.383224293337255, u'abs', 5, 1), (0.383224293337255, u'hill', 5, 1), (0.383224293337255, u'master', 8, 1), (0.383224293337255, u'prep', 5, 1), (0.383224293337255, u'violin', 5, 1), (0.383224293337255, u'different', 5, 1), (0.383224293337255, u'songs', 6, 1), (0.3581970477838151, u'fans', 16, 1), (0.3581970477838151, u'carriage', 6, 1), (0.3581970477838151, u'attack', 9, 1), (0.3581970477838151, u'relief', 11, 1), (0.3394536660667255, u'taco', 9, 1), (0.3247342047137871, u'press', 10, 1), (0.3247342047137871, u'mile', 11, 1), (0.3247342047137871, u'conference', 10, 1), (0.312771272649591, u'luck', 16, 1), (0.30279310656411385, u'piano', 19, 1), (0.30279310656411385, u'practice', 16, 1), (0.2942998296638024, u'wood', 16, 1), (0.2942998296638024, u'trucks', 13, 1), (0.2942998296638024, u'engagement', 16, 1), (0.2942998296638024, u'rip', 15, 1), (0.28695173228265203, u'road', 20, 1)]
Plaza name : 1221 Plaza
Comments for this Plaza : 5
[(0.41905978419640516, u'waterfalls', 4, 1), (0.383224293337255, u'obsession', 6, 1), (0.3581970477838151, u'carriage', 6, 1), (0.30279310656411385, u'half', 14, 1), (0.28695173228265203, u'snowy', 19, 1), (0.26968351175578803, u'feels', 22, 1), (0.253521478030654, u'camera', 44, 1), (0.23934588700996243, u'random', 69, 1)]
Plaza name : 28th and Park Ave South
Comments for this Plaza : 13
[(0.4765053580405043, u'industry', 3, 1), (0.383224293337255, u'flatiron', 11, 1), (0.3581970477838151, u'desk', 13, 1), (0.312771272649591, u'fake', 11, 1), (0.26087773109487916, u'inside', 38, 1), (0.253521478030654, u'construction', 47, 1), (0.24724797930973505, u'model', 37, 1), (0.22897464218793187, u'wall', 83, 1), (0.22392725897047894, u'style', 140, 1), (0.2156294170196073, u'fashion', 347, 1), (0.2156294170196073, u'urban', 124, 1), (0.20804456358819232, u'man', 216, 1), (0.20442288127105387, u'fall', 321, 1), (0.20196945592621895, u'way', 247, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : 101 Barclay Street
Comments for this Plaza : 2
[(0.20804456358819232, u'downtown', 175, 1)]
Plaza name : Grace Plaza
Comments for this Plaza : 84
[(3.33553750628353, u'grace', 32, 7), (1.4702175564784705, u'midtown', 343, 7), (1.1812322182992825, u'promotion', 3, 2), (0.8895792891084231, u'reflection', 142, 4), (0.7877834568804556, u'architecture', 409, 4), (0.7163940955676302, u'chess', 40, 2), (0.6241336907645769, u'afternoon', 200, 3), (0.5906161091496412, u'meditation', 6, 1), (0.5906161091496412, u'grid', 4, 1), (0.507042956061308, u'tower', 95, 2), (0.47869177401992485, u'ice', 267, 2), (0.4765053580405043, u'envy', 3, 1), (0.4765053580405043, u'dreamer', 3, 1), (0.4765053580405043, u'promo', 3, 1), (0.4765053580405043, u'position', 3, 1), (0.4616587225516543, u'plaza', 209, 2), (0.4265411426274218, u'break', 180, 2), (0.41905978419640516, u'spaces', 5, 1), (0.41905978419640516, u'tuna', 4, 1), (0.41905978419640516, u'made', 4, 1), (0.41905978419640516, u'limit', 5, 1), (0.41905978419640516, u'cans', 6, 1), (0.41905978419640516, u'driver', 6, 1), (0.4055293412502919, u'buildings', 353, 2), (0.383224293337255, u'destination', 5, 1), (0.383224293337255, u'metropolitan', 20, 1), (0.383224293337255, u'killer', 7, 1), (0.3581970477838151, u'hanging', 7, 1), (0.3581970477838151, u'bank', 22, 1), (0.3581970477838151, u'runway', 25, 1), (0.3581970477838151, u'crossroads', 7, 1), (0.3394536660667255, u'garbage', 7, 1), (0.3394536660667255, u'escape', 10, 1), (0.3394536660667255, u'floors', 10, 1), (0.3394536660667255, u'limo', 14, 1), (0.3394536660667255, u'pit', 8, 1), (0.3247342047137871, u'lookup', 14, 1), (0.312771272649591, u'snack', 19, 1), (0.312771272649591, u'cities', 14, 1), (0.312771272649591, u'couples', 14, 1), (0.312771272649591, u'dear', 9, 1), (0.30279310656411385, u'quick', 20, 1), (0.30279310656411385, u'college', 17, 1), (0.28695173228265203, u'lovers', 16, 1), (0.28695173228265203, u'cake', 17, 1), (0.2747964402379244, u'walking', 22, 1), (0.2747964402379244, u'leaves', 36, 1), (0.2747964402379244, u'eyes', 26, 1), (0.26968351175578803, u'eye', 32, 1), (0.26968351175578803, u'festival', 92, 1)]
Plaza name : Foley Square
Comments for this Plaza : 345
[(3.4907677299549595, u'square', 258, 16), (2.9334184893748363, u'court', 11, 7), (2.573140640256994, u'streets', 136, 12), (2.5328908444122455, u'walk', 212, 12), (2.524580042396045, u'protest', 33, 9), (2.198371521903395, u'giants', 46, 8), (2.1574680940463042, u'women', 37, 8), (1.9147670960796994, u'parade', 56, 8), (1.6221173650011675, u'buildings', 353, 8), (1.563856363247955, u'justice', 16, 5), (1.456311945117346, u'downtown', 175, 7), (1.4327881911352605, u'fans', 16, 4), (1.429516074121513, u'grader', 6, 3), (1.429516074121513, u'courts', 5, 3), (1.3739822011896219, u'occupy', 41, 5), (1.3435635538228736, u'line', 84, 6), (1.325349877267169, u'bridge', 142, 5), (1.325349877267169, u'crowd', 34, 5), (1.2571793525892154, u'protests', 11, 3), (1.1812322182992825, u'skater', 3, 2), (1.1812322182992825, u'dutch', 3, 2), (1.1812322182992825, u'privacy', 3, 2), (1.149672880011765, u'zip', 24, 3), (1.0281793743441938, u'concert', 67, 4), (1.0221144063552694, u'world', 322, 5), (1.0183609982001767, u'supreme', 14, 3), (0.9530107160810086, u'revolution', 4, 2), (0.9530107160810086, u'diabetes', 4, 2), (0.9158985687517275, u'wall', 83, 4), (0.8726919324887399, u'fun', 208, 4), (0.8243893207137731, u'yorkers', 33, 3), (0.8078778237048758, u'way', 247, 4), (0.7877834568804556, u'architecture', 409, 4), (0.7851844238535843, u'people', 414, 4), (0.76644858667451, u'veterans', 10, 2), (0.7333094276587903, u'skyscraper', 109, 3), (0.7163940955676302, u'blossoms', 8, 2), (0.6671844668313173, u'subway', 206, 3), (0.6494684094275742, u'fair', 15, 2), (0.6494684094275742, u'record', 10, 2), (0.6494684094275742, u'landmarks', 20, 2), (0.625542545299182, u'skate', 30, 2), (0.625542545299182, u'victory', 13, 2), (0.625542545299182, u'pro', 18, 2), (0.6241336907645769, u'afternoon', 200, 3), (0.6013248332726153, u'sky', 427, 3), (0.5906161091496412, u'hon', 4, 1), (0.5906161091496412, u'equipment', 3, 1), (0.5906161091496412, u'opinion', 3, 1), (0.5906161091496412, u'cove', 3, 1)]
Plaza name : 42nd and Broadway
Comments for this Plaza : 38
[(0.7180376610298872, u'bike', 65, 3), (0.6506296700215141, u'times', 203, 3), (0.6494684094275742, u'metro', 16, 2), (0.4765053580405043, u'winds', 4, 1), (0.45442179174538183, u'heart', 86, 2), (0.43634596624436994, u'party', 104, 2), (0.43634596624436994, u'fun', 208, 2), (0.41905978419640516, u'tips', 4, 1), (0.383224293337255, u'lie', 5, 1), (0.3581970477838151, u'alone', 12, 1), (0.3581970477838151, u'nobody', 8, 1), (0.3394536660667255, u'took', 9, 1), (0.3394536660667255, u'thoughts', 14, 1), (0.3247342047137871, u'cheese', 10, 1), (0.312771272649591, u'paint', 13, 1), (0.28695173228265203, u'batman', 19, 1), (0.28695173228265203, u'meet', 19, 1), (0.28050889359956055, u'sight', 24, 1), (0.25026701779259936, u'see', 43, 1), (0.24724797930973505, u'lot', 52, 1), (0.24724797930973505, u'train', 73, 1), (0.24180906749867698, u'sister', 54, 1), (0.23934588700996243, u'ice', 267, 1), (0.22897464218793187, u'end', 57, 1), (0.22392725897047894, u'tonight', 106, 1), (0.21687655667383804, u'guy', 138, 1), (0.21215332784742846, u'picture', 148, 1), (0.21107423703435377, u'sunset', 352, 1), (0.21003107949692437, u'midtown', 343, 1), (0.20442288127105387, u'rain', 235, 1), (0.2035821084092901, u'lights', 274, 1), (0.20276467062514594, u'buildings', 353, 1), (0.1969458642201139, u'architecture', 409, 1)]
Plaza name : Under The Manhattan Bridge, Manhattan
Comments for this Plaza : 506
[(25.71178761898308, u'bridge', 142, 97), (3.8120428643240345, u'bridges', 10, 8), (3.2070657774539484, u'sky', 427, 16), (2.252403160133394, u'river', 85, 9), (2.1107423703435377, u'sunset', 352, 10), (1.456311945117346, u'clouds', 252, 7), (1.430960168897377, u'home', 245, 7), (1.4137861914835328, u'way', 247, 7), (1.2111724262564554, u'football', 24, 4), (1.1812322182992825, u'tempo', 3, 2), (1.1448732109396593, u'skyline', 158, 5), (1.0402228179409616, u'downtown', 175, 5), (1.0402228179409616, u'photo', 283, 5), (1.0221144063552694, u'rain', 235, 5), (1.0183609982001767, u'bound', 9, 3), (0.9311340548461062, u'cab', 73, 4), (0.9083793196923415, u'traffic', 15, 3), (0.8895792891084231, u'subway', 206, 4), (0.8828994889914074, u'truth', 25, 3), (0.8486133113897139, u'side', 111, 4), (0.8415266807986816, u'stuck', 19, 3), (0.8360872595102363, u'girl', 208, 4), (0.8283903631585481, u'water', 295, 4), (0.7904446293859332, u'sandy', 314, 4), (0.7826331932846374, u'dark', 38, 3), (0.76644858667451, u'tho', 7, 2), (0.750801053377798, u'bus', 47, 3), (0.7417439379292052, u'train', 73, 3), (0.7417439379292052, u'east', 32, 3), (0.7180376610298872, u'bike', 65, 3), (0.7163940955676302, u'found', 13, 2), (0.6869239265637956, u'ride', 85, 3), (0.6494684094275742, u'bros', 10, 2), (0.646888251058822, u'fashion', 347, 3), (0.6270654446326772, u'photography', 220, 3), (0.6107463252278704, u'lights', 274, 3), (0.6059083677786569, u'sun', 338, 3), (0.5906161091496412, u'impromptu', 6, 1), (0.5906161091496412, u'loop', 3, 1), (0.5906161091496412, u'yacht', 5, 1), (0.5495928804758488, u'son', 25, 2), (0.5393670235115761, u'run', 37, 2), (0.5301399509068676, u'south', 62, 2), (0.5217554621897583, u'tomorrow', 43, 2), (0.5217554621897583, u'gallery', 36, 2), (0.5217554621897583, u'commute', 32, 2), (0.5140896871720969, u'men', 49, 2), (0.5140896871720969, u'sunrise', 33, 2), (0.507042956061308, u'someone', 47, 2), (0.507042956061308, u'dusk', 47, 2)]
Plaza name : Samuel Dickstein Plaza
Comments for this Plaza : 1
[(0.41905978419640516, u'lounge', 6, 1), (0.22092804904991536, u'dog', 121, 1)]
Plaza name : Benches at Allen and Stanton
Comments for this Plaza : 3
[(0.4312588340392146, u'urban', 124, 2), (0.21817298312218497, u'part', 96, 1)]
Plaza name : East 86th
Comments for this Plaza : 30
[(0.5393670235115761, u'followers', 17, 2), (0.4944959586194701, u'east', 32, 2), (0.4765053580405043, u'fox', 3, 1), (0.41905978419640516, u'thunder', 5, 1), (0.40239085244606054, u'place', 359, 2), (0.40088322218174355, u'sky', 427, 2), (0.3581970477838151, u'haircut', 9, 1), (0.3394536660667255, u'buddies', 13, 1), (0.3247342047137871, u'ready', 11, 1), (0.312771272649591, u'believe', 9, 1), (0.30279310656411385, u'silver', 15, 1), (0.28695173228265203, u'beginning', 21, 1), (0.28050889359956055, u'candy', 23, 1), (0.26968351175578803, u'eat', 21, 1), (0.26087773109487916, u'breakfast', 43, 1), (0.25026701779259936, u'cloud', 49, 1), (0.24724797930973505, u'fire', 56, 1), (0.24443647588626344, u'skyscraper', 109, 1), (0.24180906749867698, u'holiday', 138, 1), (0.23484671873236782, u'neighborhood', 49, 1), (0.22897464218793187, u'skyline', 158, 1), (0.22897464218793187, u'car', 68, 1), (0.22721089587269092, u'heart', 86, 1), (0.22392725897047894, u'tonight', 106, 1), (0.22092804904991536, u'year', 99, 1), (0.21687655667383804, u'cool', 137, 1), (0.21215332784742846, u'side', 111, 1), (0.21107423703435377, u'sunset', 352, 1), (0.20804456358819232, u'clouds', 252, 1), (0.20804456358819232, u'afternoon', 200, 1), (0.20196945592621895, u'way', 247, 1)]
Plaza name : Gracie Mews Diner
Comments for this Plaza : 49
[(1.7657989779828147, u'brunch', 24, 6), (0.9530107160810086, u'pancakes', 4, 2), (0.8530822852548436, u'food', 165, 4), (0.76644858667451, u'eggs', 6, 2), (0.6924880838274814, u'date', 106, 3), (0.678907332133451, u'milk', 9, 2), (0.5906161091496412, u'figures', 4, 1), (0.4765053580405043, u'dis', 3, 1), (0.4765053580405043, u'escort', 7, 1), (0.4765053580405043, u'single', 3, 1), (0.4312588340392146, u'fashion', 347, 2), (0.41905978419640516, u'knowledge', 9, 1), (0.41905978419640516, u'porn', 4, 1), (0.41905978419640516, u'bloody', 4, 1), (0.41905978419640516, u'cigarette', 6, 1), (0.383224293337255, u'perfection', 10, 1), (0.3581970477838151, u'diner', 16, 1), (0.3581970477838151, u'hangover', 7, 1), (0.3394536660667255, u'handsome', 8, 1), (0.3247342047137871, u'sleep', 11, 1), (0.3247342047137871, u'meal', 10, 1), (0.3247342047137871, u'advice', 13, 1), (0.3247342047137871, u'care', 16, 1), (0.3247342047137871, u'gas', 17, 1), (0.3247342047137871, u'models', 19, 1), (0.312771272649591, u'nap', 22, 1), (0.312771272649591, u'plants', 15, 1), (0.30279310656411385, u'arts', 24, 1), (0.30279310656411385, u'chocolate', 42, 1), (0.30279310656411385, u'restaurant', 14, 1), (0.2942998296638024, u'trucks', 13, 1), (0.2942998296638024, u'flight', 15, 1), (0.28695173228265203, u'fail', 15, 1), (0.28695173228265203, u'please', 30, 1), (0.28050889359956055, u'sorry', 20, 1), (0.28050889359956055, u'gonna', 40, 1), (0.28050889359956055, u'live', 21, 1), (0.28050889359956055, u'election', 51, 1), (0.26968351175578803, u'eye', 32, 1), (0.2650699754534338, u'police', 30, 1), (0.2650699754534338, u'bro', 24, 1), (0.26087773109487916, u'outdoor', 48, 1), (0.26087773109487916, u'gay', 42, 1), (0.24443647588626344, u'miss', 89, 1), (0.24180906749867698, u'boy', 65, 1), (0.24180906749867698, u'wait', 66, 1), (0.23934588700996243, u'hour', 70, 1), (0.23082936127582715, u'coffee', 121, 1), (0.22553064631951622, u'girls', 90, 1), (0.20902181487755908, u'friends', 184, 1)]
Plaza name : World Financial Center (WFC) Plaza
Comments for this Plaza : 688
[(5.699004399927552, u'sunset', 352, 27), (5.520481480134381, u'blues', 29, 17), (5.504955401229136, u'center', 444, 23), (5.0, u'marina', 5, 5), (4.701726269234239, u'world', 322, 23), (3.7755691645810323, u'festival', 92, 14), (3.5819704778381514, u'jersey', 36, 10), (3.394536660667255, u'case', 22, 10), (3.247342047137871, u'trade', 65, 10), (3.0, u'lowdown', 3, 3), (2.514358705178431, u'palm', 9, 6), (2.4331760475017514, u'buildings', 353, 12), (2.3825267902025216, u'escort', 7, 5), (2.362464436598565, u'yacht', 5, 4), (2.3134035922744363, u'concert', 67, 9), (2.002136142340795, u'river', 85, 8), (1.9518890100645423, u'guy', 138, 9), (1.9484052282827227, u'boats', 23, 6), (1.8724010722937308, u'trees', 239, 9), (1.803974499817846, u'sky', 427, 9), (1.774650346214578, u'tower', 95, 7), (1.5904198527206028, u'freedom', 58, 6), (1.5904198527206028, u'film', 110, 6), (1.5755669137609112, u'architecture', 409, 8), (1.5674908127933525, u'statue', 345, 7), (1.4327881911352605, u'movies', 76, 4), (1.4327881911352605, u'waterfront', 32, 4), (1.3849761676549628, u'plaza', 209, 6), (1.365285064580658, u'work', 331, 7), (1.2482673815291538, u'clouds', 252, 6), (1.2265372876263232, u'home', 245, 6), (1.2118167355573137, u'sun', 338, 6), (1.1812322182992825, u'icons', 3, 2), (1.1812322182992825, u'grill', 5, 2), (1.1812322182992825, u'schnitzel', 3, 2), (1.1812322182992825, u'society', 3, 2), (1.1812322182992825, u'locations', 3, 2), (1.1812322182992825, u'chandelier', 4, 2), (1.1812322182992825, u'birth', 3, 2), (1.1812322182992825, u'esplanade', 4, 2), (1.1812322182992825, u'bud', 5, 2), (1.1777766357803765, u'people', 414, 6), (1.1196362948523946, u'tonight', 106, 5), (1.0991857609516975, u'liberty', 299, 4), (1.0745911433514455, u'duck', 10, 3), (1.0745911433514455, u'battery', 259, 3), (1.0663528565685545, u'office', 275, 5), (1.0281793743441938, u'buddy', 29, 4), (1.014085912122616, u'brother', 32, 4), (1.0098472796310949, u'way', 247, 5)]
Plaza name : Astor Place Associates Public Plaza
Comments for this Plaza : 1
[(0.28695173228265203, u'daughter', 16, 1), (0.26968351175578803, u'mother', 29, 1)]
Plaza name : Lincoln Center Plaza (Josie Robertson Plaza)
Comments for this Plaza : 1822
[(47.39048562797256, u'center', 444, 198), (21.56294170196073, u'fashion', 347, 100), (14.562523146815689, u'opera', 45, 38), (12.813826844895091, u'week', 180, 58), (10.183609982001766, u'blanc', 43, 30), (8.238532099027749, u'ballet', 31, 23), (6.462338949268985, u'show', 171, 27), (4.0, u'deb', 4, 4), (3.9240991416890614, u'plaza', 209, 17), (3.7755691645810323, u'met', 142, 14), (3.5058856528252442, u'photographer', 39, 13), (3.3135614526341923, u'water', 295, 16), (3.223773430054336, u'diner', 16, 9), (3.223773430054336, u'runway', 25, 9), (3.0, u'swan', 3, 3), (3.0, u'accessory', 3, 3), (2.9444415894509413, u'people', 414, 15), (2.912623890234692, u'photo', 283, 14), (2.9110543666162263, u'style', 140, 13), (2.891132689602375, u'beauty', 117, 13), (2.688801234748898, u'dinner', 99, 11), (2.6574974565237004, u'home', 245, 13), (2.560618650826792, u'west', 97, 11), (2.5602962348614806, u'architecture', 409, 13), (2.4143451146763635, u'place', 359, 12), (2.3825267902025216, u'sat', 8, 5), (2.239272589704789, u'tonight', 106, 10), (2.095298920982026, u'trend', 9, 5), (2.0902181487755906, u'girl', 208, 10), (2.077464251482444, u'front', 86, 9), (1.9779838344778804, u'perfect', 126, 8), (1.9554918070901075, u'things', 106, 8), (1.9504072351152257, u'work', 331, 10), (1.9060214321620172, u'photographers', 6, 4), (1.9060214321620172, u'designer', 9, 4), (1.8811963338980318, u'photography', 220, 9), (1.8398059314394848, u'rain', 235, 9), (1.816758639384683, u'arts', 24, 6), (1.7718483274489236, u'gilbert', 5, 3), (1.721710393695912, u'steps', 94, 6), (1.6972683303336276, u'theater', 11, 5), (1.6972266227794277, u'side', 111, 8), (1.6762391367856206, u'dancing', 14, 4), (1.6762391367856206, u'snap', 8, 4), (1.6762391367856206, u'tents', 10, 4), (1.628656867274321, u'lights', 274, 8), (1.5652663865692749, u'wish', 61, 6), (1.563856363247955, u'bill', 16, 5), (1.5422690615162908, u'concert', 67, 6), (1.53289717334902, u'metropolitan', 20, 4)]
Plaza name : NYU Native Woodland Garden
Comments for this Plaza : 1
[]
Plaza name : Urban Plaza Park
Comments for this Plaza : 1
[(0.3247342047137871, u'sketch', 10, 1), (0.3247342047137871, u'artwork', 9, 1), (0.28050889359956055, u'piece', 26, 1)]
Plaza name : Brevard Park
Comments for this Plaza : 1
[]
Plaza name : Brevard Public Plaza
Comments for this Plaza : 1
[(0.22392725897047894, u'spot', 118, 1), (0.2132705713137109, u'office', 275, 1)]
Plaza name : Men In Black Movie Set
Comments for this Plaza : 1
[]
Plaza name : Bantum PAIR (Peter Woytuk Statues)
Comments for this Plaza : 1
[(0.28695173228265203, u'circa', 18, 1), (0.2747964402379244, u'series', 46, 1), (0.19970710216551604, u'spring', 247, 1)]
Plaza name : Frederick Douglass Circle
Comments for this Plaza : 84
[(0.9742026141413613, u'circle', 461, 3), (0.6494684094275742, u'gas', 17, 2), (0.5906161091496412, u'dub', 3, 1), (0.5217554621897583, u'jazz', 62, 2), (0.4765053580405043, u'nets', 3, 1), (0.4765053580405043, u'railroad', 4, 1), (0.4765053580405043, u'trunk', 3, 1), (0.4765053580405043, u'rises', 3, 1), (0.4765053580405043, u'blustery', 3, 1), (0.4478545179409579, u'statue', 345, 2), (0.42214847406870754, u'storm', 126, 2), (0.42214847406870754, u'sunset', 352, 2), (0.41905978419640516, u'made', 4, 1), (0.41905978419640516, u'mine', 4, 1), (0.41608912717638463, u'clouds', 252, 2), (0.41419518157927404, u'water', 295, 2), (0.40884576254210775, u'rain', 235, 2), (0.383224293337255, u'earth', 7, 1), (0.383224293337255, u'knight', 5, 1), (0.383224293337255, u'treasure', 5, 1), (0.383224293337255, u'comics', 10, 1), (0.383224293337255, u'penny', 6, 1), (0.3581970477838151, u'mission', 8, 1), (0.3581970477838151, u'north', 7, 1), (0.3581970477838151, u'taste', 6, 1), (0.3581970477838151, u'cityscapes', 10, 1), (0.3394536660667255, u'hero', 9, 1), (0.3394536660667255, u'struggle', 7, 1), (0.3394536660667255, u'splash', 13, 1), (0.3394536660667255, u'sticker', 7, 1), (0.3247342047137871, u'sketch', 10, 1), (0.3247342047137871, u'progress', 10, 1), (0.3247342047137871, u'underground', 10, 1), (0.30279310656411385, u'notice', 13, 1), (0.2942998296638024, u'find', 17, 1), (0.2942998296638024, u'march', 12, 1), (0.2942998296638024, u'kid', 14, 1), (0.28695173228265203, u'metal', 25, 1), (0.28050889359956055, u'corner', 34, 1), (0.28050889359956055, u'blocks', 20, 1), (0.2747964402379244, u'month', 26, 1), (0.26968351175578803, u'shop', 58, 1), (0.2650699754534338, u'shoes', 26, 1), (0.26087773109487916, u'dark', 38, 1), (0.26087773109487916, u'game', 43, 1), (0.26087773109487916, u'cars', 33, 1), (0.26087773109487916, u'gallery', 36, 1), (0.25704484358604845, u'shirt', 34, 1), (0.253521478030654, u'shit', 47, 1), (0.25026701779259936, u'favorite', 63, 1)]
Plaza name : The Atrium
Comments for this Plaza : 1
[]
Plaza name : Fort George
Comments for this Plaza : 7
[(0.625542545299182, u'contrast', 12, 2), (0.5301399509068676, u'church', 19, 2), (0.5005340355851987, u'bus', 47, 2), (0.4765053580405043, u'combination', 4, 1), (0.41905978419640516, u'plate', 4, 1), (0.41905978419640516, u'fort', 8, 1), (0.383224293337255, u'resist', 8, 1), (0.383224293337255, u'hill', 5, 1), (0.383224293337255, u'snake', 12, 1), (0.3394536660667255, u'overcast', 8, 1), (0.28050889359956055, u'father', 16, 1), (0.2650699754534338, u'uptown', 31, 1), (0.24443647588626344, u'family', 76, 1), (0.22897464218793187, u'car', 68, 1), (0.22553064631951622, u'years', 89, 1), (0.22239482227710577, u'rainy', 103, 1), (0.21817298312218497, u'colors', 90, 1), (0.21215332784742846, u'picture', 148, 1), (0.20442288127105387, u'rain', 235, 1)]
Plaza name : Fountain Pool
Comments for this Plaza : 36
[(1.916121466686275, u'balls', 10, 5), (0.5906161091496412, u'haiku', 5, 1), (0.5393670235115761, u'wow', 27, 2), (0.5393670235115761, u'eat', 21, 2), (0.4888729517725269, u'bench', 42, 2), (0.48361813499735395, u'wait', 66, 2), (0.4765053580405043, u'chin', 3, 1), (0.44478964455421155, u'reflection', 142, 2), (0.42006215899384874, u'midtown', 343, 2), (0.41905978419640516, u'chairs', 38, 1), (0.41905978419640516, u'demon', 4, 1), (0.4071642168185802, u'lights', 274, 2), (0.383224293337255, u'sand', 11, 1), (0.383224293337255, u'changes', 5, 1), (0.3581970477838151, u'seats', 10, 1), (0.3581970477838151, u'vendors', 6, 1), (0.3247342047137871, u'photograph', 13, 1), (0.312771272649591, u'sea', 31, 1), (0.2942998296638024, u'honey', 16, 1), (0.28050889359956055, u'live', 21, 1), (0.2747964402379244, u'empty', 31, 1), (0.26968351175578803, u'bye', 34, 1), (0.2650699754534338, u'hell', 31, 1), (0.26087773109487916, u'sunshine', 65, 1), (0.253521478030654, u'dusk', 47, 1), (0.25026701779259936, u'photos', 86, 1), (0.24724797930973505, u'everything', 42, 1), (0.23934588700996243, u'ave', 58, 1), (0.23082936127582715, u'date', 106, 1), (0.22897464218793187, u'skyline', 158, 1), (0.22392725897047894, u'style', 140, 1), (0.2132705713137109, u'food', 165, 1), (0.21003107949692437, u'weather', 186, 1), (0.20442288127105387, u'world', 322, 1), (0.20276467062514594, u'buildings', 353, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : Shubert Alley
Comments for this Plaza : 54
[(5.0, u'flea', 5, 5), (3.0, u'barks', 3, 3), (3.0, u'peters', 3, 3), (2.514358705178431, u'alley', 9, 6), (1.3739822011896219, u'market', 42, 5), (1.1812322182992825, u'marquee', 3, 2), (0.4765053580405043, u'title', 3, 1), (0.4765053580405043, u'buck', 3, 1), (0.41905978419640516, u'nostalgia', 5, 1), (0.41905978419640516, u'program', 4, 1), (0.41905978419640516, u'cast', 4, 1), (0.383224293337255, u'drop', 6, 1), (0.383224293337255, u'bliss', 7, 1), (0.383224293337255, u'bottles', 5, 1), (0.383224293337255, u'advertisement', 6, 1), (0.383224293337255, u'purchase', 7, 1), (0.3581970477838151, u'stripes', 7, 1), (0.3394536660667255, u'reasons', 9, 1), (0.3394536660667255, u'tony', 7, 1), (0.3247342047137871, u'pup', 13, 1), (0.3247342047137871, u'poster', 9, 1), (0.3247342047137871, u'official', 12, 1), (0.312771272649591, u'table', 22, 1), (0.312771272649591, u'use', 11, 1), (0.30279310656411385, u'kitty', 13, 1), (0.30279310656411385, u'notice', 13, 1), (0.2942998296638024, u'honey', 16, 1), (0.28695173228265203, u'story', 19, 1), (0.28695173228265203, u'cat', 19, 1), (0.28695173228265203, u'star', 31, 1), (0.28050889359956055, u'standing', 19, 1), (0.2747964402379244, u'walking', 22, 1), (0.2747964402379244, u'john', 23, 1), (0.26968351175578803, u'eye', 32, 1), (0.253521478030654, u'someone', 47, 1), (0.24724797930973505, u'everything', 42, 1), (0.24724797930973505, u'hey', 41, 1), (0.24724797930973505, u'book', 58, 1), (0.2370299675817646, u'school', 63, 1), (0.23484671873236782, u'nothing', 69, 1), (0.23278351371152656, u'west', 97, 1), (0.22092804904991536, u'week', 180, 1), (0.22092804904991536, u'dog', 121, 1), (0.21952219380422947, u'days', 128, 1), (0.21687655667383804, u'look', 103, 1), (0.21215332784742846, u'side', 111, 1), (0.21107423703435377, u'walk', 212, 1), (0.21003107949692437, u'midtown', 343, 1), (0.20709759078963702, u'water', 295, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : 44th St. & Broadway
Comments for this Plaza : 7
[(0.2370299675817646, u'looks', 75, 1), (0.22721089587269092, u'sign', 73, 1), (0.22239482227710577, u'shot', 81, 1)]
Plaza name : Limelight Courtyard
Comments for this Plaza : 9
[(1.1812322182992825, u'limelight', 3, 2), (0.41905978419640516, u'stylist', 4, 1), (0.3394536660667255, u'shopping', 11, 1), (0.28050889359956055, u'fine', 20, 1), (0.2650699754534338, u'memories', 22, 1), (0.25704484358604845, u'bar', 32, 1), (0.253521478030654, u'construction', 47, 1), (0.24724797930973505, u'event', 55, 1), (0.24724797930973505, u'hot', 39, 1), (0.23934588700996243, u'show', 171, 1), (0.22239482227710577, u'beauty', 117, 1), (0.21687655667383804, u'cool', 137, 1), (0.2156294170196073, u'fashion', 347, 1), (0.2132705713137109, u'food', 165, 1), (0.2061792922853361, u'life', 285, 1), (0.20119542622303027, u'place', 359, 1)]
Plaza name : Claridge House Plaza
Comments for this Plaza : 1
[]
Plaza name : Deutsche Bank
Comments for this Plaza : 99
[(2.2897464218793186, u'wall', 83, 10), (1.2796234278822654, u'office', 275, 6), (1.1812322182992825, u'cubicle', 3, 2), (1.1812322182992825, u'papers', 3, 2), (1.0745911433514455, u'bank', 22, 3), (0.8381195683928103, u'heroes', 6, 2), (0.7333094276587903, u'floor', 54, 3), (0.7163940955676302, u'egg', 9, 2), (0.678907332133451, u'milk', 9, 2), (0.6765919389585486, u'baby', 103, 3), (0.6494684094275742, u'fair', 15, 2), (0.5906161091496412, u'activity', 5, 1), (0.5906161091496412, u'riot', 3, 1), (0.5906161091496412, u'tech', 3, 1), (0.5495928804758488, u'occupy', 41, 2), (0.5393670235115761, u'tea', 44, 2), (0.4944959586194701, u'job', 49, 2), (0.4888729517725269, u'dinner', 99, 2), (0.4765053580405043, u'toast', 3, 1), (0.4765053580405043, u'ham', 3, 1), (0.4765053580405043, u'hippies', 3, 1), (0.4765053580405043, u'cookies', 4, 1), (0.4765053580405043, u'exit', 3, 1), (0.4765053580405043, u'checks', 3, 1), (0.4765053580405043, u'blimps', 3, 1), (0.4765053580405043, u'honest', 3, 1), (0.4765053580405043, u'warming', 3, 1), (0.4765053580405043, u'pix', 3, 1), (0.4765053580405043, u'pastry', 3, 1), (0.4765053580405043, u'coworker', 3, 1), (0.4765053580405043, u'noodle', 4, 1), (0.4765053580405043, u'ultimate', 3, 1), (0.42214847406870754, u'sunset', 352, 2), (0.41905978419640516, u'vets', 5, 1), (0.41905978419640516, u'addition', 6, 1), (0.41905978419640516, u'vans', 5, 1), (0.41905978419640516, u'bun', 7, 1), (0.41905978419640516, u'storage', 4, 1), (0.41905978419640516, u'materials', 5, 1), (0.41905978419640516, u'complaints', 5, 1), (0.39259221192679217, u'people', 414, 2), (0.39008144702304515, u'work', 331, 2), (0.383224293337255, u'indoor', 7, 1), (0.383224293337255, u'deals', 5, 1), (0.383224293337255, u'yogurt', 13, 1), (0.383224293337255, u'shut', 5, 1), (0.383224293337255, u'cowboy', 8, 1), (0.383224293337255, u'copy', 5, 1), (0.383224293337255, u'numbers', 5, 1), (0.383224293337255, u'chase', 5, 1)]
Plaza name : Hudson Square Food Truck Lot
Comments for this Plaza : 2
[(0.3394536660667255, u'taco', 9, 1), (0.2942998296638024, u'trucks', 13, 1), (0.2370299675817646, u'head', 44, 1), (0.20804456358819232, u'clouds', 252, 1)]
Plaza name : 20th Street Loop Stuyvesent Town
Comments for this Plaza : 57
[(0.9530107160810086, u'potato', 4, 2), (0.5906161091496412, u'dust', 3, 1), (0.5140896871720969, u'apartment', 50, 2), (0.4765053580405043, u'kill', 3, 1), (0.4765053580405043, u'pepper', 3, 1), (0.4765053580405043, u'keep', 4, 1), (0.4765053580405043, u'turkey', 21, 1), (0.4765053580405043, u'candle', 3, 1), (0.4765053580405043, u'couch', 4, 1), (0.4740599351635292, u'power', 50, 2), (0.4265411426274218, u'food', 165, 2), (0.41905978419640516, u'rangers', 6, 1), (0.41905978419640516, u'pasta', 5, 1), (0.41905978419640516, u'ledge', 6, 1), (0.3952223146929666, u'sandy', 314, 2), (0.383224293337255, u'bath', 10, 1), (0.383224293337255, u'entire', 6, 1), (0.383224293337255, u'flame', 11, 1), (0.3581970477838151, u'studio', 10, 1), (0.3581970477838151, u'babe', 11, 1), (0.3581970477838151, u'network', 6, 1), (0.3394536660667255, u'mickey', 10, 1), (0.3394536660667255, u'homemade', 8, 1), (0.3394536660667255, u'proud', 11, 1), (0.3394536660667255, u'tomato', 8, 1), (0.3247342047137871, u'cheese', 10, 1), (0.3247342047137871, u'cup', 20, 1), (0.3247342047137871, u'burger', 16, 1), (0.3247342047137871, u'damn', 16, 1), (0.3247342047137871, u'fries', 11, 1), (0.3247342047137871, u'boom', 12, 1), (0.312771272649591, u'gift', 16, 1), (0.312771272649591, u'bathroom', 15, 1), (0.30279310656411385, u'notice', 13, 1), (0.30279310656411385, u'weird', 11, 1), (0.30279310656411385, u'minutes', 18, 1), (0.28695173228265203, u'aftermath', 25, 1), (0.28695173228265203, u'yum', 33, 1), (0.28695173228265203, u'cat', 19, 1), (0.28050889359956055, u'father', 16, 1), (0.2747964402379244, u'lit', 27, 1), (0.26968351175578803, u'tea', 44, 1), (0.2650699754534338, u'black', 26, 1), (0.2650699754534338, u'aka', 30, 1), (0.2650699754534338, u'bird', 65, 1), (0.2650699754534338, u'beer', 38, 1), (0.26087773109487916, u'background', 49, 1), (0.26087773109487916, u'stuff', 30, 1), (0.25704484358604845, u'done', 41, 1), (0.25704484358604845, u'nights', 64, 1)]
Plaza name : Plaza de Wadsworth- 235D1
Comments for this Plaza : 1
[]
Plaza name : Foursquare Day '11!
Comments for this Plaza : 2
[]
Plaza name : Soho Abbey Courtyard
Comments for this Plaza : 1
[(0.23484671873236782, u'window', 60, 1)]
Plaza name : Central Park - Untermeyer Fountain
Comments for this Plaza : 38
[(1.2571793525892154, u'pond', 28, 3), (0.9530107160810086, u'conservatory', 18, 2), (0.8243893207137731, u'flower', 41, 3), (0.750801053377798, u'garden', 56, 3), (0.6671844668313173, u'nature', 180, 3), (0.6132686438131616, u'fall', 321, 3), (0.5906161091496412, u'pad', 6, 1), (0.5739034645653041, u'reflections', 41, 2), (0.4765053580405043, u'flora', 4, 1), (0.4765053580405043, u'vibe', 3, 1), (0.45442179174538183, u'flowers', 161, 2), (0.41905978419640516, u'greenery', 10, 1), (0.41419518157927404, u'water', 295, 2), (0.40239085244606054, u'place', 359, 2), (0.383224293337255, u'mid', 5, 1), (0.3581970477838151, u'jag', 7, 1), (0.3581970477838151, u'foliage', 11, 1), (0.3247342047137871, u'gem', 11, 1), (0.3247342047137871, u'strawberry', 14, 1), (0.3247342047137871, u'era', 8, 1), (0.312771272649591, u'outdoors', 30, 1), (0.30279310656411385, u'monument', 39, 1), (0.30279310656411385, u'boyfriend', 16, 1), (0.30279310656411385, u'breeze', 21, 1), (0.28050889359956055, u'wedding', 16, 1), (0.28050889359956055, u'secret', 24, 1), (0.2747964402379244, u'purple', 28, 1), (0.2747964402379244, u'leaves', 36, 1), (0.26087773109487916, u'wish', 61, 1), (0.253521478030654, u'someone', 47, 1), (0.24443647588626344, u'follow', 102, 1), (0.22392725897047894, u'autumn', 119, 1), (0.22392725897047894, u'statue', 345, 1), (0.22239482227710577, u'moment', 102, 1), (0.22239482227710577, u'reflection', 142, 1), (0.22092804904991536, u'year', 99, 1), (0.21817298312218497, u'colors', 90, 1), (0.20902181487755908, u'photography', 220, 1), (0.20902181487755908, u'friends', 184, 1), (0.20804456358819232, u'trees', 239, 1), (0.20442288127105387, u'happy', 220, 1), (0.20196945592621895, u'sun', 338, 1)]
Plaza name : Central Park - Wisteria Pergola
Comments for this Plaza : 15
[(0.41905978419640516, u'spaces', 5, 1), (0.312771272649591, u'bloom', 10, 1), (0.2942998296638024, u'kid', 14, 1), (0.26968351175578803, u'parks', 81, 1), (0.22239482227710577, u'beauty', 117, 1)]
Plaza name : East Midtown Plaza
Comments for this Plaza : 7
[(0.41905978419640516, u'strip', 4, 1), (0.26087773109487916, u'orange', 28, 1), (0.22392725897047894, u'style', 140, 1), (0.21003107949692437, u'midtown', 343, 1), (0.20442288127105387, u'home', 245, 1), (0.20442288127105387, u'world', 322, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : Elevated Acre
Comments for this Plaza : 122
[(3.5436966548978472, u'acre', 7, 6), (1.2482673815291538, u'downtown', 175, 6), (0.9530107160810086, u'helicopter', 6, 2), (0.76644858667451, u'lawn', 77, 2), (0.678907332133451, u'terrace', 26, 2), (0.6717817769114368, u'spot', 118, 3), (0.6494684094275742, u'gem', 11, 2), (0.5906161091496412, u'sphere', 33, 1), (0.5906161091496412, u'bikini', 3, 1), (0.5906161091496412, u'fill', 3, 1), (0.5851221705345677, u'work', 331, 3), (0.5393670235115761, u'skies', 37, 2), (0.5005340355851987, u'river', 85, 2), (0.4765053580405043, u'industry', 3, 1), (0.4765053580405043, u'turf', 3, 1), (0.4765053580405043, u'temps', 3, 1), (0.4765053580405043, u'godfather', 3, 1), (0.4616587225516543, u'house', 57, 2), (0.4265411426274218, u'break', 180, 2), (0.4243066556948569, u'side', 111, 2), (0.42214847406870754, u'storm', 126, 2), (0.41905978419640516, u'tours', 4, 1), (0.41905978419640516, u'workers', 4, 1), (0.41905978419640516, u'become', 4, 1), (0.41905978419640516, u'cups', 4, 1), (0.41905978419640516, u'somehow', 4, 1), (0.41905978419640516, u'tights', 5, 1), (0.41905978419640516, u'remix', 4, 1), (0.41608912717638463, u'clouds', 252, 2), (0.41419518157927404, u'water', 295, 2), (0.40884576254210775, u'home', 245, 2), (0.4055293412502919, u'buildings', 353, 2), (0.4039389118524379, u'sun', 338, 2), (0.39259221192679217, u'people', 414, 2), (0.383224293337255, u'hidden', 5, 1), (0.383224293337255, u'read', 12, 1), (0.383224293337255, u'breaks', 7, 1), (0.383224293337255, u'brings', 5, 1), (0.383224293337255, u'tag', 6, 1), (0.383224293337255, u'field', 11, 1), (0.3581970477838151, u'patch', 19, 1), (0.3581970477838151, u'seaport', 77, 1), (0.3581970477838151, u'movies', 76, 1), (0.3581970477838151, u'rays', 11, 1), (0.3394536660667255, u'bomb', 8, 1), (0.3394536660667255, u'sights', 10, 1), (0.3394536660667255, u'army', 29, 1), (0.3394536660667255, u'edge', 10, 1), (0.3394536660667255, u'favorites', 12, 1), (0.3394536660667255, u'wife', 13, 1)]
Plaza name : Plaza West Roofdeck
Comments for this Plaza : 1
[(0.3581970477838151, u'twinkle', 8, 1)]
Plaza name : Rite Aid
Comments for this Plaza : 1
[(0.19504072351152257, u'work', 331, 1)]
Plaza name : 55th & 6th Ave Fountain
Comments for this Plaza : 1
[(0.24724797930973505, u'peace', 52, 1), (0.20902181487755908, u'girl', 208, 1), (0.20119542622303027, u'place', 359, 1)]
Plaza name : Savoy Public Plaza
Comments for this Plaza : 2
[]
Plaza name : Richard Tucker Square Park / Lincoln Square
Comments for this Plaza : 56
[(1.1812322182992825, u'education', 3, 2), (0.76644858667451, u'horses', 11, 2), (0.7180376610298872, u'center', 444, 3), (0.5495928804758488, u'market', 42, 2), (0.4944959586194701, u'book', 58, 2), (0.4765053580405043, u'encounter', 3, 1), (0.4765053580405043, u'keep', 4, 1), (0.4765053580405043, u'treats', 3, 1), (0.43634596624436994, u'square', 258, 2), (0.4265411426274218, u'food', 165, 2), (0.41905978419640516, u'desserts', 4, 1), (0.41905978419640516, u'pocket', 5, 1), (0.41905978419640516, u'noon', 6, 1), (0.41905978419640516, u'cast', 4, 1), (0.41905978419640516, u'boardwalk', 9, 1), (0.39259221192679217, u'people', 414, 2), (0.383224293337255, u'read', 12, 1), (0.383224293337255, u'cider', 7, 1), (0.383224293337255, u'mercy', 6, 1), (0.3581970477838151, u'laura', 7, 1), (0.3581970477838151, u'plays', 6, 1), (0.3581970477838151, u'attention', 7, 1), (0.3581970477838151, u'kisses', 7, 1), (0.3581970477838151, u'pie', 10, 1), (0.3581970477838151, u'relief', 11, 1), (0.3394536660667255, u'bound', 9, 1), (0.3394536660667255, u'tomato', 8, 1), (0.3247342047137871, u'red', 9, 1), (0.312771272649591, u'foot', 17, 1), (0.30279310656411385, u'piano', 19, 1), (0.30279310656411385, u'fortune', 14, 1), (0.30279310656411385, u'waffles', 21, 1), (0.2942998296638024, u'magazine', 16, 1), (0.28695173228265203, u'cookie', 16, 1), (0.28695173228265203, u'president', 21, 1), (0.28050889359956055, u'help', 21, 1), (0.2747964402379244, u'area', 21, 1), (0.2650699754534338, u'shoes', 26, 1), (0.2650699754534338, u'mini', 30, 1), (0.26087773109487916, u'jazz', 62, 1), (0.25704484358604845, u'sunrise', 33, 1), (0.25704484358604845, u'music', 50, 1), (0.253521478030654, u'heat', 43, 1), (0.25026701779259936, u'band', 40, 1), (0.23934588700996243, u'air', 73, 1), (0.23484671873236782, u'apple', 90, 1), (0.23484671873236782, u'mind', 82, 1), (0.22721089587269092, u'tree', 148, 1), (0.22392725897047894, u'taxi', 118, 1), (0.22239482227710577, u'beauty', 117, 1)]
Plaza name : Allen Mall Six
Comments for this Plaza : 2
[(0.4765053580405043, u'pay', 3, 1), (0.253521478030654, u'phone', 31, 1)]
Plaza name : Alamo "The Cube"
Comments for this Plaza : 150
[(10.73028021344314, u'cube', 89, 28), (1.2071725573381817, u'place', 359, 6), (1.1812322182992825, u'bagpipes', 5, 2), (0.8675062266953522, u'guy', 138, 4), (0.8381195683928103, u'hardcore', 5, 2), (0.76644858667451, u'jam', 10, 2), (0.76644858667451, u'trouble', 7, 2), (0.76644858667451, u'performer', 8, 2), (0.678907332133451, u'stranger', 10, 2), (0.678907332133451, u'strangers', 10, 2), (0.6494684094275742, u'gym', 11, 2), (0.5906161091496412, u'happen', 4, 1), (0.5906161091496412, u'worldwide', 6, 1), (0.5301399509068676, u'mini', 30, 2), (0.5005340355851987, u'band', 40, 2), (0.4765053580405043, u'newest', 3, 1), (0.4765053580405043, u'lovelies', 3, 1), (0.4765053580405043, u'true', 3, 1), (0.4765053580405043, u'poodle', 3, 1), (0.4765053580405043, u'mud', 7, 1), (0.4765053580405043, u'scarves', 3, 1), (0.4765053580405043, u'duo', 4, 1), (0.4765053580405043, u'single', 3, 1), (0.4765053580405043, u'tells', 3, 1), (0.4765053580405043, u'pas', 3, 1), (0.4765053580405043, u'basement', 4, 1), (0.4740599351635292, u'school', 63, 2), (0.4740599351635292, u'power', 50, 2), (0.46969343746473563, u'sculpture', 110, 2), (0.4616587225516543, u'coffee', 121, 2), (0.4478545179409579, u'thing', 86, 2), (0.4478545179409579, u'spot', 118, 2), (0.43634596624436994, u'fun', 208, 2), (0.42214847406870754, u'snow', 158, 2), (0.42006215899384874, u'weather', 186, 2), (0.41905978419640516, u'atlas', 10, 1), (0.41905978419640516, u'styles', 4, 1), (0.41905978419640516, u'knit', 4, 1), (0.41905978419640516, u'hub', 4, 1), (0.41905978419640516, u'drum', 6, 1), (0.41905978419640516, u'ages', 5, 1), (0.41804362975511816, u'friends', 184, 2), (0.40884576254210775, u'happy', 220, 2), (0.4055293412502919, u'buildings', 353, 2), (0.4039389118524379, u'sun', 338, 2), (0.39259221192679217, u'people', 414, 2), (0.383224293337255, u'pause', 8, 1), (0.383224293337255, u'hit', 6, 1), (0.383224293337255, u'drums', 6, 1), (0.383224293337255, u'cactus', 17, 1)]
Plaza name : Central Park - Vanderbilt Gate
Comments for this Plaza : 71
[(2.859032148243026, u'conservatory', 18, 6), (1.7718483274489236, u'gates', 4, 3), (1.149672880011765, u'gate', 9, 3), (0.5739034645653041, u'entrance', 20, 2), (0.5301399509068676, u'rainbow', 42, 2), (0.4765053580405043, u'abode', 3, 1), (0.4765053580405043, u'watercolor', 3, 1), (0.4765053580405043, u'magnificent', 4, 1), (0.4765053580405043, u'dirt', 3, 1), (0.4765053580405043, u'wolf', 3, 1), (0.4765053580405043, u'prints', 3, 1), (0.4765053580405043, u'option', 3, 1), (0.4478545179409579, u'style', 140, 2), (0.41905978419640516, u'nos', 7, 1), (0.41905978419640516, u'ducks', 6, 1), (0.41905978419640516, u'parka', 10, 1), (0.41608912717638463, u'afternoon', 200, 2), (0.383224293337255, u'period', 6, 1), (0.383224293337255, u'amongst', 9, 1), (0.383224293337255, u'perks', 6, 1), (0.383224293337255, u'reminder', 7, 1), (0.383224293337255, u'gardens', 8, 1), (0.3581970477838151, u'grandma', 7, 1), (0.3581970477838151, u'experience', 18, 1), (0.3394536660667255, u'tiffany', 7, 1), (0.3247342047137871, u'better', 11, 1), (0.3247342047137871, u'mile', 11, 1), (0.3247342047137871, u'iron', 11, 1), (0.3247342047137871, u'ghost', 10, 1), (0.312771272649591, u'dear', 9, 1), (0.30279310656411385, u'museum', 55, 1), (0.28050889359956055, u'sorry', 20, 1), (0.28050889359956055, u'rock', 145, 1), (0.28050889359956055, u'landscape', 35, 1), (0.2747964402379244, u'leaves', 36, 1), (0.26968351175578803, u'blue', 32, 1), (0.26968351175578803, u'met', 142, 1), (0.26968351175578803, u'windows', 22, 1), (0.2650699754534338, u'cousin', 25, 1), (0.2650699754534338, u'club', 18, 1), (0.26087773109487916, u'commute', 32, 1), (0.253521478030654, u'heat', 43, 1), (0.24724797930973505, u'perfect', 126, 1), (0.24724797930973505, u'east', 32, 1), (0.24443647588626344, u'avenue', 47, 1), (0.24443647588626344, u'town', 69, 1), (0.23934588700996243, u'ave', 58, 1), (0.23484671873236782, u'com', 81, 1), (0.22721089587269092, u'flowers', 161, 1), (0.22721089587269092, u'tree', 148, 1)]
Plaza name : Public Plaza
Comments for this Plaza : 1
[(0.3581970477838151, u'bustle', 8, 1), (0.312771272649591, u'hustle', 14, 1), (0.28050889359956055, u'rooftop', 36, 1), (0.23934588700996243, u'air', 73, 1), (0.21442838668808284, u'streets', 136, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : Bronze Elephant Statue
Comments for this Plaza : 2
[(0.4765053580405043, u'elephant', 38, 1), (0.41905978419640516, u'cap', 4, 1), (0.41905978419640516, u'bronze', 6, 1), (0.28050889359956055, u'union', 88, 1), (0.22392725897047894, u'taxi', 118, 1), (0.21817298312218497, u'square', 258, 1)]
Plaza name : Harriet Tubman Memorial Statue
Comments for this Plaza : 22
[(2.362464436598565, u'moses', 5, 4), (0.9530107160810086, u'railroad', 4, 2), (0.4765053580405043, u'inspire', 3, 1), (0.41905978419640516, u'join', 8, 1), (0.41905978419640516, u'rights', 4, 1), (0.383224293337255, u'cotton', 9, 1), (0.3394536660667255, u'bananas', 7, 1), (0.3247342047137871, u'underground', 10, 1), (0.312771272649591, u'wonder', 20, 1), (0.28050889359956055, u'standing', 19, 1), (0.2747964402379244, u'month', 26, 1), (0.26968351175578803, u'women', 37, 1), (0.24724797930973505, u'room', 185, 1), (0.23082936127582715, u'plaza', 209, 1), (0.23082936127582715, u'winter', 129, 1), (0.21442838668808284, u'streets', 136, 1), (0.21107423703435377, u'storm', 126, 1), (0.20804456358819232, u'clouds', 252, 1)]
Plaza name : Whole Foods City Picnic
Comments for this Plaza : 1
[(1.0721419334404143, u'streets', 136, 5), (0.5217554621897583, u'space', 36, 2), (0.4765053580405043, u'encourages', 3, 1), (0.4765053580405043, u'forms', 3, 1), (0.4765053580405043, u'recreation', 3, 1), (0.383224293337255, u'foods', 7, 1), (0.3394536660667255, u'transportation', 8, 1), (0.2942998296638024, u'celebration', 18, 1), (0.28050889359956055, u'miles', 24, 1), (0.2747964402379244, u'yorkers', 33, 1), (0.21107423703435377, u'walk', 212, 1), (0.21003107949692437, u'midtown', 343, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : Finn Square
Comments for this Plaza : 3
[(0.4765053580405043, u'ladder', 3, 1), (0.41905978419640516, u'put', 4, 1), (0.383224293337255, u'hook', 5, 1), (0.26968351175578803, u'windows', 22, 1), (0.2650699754534338, u'smile', 32, 1), (0.25704484358604845, u'cityscape', 54, 1), (0.22897464218793187, u'face', 64, 1), (0.22239482227710577, u'beauty', 117, 1), (0.20804456358819232, u'downtown', 175, 1), (0.20196945592621895, u'way', 247, 1)]
Plaza name : Astor Place
Comments for this Plaza : 1655
[(19.544438960200004, u'cube', 89, 51), (17.906392933849695, u'place', 359, 89), (9.580607333431374, u'ties', 30, 25), (6.898037280070589, u'zip', 24, 18), (6.227055023758961, u'subway', 206, 28), (5.789566440578237, u'streets', 136, 27), (5.4959288047584876, u'tie', 36, 20), (5.123986723359972, u'village', 86, 19), (4.215467226709805, u'cactus', 17, 11), (3.9528467081756538, u'man', 216, 19), (3.9259221192679217, u'people', 414, 20), (3.2531483501075704, u'guy', 138, 15), (3.2070657774539484, u'sky', 427, 16), (3.06579434669804, u'cooper', 35, 8), (2.966975751716821, u'train', 73, 12), (2.901708809984124, u'graffiti', 65, 12), (2.859032148243026, u'tiles', 10, 6), (2.8050889359956055, u'union', 88, 10), (2.7934021645383185, u'truck', 66, 12), (2.7572420990815942, u'architecture', 409, 14), (2.7045793266465, u'photo', 283, 13), (2.6256029270408465, u'way', 247, 13), (2.6180757974662194, u'fun', 208, 12), (2.4463430450481636, u'reflection', 142, 11), (2.4331760475017514, u'buildings', 353, 12), (2.3825267902025216, u'mud', 7, 5), (2.34597628445082, u'food', 165, 11), (2.2992399636531498, u'photography', 220, 11), (2.2884901994701154, u'downtown', 175, 11), (2.27313943299651, u'pole', 14, 7), (2.252403160133394, u'color', 95, 9), (2.2440711487964844, u'dude', 34, 8), (2.2440711487964844, u'rock', 145, 8), (2.18172983122185, u'part', 96, 10), (2.0563587486883876, u'dance', 65, 8), (2.044228812710539, u'happy', 220, 10), (1.9484052282827227, u'advice', 13, 6), (1.899668133309184, u'sunset', 352, 9), (1.8811963338980318, u'girl', 208, 9), (1.8766276358975458, u'lamp', 15, 6), (1.8724010722937308, u'clouds', 252, 9), (1.826144117664154, u'station', 44, 7), (1.8177251033359707, u'sun', 338, 9), (1.7993139051023392, u'music', 50, 7), (1.7785004161183495, u'sandy', 314, 9), (1.7718483274489236, u'gum', 6, 3), (1.7718483274489236, u'bagpipes', 5, 3), (1.7518691245481952, u'photos', 86, 7), (1.7061645705096873, u'office', 275, 8), (1.6926634724907388, u'middle', 88, 7)]
Plaza name : Central Park - The Arcade
Comments for this Plaza : 7
[(0.3581970477838151, u'foliage', 11, 1), (0.3394536660667255, u'voice', 8, 1), (0.23278351371152656, u'right', 58, 1), (0.23278351371152656, u'bit', 58, 1), (0.22721089587269092, u'heart', 86, 1), (0.22392725897047894, u'autumn', 119, 1), (0.20902181487755908, u'girl', 208, 1)]
Plaza name : Micro Park
Comments for this Plaza : 3
[(0.3581970477838151, u'lemonade', 8, 1), (0.26968351175578803, u'parks', 81, 1), (0.26968351175578803, u'village', 86, 1), (0.23278351371152656, u'west', 97, 1), (0.23278351371152656, u'truck', 66, 1), (0.22239482227710577, u'subway', 206, 1), (0.22092804904991536, u'week', 180, 1), (0.20804456358819232, u'trees', 239, 1)]
Plaza name : US Post Office
Comments for this Plaza : 597
[(21.523616365665596, u'post', 170, 94), (19.407621989547692, u'office', 275, 91), (16.0, u'stays', 16, 16), (15.0, u'completion', 15, 15), (14.0, u'couriers', 14, 14), (7.2812615734078445, u'gloom', 24, 19), (7.147580370607565, u'swift', 17, 15), (7.147580370607565, u'rounds', 17, 15), (5.452082913370388, u'steps', 94, 19), (5.0, u'postal', 5, 5), (4.656561621189597, u'mail', 19, 13), (4.609657626160457, u'columns', 15, 11), (4.332809012842506, u'architecture', 409, 22), (4.292880506692131, u'rain', 235, 21), (4.134312764047489, u'stamps', 8, 7), (4.0, u'scion', 4, 4), (3.80282217045981, u'heat', 43, 15), (3.588262029584014, u'snow', 158, 17), (2.650699754534338, u'stairs', 38, 10), (2.648698466974222, u'ceiling', 27, 9), (2.198371521903395, u'door', 26, 8), (2.1003107949692437, u'midtown', 343, 10), (2.095298920982026, u'main', 9, 5), (2.0870218487590333, u'station', 44, 8), (1.916121466686275, u'step', 12, 5), (1.7718483274489236, u'bone', 4, 3), (1.5422690615162908, u'pigeons', 49, 6), (1.501602106755596, u'garden', 56, 6), (1.456311945117346, u'photo', 283, 7), (1.429516074121513, u'carts', 5, 3), (1.4193526943760215, u'buildings', 353, 7), (1.357814664266902, u'launch', 12, 4), (1.3435635538228736, u'taxi', 118, 6), (1.2571793525892154, u'note', 8, 3), (1.196729435049812, u'show', 171, 5), (1.196729435049812, u'birds', 66, 5), (1.1812322182992825, u'motor', 3, 2), (1.1812322182992825, u'stamp', 3, 2), (1.1812322182992825, u'branch', 4, 2), (1.1478069291306081, u'lines', 17, 4), (1.090864915610925, u'square', 258, 5), (1.0607666392371424, u'picture', 148, 5), (1.0221144063552694, u'home', 245, 5), (0.9889919172389402, u'hours', 54, 4), (0.9889919172389402, u'empire', 274, 4), (0.9777459035450538, u'avenue', 47, 4), (0.9530107160810086, u'issues', 4, 2), (0.9530107160810086, u'meat', 6, 2), (0.9530107160810086, u'squash', 4, 2), (0.9530107160810086, u'pillars', 4, 2)]
Plaza name : Triboro Plaza
Comments for this Plaza : 5
[(0.4765053580405043, u'creep', 3, 1), (0.28695173228265203, u'queens', 19, 1), (0.25026701779259936, u'bus', 47, 1), (0.22239482227710577, u'subway', 206, 1), (0.2156294170196073, u'urban', 124, 1), (0.20044161109087177, u'sky', 427, 1)]
Plaza name : Paul Milstein Pool and Terrace
Comments for this Plaza : 41
[(0.9573835480398497, u'center', 444, 4), (0.6132686438131616, u'home', 245, 3), (0.6055862131282277, u'nighttime', 23, 2), (0.5908375926603416, u'architecture', 409, 3), (0.4765053580405043, u'brought', 3, 1), (0.4765053580405043, u'kindle', 3, 1), (0.4616587225516543, u'plaza', 209, 2), (0.44478964455421155, u'reflection', 142, 2), (0.41905978419640516, u'dapper', 5, 1), (0.41905978419640516, u'knees', 5, 1), (0.41608912717638463, u'photo', 283, 2), (0.41419518157927404, u'water', 295, 2), (0.383224293337255, u'mommy', 9, 1), (0.3247342047137871, u'pool', 26, 1), (0.2942998296638024, u'installation', 39, 1), (0.28695173228265203, u'drinks', 34, 1), (0.2747964402379244, u'everyday', 25, 1), (0.26968351175578803, u'scene', 33, 1), (0.26968351175578803, u'festival', 92, 1), (0.26968351175578803, u'lunchtime', 49, 1), (0.2650699754534338, u'feet', 60, 1), (0.2650699754534338, u'film', 110, 1), (0.2650699754534338, u'sisters', 22, 1), (0.26087773109487916, u'weeks', 26, 1), (0.253521478030654, u'phone', 31, 1), (0.25026701779259936, u'band', 40, 1), (0.2370299675817646, u'school', 63, 1), (0.23484671873236782, u'sculpture', 110, 1), (0.21107423703435377, u'snow', 158, 1), (0.20804456358819232, u'afternoon', 200, 1)]
Plaza name : Farmers' Gate
Comments for this Plaza : 33
[(0.7163940955676302, u'north', 7, 2), (0.5906161091496412, u'yard', 4, 1), (0.5393670235115761, u'run', 37, 2), (0.4765053580405043, u'woods', 4, 1), (0.4765053580405043, u'pathway', 3, 1), (0.42006215899384874, u'weather', 186, 2), (0.41905978419640516, u'sundown', 8, 1), (0.41905978419640516, u'ducks', 6, 1), (0.383224293337255, u'running', 5, 1), (0.3581970477838151, u'hazy', 7, 1), (0.3394536660667255, u'grind', 9, 1), (0.3394536660667255, u'begin', 8, 1), (0.3394536660667255, u'edge', 10, 1), (0.30279310656411385, u'half', 14, 1), (0.2942998296638024, u'march', 12, 1), (0.28695173228265203, u'snowy', 19, 1), (0.28050889359956055, u'boots', 32, 1), (0.28050889359956055, u'standing', 19, 1), (0.28050889359956055, u'shadows', 20, 1), (0.2747964402379244, u'lives', 25, 1), (0.26968351175578803, u'location', 27, 1), (0.2650699754534338, u'uptown', 31, 1), (0.26087773109487916, u'views', 54, 1), (0.24180906749867698, u'let', 63, 1), (0.23934588700996243, u'ice', 267, 1), (0.23484671873236782, u'neighborhood', 49, 1), (0.23278351371152656, u'west', 97, 1), (0.23082936127582715, u'front', 86, 1), (0.22897464218793187, u'end', 57, 1), (0.22721089587269092, u'tree', 148, 1), (0.22392725897047894, u'line', 84, 1), (0.22239482227710577, u'beauty', 117, 1), (0.21952219380422947, u'days', 128, 1), (0.21687655667383804, u'guy', 138, 1), (0.21215332784742846, u'side', 111, 1), (0.21107423703435377, u'walk', 212, 1), (0.19970710216551604, u'spring', 247, 1), (0.19629610596339608, u'people', 414, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : The Village Green
Comments for this Plaza : 9
[(0.4765053580405043, u'toad', 3, 1), (0.30279310656411385, u'child', 21, 1), (0.26968351175578803, u'village', 86, 1), (0.23934588700996243, u'sunny', 86, 1), (0.20804456358819232, u'downtown', 175, 1), (0.20804456358819232, u'clouds', 252, 1), (0.20196945592621895, u'sun', 338, 1), (0.20044161109087177, u'sky', 427, 1)]
Plaza name : Flatiron Plaza
Comments for this Plaza : 45
[(2.29934576002353, u'flatiron', 11, 6), (1.1812322182992825, u'fringe', 4, 2), (0.7180376610298872, u'yes', 81, 3), (0.6869239265637956, u'state', 343, 3), (0.5908375926603416, u'architecture', 409, 3), (0.5495928804758488, u'yesterday', 49, 2), (0.4944959586194701, u'empire', 274, 2), (0.48361813499735395, u'middle', 88, 2), (0.41905978419640516, u'bread', 8, 1), (0.41905978419640516, u'underwear', 5, 1), (0.40884576254210775, u'rain', 235, 2), (0.4055293412502919, u'buildings', 353, 2), (0.383224293337255, u'shape', 7, 1), (0.383224293337255, u'rings', 6, 1), (0.3394536660667255, u'puddle', 15, 1), (0.312771272649591, u'gift', 16, 1), (0.312771272649591, u'plants', 15, 1), (0.312771272649591, u'interview', 24, 1), (0.30279310656411385, u'moments', 19, 1), (0.2942998296638024, u'district', 19, 1), (0.2942998296638024, u'caught', 15, 1), (0.28695173228265203, u'pumpkin', 33, 1), (0.28695173228265203, u'circa', 18, 1), (0.28050889359956055, u'cloudy', 27, 1), (0.2747964402379244, u'son', 25, 1), (0.26968351175578803, u'foggy', 36, 1), (0.26087773109487916, u'orange', 28, 1), (0.26087773109487916, u'breakfast', 43, 1), (0.253521478030654, u'shoot', 57, 1), (0.25026701779259936, u'photos', 86, 1), (0.24724797930973505, u'book', 58, 1), (0.24443647588626344, u'thank', 39, 1), (0.23934588700996243, u'random', 69, 1), (0.23934588700996243, u'air', 73, 1), (0.23484671873236782, u'mind', 82, 1), (0.23082936127582715, u'plaza', 209, 1), (0.22392725897047894, u'autumn', 119, 1), (0.22392725897047894, u'statue', 345, 1), (0.21687655667383804, u'cool', 137, 1), (0.21687655667383804, u'look', 103, 1), (0.21107423703435377, u'storm', 126, 1), (0.21003107949692437, u'midtown', 343, 1), (0.20804456358819232, u'photo', 283, 1), (0.20804456358819232, u'clouds', 252, 1), (0.20709759078963702, u'water', 295, 1), (0.20442288127105387, u'fall', 321, 1), (0.20044161109087177, u'sky', 427, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : Grand Army Plaza
Comments for this Plaza : 383
[(6.232392754447333, u'plaza', 209, 27), (4.752351324934158, u'army', 29, 14), (3.12771272649591, u'horse', 33, 10), (2.8050889359956055, u'grand', 26, 10), (2.095298920982026, u'pony', 11, 5), (1.7993139051023392, u'pigeons', 49, 7), (1.5674908127933525, u'statue', 345, 7), (1.4775196592404765, u'snow', 158, 7), (1.456311945117346, u'photo', 283, 7), (1.429516074121513, u'zodiac', 12, 3), (1.3632653752361454, u'flowers', 161, 6), (1.2664454222061228, u'walk', 212, 6), (1.2601864769815463, u'midtown', 343, 6), (1.2541308892653544, u'photography', 220, 6), (1.1816751853206833, u'architecture', 409, 6), (1.1812322182992825, u'buggy', 3, 2), (1.0435109243795166, u'places', 43, 4), (1.0221144063552694, u'world', 322, 5), (0.9530107160810086, u'pow', 4, 2), (0.9530107160810086, u'form', 5, 2), (0.9083793196923415, u'monument', 39, 3), (0.860855196847956, u'tulips', 26, 3), (0.8243893207137731, u'pigeon', 34, 3), (0.8110586825005838, u'buildings', 353, 4), (0.8017664443634871, u'sky', 427, 4), (0.76644858667451, u'airplane', 6, 2), (0.76644858667451, u'cape', 6, 2), (0.76644858667451, u'tornado', 6, 2), (0.7417439379292052, u'hotel', 115, 3), (0.7180376610298872, u'pink', 63, 3), (0.7180376610298872, u'birds', 66, 3), (0.7163940955676302, u'waffle', 29, 2), (0.7045401561971034, u'travel', 98, 3), (0.7045401561971034, u'nice', 111, 3), (0.6924880838274814, u'front', 86, 3), (0.6717817769114368, u'line', 84, 3), (0.6585665814126884, u'awesome', 145, 3), (0.6494684094275742, u'race', 16, 2), (0.6494684094275742, u'tunnel', 18, 2), (0.6398117139411327, u'food', 165, 3), (0.6185378768560083, u'life', 285, 3), (0.6132686438131616, u'rain', 235, 3), (0.6059083677786569, u'sun', 338, 3), (0.5928334720394498, u'sandy', 314, 3), (0.5906161091496412, u'decker', 3, 1), (0.5906161091496412, u'fella', 4, 1), (0.5885996593276048, u'animals', 22, 2), (0.5885996593276048, u'installation', 39, 2), (0.5610177871991211, u'cloudy', 27, 2), (0.5393670235115761, u'parks', 81, 2)]
Plaza name : Cliff Street Plaza
Comments for this Plaza : 7
[(0.5906161091496412, u'pineapple', 3, 1), (0.41905978419640516, u'pray', 4, 1), (0.28695173228265203, u'joy', 24, 1), (0.2650699754534338, u'gotta', 27, 1), (0.23934588700996243, u'come', 48, 1), (0.20442288127105387, u'rain', 235, 1), (0.20442288127105387, u'home', 245, 1)]
Plaza name : wall street cafe
Comments for this Plaza : 1
[]
Plaza name : Broadway Median Mall @ 74th St
Comments for this Plaza : 3
[(0.9530107160810086, u'ford', 4, 2), (0.25704484358604845, u'vintage', 43, 1), (0.22897464218793187, u'car', 68, 1), (0.22239482227710577, u'hello', 83, 1)]
Plaza name : Washington Square Park Petanque Court
Comments for this Plaza : 6
[(0.5140896871720969, u'music', 50, 2), (0.4765053580405043, u'hairs', 3, 1), (0.41905978419640516, u'arm', 5, 1), (0.3581970477838151, u'pure', 7, 1), (0.3394536660667255, u'shitty', 9, 1), (0.3247342047137871, u'mood', 11, 1), (0.30279310656411385, u'deep', 17, 1), (0.30279310656411385, u'piano', 19, 1), (0.28695173228265203, u'start', 24, 1), (0.28050889359956055, u'grand', 26, 1), (0.2747964402379244, u'soul', 20, 1), (0.26968351175578803, u'met', 142, 1), (0.2650699754534338, u'change', 21, 1), (0.26087773109487916, u'jazz', 62, 1), (0.253521478030654, u'fuck', 43, 1), (0.25026701779259936, u'money', 37, 1), (0.24443647588626344, u'thank', 39, 1), (0.24180906749867698, u'middle', 88, 1), (0.23934588700996243, u'bike', 65, 1), (0.22897464218793187, u'end', 57, 1), (0.22553064631951622, u'baby', 103, 1), (0.21817298312218497, u'square', 258, 1), (0.21817298312218497, u'part', 96, 1), (0.20119542622303027, u'place', 359, 1)]
Plaza name : Canyon of Heroes
Comments for this Plaza : 29
[(0.8381195683928103, u'heroes', 6, 2), (0.5885996593276048, u'bowl', 14, 2), (0.4765053580405043, u'canyon', 3, 1), (0.41905978419640516, u'tuck', 4, 1), (0.383224293337255, u'bees', 7, 1), (0.383224293337255, u'tape', 7, 1), (0.383224293337255, u'vision', 5, 1), (0.3581970477838151, u'mets', 6, 1), (0.3581970477838151, u'journey', 6, 1), (0.312771272649591, u'win', 9, 1), (0.28050889359956055, u'protest', 33, 1), (0.2747964402379244, u'giants', 46, 1), (0.2747964402379244, u'super', 28, 1), (0.2650699754534338, u'rest', 36, 1), (0.2650699754534338, u'hell', 31, 1), (0.2650699754534338, u'forever', 19, 1), (0.26087773109487916, u'cars', 33, 1), (0.253521478030654, u'fuck', 43, 1), (0.253521478030654, u'construction', 47, 1), (0.24724797930973505, u'room', 185, 1), (0.24724797930973505, u'model', 37, 1), (0.23934588700996243, u'parade', 56, 1), (0.22897464218793187, u'wall', 83, 1), (0.21107423703435377, u'storm', 126, 1), (0.20902181487755908, u'photography', 220, 1), (0.20442288127105387, u'home', 245, 1)]
Plaza name : Central Park - Pat Hoffman Friedman Playground
Comments for this Plaza : 18
[(3.0, u'voltage', 3, 3), (0.4765053580405043, u'soccer', 3, 1), (0.41905978419640516, u'estate', 4, 1), (0.3394536660667255, u'danger', 8, 1), (0.3247342047137871, u'shorts', 10, 1), (0.30279310656411385, u'breeze', 21, 1), (0.2942998296638024, u'engagement', 16, 1), (0.28695173228265203, u'snowy', 19, 1), (0.2747964402379244, u'set', 29, 1), (0.26968351175578803, u'eye', 32, 1), (0.23278351371152656, u'cab', 73, 1), (0.22392725897047894, u'taxi', 118, 1), (0.22239482227710577, u'nature', 180, 1), (0.21952219380422947, u'awesome', 145, 1), (0.2132705713137109, u'break', 180, 1), (0.21107423703435377, u'walk', 212, 1), (0.20902181487755908, u'girl', 208, 1), (0.20709759078963702, u'water', 295, 1), (0.2035821084092901, u'lights', 274, 1)]
Plaza name : Van Cortland Tail (GreenStreets)
Comments for this Plaza : 3
[(0.30279310656411385, u'bubbles', 43, 1), (0.21817298312218497, u'colors', 90, 1), (0.20804456358819232, u'man', 216, 1), (0.20442288127105387, u'fall', 321, 1)]
Plaza name : Silver Towers Park
Comments for this Plaza : 22
[(0.4765053580405043, u'lab', 3, 1), (0.4765053580405043, u'turf', 3, 1), (0.41905978419640516, u'lighting', 7, 1), (0.41905978419640516, u'hug', 4, 1), (0.41905978419640516, u'bob', 4, 1), (0.3581970477838151, u'youth', 9, 1), (0.3394536660667255, u'pet', 10, 1), (0.312771272649591, u'nap', 22, 1), (0.2942998296638024, u'towers', 31, 1), (0.28695173228265203, u'children', 16, 1), (0.28050889359956055, u'puppy', 24, 1), (0.2747964402379244, u'everyday', 25, 1), (0.2650699754534338, u'memories', 22, 1), (0.2650699754534338, u'smile', 32, 1), (0.2650699754534338, u'stairs', 38, 1), (0.26087773109487916, u'views', 54, 1), (0.26087773109487916, u'boys', 81, 1), (0.26087773109487916, u'wish', 61, 1), (0.253521478030654, u'shoot', 57, 1), (0.25026701779259936, u'playing', 54, 1), (0.24180906749867698, u'kids', 72, 1), (0.23082936127582715, u'plaza', 209, 1), (0.22897464218793187, u'couple', 63, 1), (0.22553064631951622, u'girls', 90, 1), (0.22392725897047894, u'spot', 118, 1), (0.22239482227710577, u'hello', 83, 1), (0.22092804904991536, u'dog', 121, 1), (0.2156294170196073, u'friend', 123, 1), (0.21107423703435377, u'sunset', 352, 1), (0.20902181487755908, u'girl', 208, 1), (0.20804456358819232, u'clouds', 252, 1), (0.20044161109087177, u'sky', 427, 1)]
Plaza name : Dale F. Frey Plaza
Comments for this Plaza : 1
[(0.25026701779259936, u'class', 67, 1)]
Plaza name : R/GA Courtyard
Comments for this Plaza : 4
[(0.23278351371152656, u'truck', 66, 1)]
Plaza name : Gracie Mews Plaza
Comments for this Plaza : 1
[(0.6494684094275742, u'rent', 10, 2), (0.28050889359956055, u'stuck', 19, 1), (0.2370299675817646, u'head', 44, 1)]
Plaza name : One Penn Outdoor Plaza
Comments for this Plaza : 1
[(0.3247342047137871, u'tunnel', 18, 1)]
Plaza name : Downtown Swaggin It
Comments for this Plaza : 1
[]
Plaza name : Union Square Circle
Comments for this Plaza : 492
[(11.220355743982422, u'union', 88, 40), (6.327016510543364, u'square', 258, 29), (4.0, u'hare', 4, 4), (3.022760842617168, u'occupy', 41, 11), (2.149182286702891, u'chess', 40, 6), (2.060771779691387, u'wall', 83, 9), (2.0015534004939517, u'subway', 206, 9), (1.9060214321620172, u'mayday', 12, 4), (1.7666649536705648, u'people', 414, 9), (1.6487786414275463, u'market', 42, 6), (1.6294845959806858, u'truck', 66, 7), (1.5181358967168663, u'guy', 138, 7), (1.509405919137251, u'fashion', 347, 7), (1.2370757537120165, u'life', 285, 6), (1.1812322182992825, u'rape', 3, 2), (1.1812322182992825, u'carnival', 6, 2), (1.1812322182992825, u'orchids', 3, 2), (1.1196362948523946, u'style', 140, 5), (1.0553711851717689, u'snow', 158, 5), (1.0435109243795166, u'crazy', 66, 4), (1.0098472796310949, u'sun', 338, 5), (0.9088435834907637, u'flowers', 161, 4), (0.9083793196923415, u'drunk', 13, 3), (0.8726919324887399, u'fun', 208, 4), (0.8530822852548436, u'food', 165, 4), (0.8381195683928103, u'underwear', 5, 2), (0.8381195683928103, u'thunder', 5, 2), (0.8381195683928103, u'weed', 7, 2), (0.8283903631585481, u'water', 295, 4), (0.8176915250842155, u'world', 322, 4), (0.809050535267364, u'dogs', 32, 3), (0.7952099263603014, u'moon', 72, 3), (0.76644858667451, u'chalk', 7, 2), (0.7605644340919621, u'shit', 47, 3), (0.750801053377798, u'playing', 54, 3), (0.725427202496031, u'graffiti', 65, 3), (0.7180376610298872, u'yes', 81, 3), (0.7163940955676302, u'babe', 11, 2), (0.7163940955676302, u'guard', 8, 2), (0.7045401561971034, u'sculpture', 110, 3), (0.6869239265637956, u'state', 343, 3), (0.678907332133451, u'strangers', 10, 2), (0.6765919389585486, u'girls', 90, 3), (0.6545189493665549, u'party', 104, 3), (0.6494684094275742, u'brothers', 10, 2), (0.6398117139411327, u'office', 275, 3), (0.6332227111030614, u'sunset', 352, 3), (0.6241336907645769, u'photo', 283, 3), (0.6241336907645769, u'afternoon', 200, 3), (0.6132686438131616, u'rain', 235, 3)]
Plaza name : Beat The Streets Time Square Event
Comments for this Plaza : 2
[(0.25026701779259936, u'bus', 47, 1), (0.21442838668808284, u'streets', 136, 1)]
Plaza name : Minetta Triangle
Comments for this Plaza : 25
[(0.6983505411345796, u'west', 97, 3), (0.4765053580405043, u'cent', 3, 1), (0.4765053580405043, u'skateboarder', 4, 1), (0.4765053580405043, u'hooray', 4, 1), (0.41905978419640516, u'triangle', 5, 1), (0.3994142043310321, u'spring', 247, 2), (0.383224293337255, u'benches', 6, 1), (0.3247342047137871, u'red', 9, 1), (0.30279310656411385, u'piano', 19, 1), (0.30279310656411385, u'umbrella', 25, 1), (0.2942998296638024, u'animals', 22, 1), (0.2942998296638024, u'wood', 16, 1), (0.2747964402379244, u'door', 26, 1), (0.26968351175578803, u'village', 86, 1), (0.25026701779259936, u'garden', 56, 1), (0.24443647588626344, u'avenue', 47, 1), (0.23082936127582715, u'house', 57, 1), (0.22897464218793187, u'end', 57, 1), (0.22239482227710577, u'hello', 83, 1), (0.22092804904991536, u'dog', 121, 1), (0.21817298312218497, u'colors', 90, 1), (0.21442838668808284, u'streets', 136, 1), (0.20804456358819232, u'trees', 239, 1), (0.20804456358819232, u'afternoon', 200, 1), (0.20119542622303027, u'place', 359, 1)]
Plaza name : Matthew S. Turner Triangle
Comments for this Plaza : 0
[]
Plaza name : Timesculpture at Lincoln Center
Comments for this Plaza : 0
[]
Plaza name : Sony Store
Comments for this Plaza : 15
[(0.6494684094275742, u'flash', 11, 2), (0.5005340355851987, u'store', 51, 2), (0.4765053580405043, u'grandmaster', 3, 1), (0.4765053580405043, u'putting', 3, 1), (0.4765053580405043, u'swift', 17, 1), (0.383224293337255, u'master', 8, 1), (0.383224293337255, u'max', 8, 1), (0.3247342047137871, u'artwork', 9, 1), (0.312771272649591, u'screen', 31, 1), (0.30279310656411385, u'display', 18, 1), (0.28050889359956055, u'grand', 26, 1), (0.2650699754534338, u'aka', 30, 1), (0.26087773109487916, u'name', 43, 1), (0.25704484358604845, u'performance', 30, 1), (0.253521478030654, u'someone', 47, 1), (0.24724797930973505, u'event', 55, 1), (0.22392725897047894, u'style', 140, 1), (0.22392725897047894, u'thing', 86, 1), (0.20276467062514594, u'buildings', 353, 1)]
Plaza name : Washington Heights Open Air Market
Comments for this Plaza : 3
[(0.3581970477838151, u'effect', 9, 1), (0.1976111573464833, u'sandy', 314, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : Times Square
Comments for this Plaza : 37
[(0.8675062266953522, u'times', 203, 4), (0.6332227111030614, u'snow', 158, 3), (0.4765053580405043, u'process', 4, 1), (0.4765053580405043, u'witness', 3, 1), (0.42214847406870754, u'storm', 126, 2), (0.41905978419640516, u'handle', 4, 1), (0.41905978419640516, u'frog', 8, 1), (0.41905978419640516, u'problem', 6, 1), (0.4071642168185802, u'lights', 274, 2), (0.3952223146929666, u'sandy', 314, 2), (0.383224293337255, u'sigh', 5, 1), (0.383224293337255, u'shut', 5, 1), (0.383224293337255, u'nova', 8, 1), (0.383224293337255, u'far', 6, 1), (0.3394536660667255, u'struggle', 7, 1), (0.3247342047137871, u'photograph', 13, 1), (0.312771272649591, u'artists', 10, 1), (0.2942998296638024, u'visit', 32, 1), (0.2942998296638024, u'wind', 12, 1), (0.28695173228265203, u'happiness', 28, 1), (0.28695173228265203, u'aftermath', 25, 1), (0.28695173228265203, u'months', 15, 1), (0.28695173228265203, u'lines', 17, 1), (0.28050889359956055, u'election', 51, 1), (0.26968351175578803, u'neon', 23, 1), (0.26968351175578803, u'business', 26, 1), (0.2650699754534338, u'person', 46, 1), (0.26087773109487916, u'madness', 24, 1), (0.24724797930973505, u'hours', 54, 1), (0.24724797930973505, u'room', 185, 1), (0.24724797930973505, u'peace', 52, 1), (0.23934588700996243, u'thanks', 82, 1), (0.23934588700996243, u'show', 171, 1), (0.22897464218793187, u'face', 64, 1), (0.22553064631951622, u'baby', 103, 1), (0.22239482227710577, u'subway', 206, 1), (0.22239482227710577, u'moment', 102, 1), (0.2156294170196073, u'urban', 124, 1), (0.21215332784742846, u'picture', 148, 1), (0.21003107949692437, u'midtown', 343, 1), (0.2061792922853361, u'life', 285, 1), (0.20442288127105387, u'fall', 321, 1), (0.20196945592621895, u'way', 247, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : CBS Early Show Plaza
Comments for this Plaza : 7
[(0.47869177401992485, u'show', 171, 2), (0.4765053580405043, u'creepers', 3, 1), (0.41905978419640516, u'winners', 4, 1), (0.3581970477838151, u'scenes', 6, 1), (0.26087773109487916, u'tourists', 48, 1)]
Plaza name : Pershing Square
Comments for this Plaza : 46
[(1.1220355743982422, u'grand', 26, 4), (0.678907332133451, u'advertising', 9, 2), (0.6545189493665549, u'square', 258, 3), (0.5217554621897583, u'breakfast', 43, 2), (0.4765053580405043, u'title', 3, 1), (0.4765053580405043, u'blur', 3, 1), (0.4765053580405043, u'quarter', 3, 1), (0.4765053580405043, u'telephone', 3, 1), (0.4765053580405043, u'salmon', 5, 1), (0.4478545179409579, u'line', 84, 2), (0.4288567733761657, u'streets', 136, 2), (0.41905978419640516, u'hug', 4, 1), (0.41905978419640516, u'limit', 5, 1), (0.41905978419640516, u'stock', 6, 1), (0.40884576254210775, u'rain', 235, 2), (0.383224293337255, u'hit', 6, 1), (0.383224293337255, u'fruits', 9, 1), (0.383224293337255, u'avengers', 7, 1), (0.3581970477838151, u'deck', 7, 1), (0.3581970477838151, u'umbrellas', 8, 1), (0.3581970477838151, u'vendors', 6, 1), (0.3394536660667255, u'danger', 8, 1), (0.3394536660667255, u'card', 8, 1), (0.3247342047137871, u'burger', 16, 1), (0.3247342047137871, u'legend', 10, 1), (0.3247342047137871, u'poster', 9, 1), (0.312771272649591, u'energy', 17, 1), (0.28695173228265203, u'sis', 19, 1), (0.28695173228265203, u'reflections', 41, 1), (0.28050889359956055, u'sorry', 20, 1), (0.2747964402379244, u'minute', 24, 1), (0.26968351175578803, u'sidewalk', 35, 1), (0.26968351175578803, u'tea', 44, 1), (0.2650699754534338, u'stairs', 38, 1), (0.2650699754534338, u'black', 26, 1), (0.2650699754534338, u'bridge', 142, 1), (0.2650699754534338, u'sisters', 22, 1), (0.26087773109487916, u'station', 44, 1), (0.253521478030654, u'movie', 278, 1), (0.24724797930973505, u'perfect', 126, 1), (0.24724797930973505, u'east', 32, 1), (0.24724797930973505, u'woman', 44, 1), (0.23934588700996243, u'yes', 81, 1), (0.23934588700996243, u'random', 69, 1), (0.2370299675817646, u'light', 67, 1), (0.22897464218793187, u'post', 170, 1), (0.22897464218793187, u'car', 68, 1), (0.22239482227710577, u'subway', 206, 1), (0.22092804904991536, u'birthday', 99, 1), (0.21817298312218497, u'fun', 208, 1)]
Plaza name : Tramway Plaza
Comments for this Plaza : 130
[(6.496777200646053, u'tram', 13, 11), (4.0, u'tramway', 4, 4), (3.6466156167942874, u'island', 61, 13), (1.149672880011765, u'jam', 10, 3), (1.0602799018137352, u'bridge', 142, 4), (0.678907332133451, u'puddle', 15, 2), (0.678907332133451, u'transportation', 8, 2), (0.5906161091496412, u'warning', 3, 1), (0.5885996593276048, u'busy', 17, 2), (0.5739034645653041, u'queens', 19, 2), (0.4765053580405043, u'chicks', 4, 1), (0.4765053580405043, u'geography', 3, 1), (0.4765053580405043, u'bridges', 10, 1), (0.4765053580405043, u'valley', 3, 1), (0.4765053580405043, u'tap', 4, 1), (0.45794928437586374, u'skyline', 158, 2), (0.45794928437586374, u'car', 68, 2), (0.45794928437586374, u'ride', 85, 2), (0.43904438760845893, u'days', 128, 2), (0.41905978419640516, u'drops', 5, 1), (0.41905978419640516, u'estate', 4, 1), (0.41905978419640516, u'seen', 5, 1), (0.41608912717638463, u'clouds', 252, 2), (0.40884576254210775, u'home', 245, 2), (0.40884576254210775, u'rain', 235, 2), (0.383224293337255, u'shape', 7, 1), (0.383224293337255, u'message', 5, 1), (0.383224293337255, u'butt', 8, 1), (0.3581970477838151, u'emergency', 8, 1), (0.3394536660667255, u'developer', 13, 1), (0.3247342047137871, u'tell', 9, 1), (0.3247342047137871, u'brown', 10, 1), (0.3247342047137871, u'rules', 11, 1), (0.3247342047137871, u'vista', 11, 1), (0.312771272649591, u'yellow', 10, 1), (0.312771272649591, u'scenery', 16, 1), (0.312771272649591, u'service', 16, 1), (0.312771272649591, u'ball', 21, 1), (0.30279310656411385, u'non', 10, 1), (0.30279310656411385, u'kitty', 13, 1), (0.2942998296638024, u'stone', 20, 1), (0.2942998296638024, u'caught', 15, 1), (0.2942998296638024, u'project', 27, 1), (0.2942998296638024, u'sit', 13, 1), (0.2942998296638024, u'sale', 18, 1), (0.28695173228265203, u'gloomy', 22, 1), (0.28695173228265203, u'months', 15, 1), (0.28695173228265203, u'future', 18, 1), (0.28695173228265203, u'distance', 28, 1), (0.28050889359956055, u'ground', 25, 1)]
Plaza name : Greenstreets Park
Comments for this Plaza : 1
[(0.22092804904991536, u'birthday', 99, 1)]
Plaza name : Saturday Night Live Standby Line
Comments for this Plaza : 4
[(0.21817298312218497, u'fun', 208, 1)]
Plaza name : 75 Wall Street Condominiums
Comments for this Plaza : 57
[(0.8442969481374151, u'snow', 158, 4), (0.8381195683928103, u'ledge', 6, 2), (0.5610177871991211, u'rooftop', 36, 2), (0.5217554621897583, u'dark', 38, 2), (0.5140896871720969, u'apartment', 50, 2), (0.5140896871720969, u'sunrise', 33, 2), (0.5005340355851987, u'river', 85, 2), (0.4765053580405043, u'macaroon', 3, 1), (0.43634596624436994, u'hurricane', 128, 2), (0.43634596624436994, u'part', 96, 2), (0.42214847406870754, u'storm', 126, 2), (0.41905978419640516, u'thirsty', 4, 1), (0.41905978419640516, u'cap', 4, 1), (0.3952223146929666, u'sandy', 314, 2), (0.3938917284402278, u'architecture', 409, 2), (0.383224293337255, u'prep', 5, 1), (0.3581970477838151, u'mail', 19, 1), (0.3581970477838151, u'farm', 10, 1), (0.3394536660667255, u'crew', 12, 1), (0.3247342047137871, u'glory', 9, 1), (0.30279310656411385, u'bottle', 33, 1), (0.2942998296638024, u'brunch', 24, 1), (0.28695173228265203, u'pumpkin', 33, 1), (0.28695173228265203, u'cake', 17, 1), (0.28050889359956055, u'secret', 24, 1), (0.2747964402379244, u'tie', 36, 1), (0.2747964402379244, u'box', 19, 1), (0.26968351175578803, u'meeting', 49, 1), (0.26968351175578803, u'left', 23, 1), (0.2650699754534338, u'rest', 36, 1), (0.253521478030654, u'tower', 95, 1), (0.24724797930973505, u'think', 39, 1), (0.24443647588626344, u'dinner', 99, 1), (0.24443647588626344, u'floor', 54, 1), (0.2370299675817646, u'school', 63, 1), (0.23484671873236782, u'neighborhood', 49, 1), (0.23278351371152656, u'cab', 73, 1), (0.22092804904991536, u'week', 180, 1), (0.21952219380422947, u'awesome', 145, 1), (0.21442838668808284, u'streets', 136, 1), (0.21107423703435377, u'sunset', 352, 1), (0.21003107949692437, u'weather', 186, 1), (0.20902181487755908, u'friends', 184, 1), (0.20804456358819232, u'clouds', 252, 1), (0.20804456358819232, u'afternoon', 200, 1), (0.20804456358819232, u'downtown', 175, 1), (0.20709759078963702, u'water', 295, 1), (0.2061792922853361, u'life', 285, 1), (0.20119542622303027, u'place', 359, 1), (0.19504072351152257, u'work', 331, 1)]
Plaza name : 200 West 60th Street
Comments for this Plaza : 3
[(0.4765053580405043, u'jenny', 5, 1), (0.23484671873236782, u'window', 60, 1), (0.21817298312218497, u'hurricane', 128, 1), (0.1976111573464833, u'sandy', 314, 1)]
Plaza name : Broadway Pedestrian Mall - 39th St to 42nd St
Comments for this Plaza : 6
[(0.2942998296638024, u'body', 15, 1), (0.2747964402379244, u'skyscrapers', 67, 1)]
Plaza name : 145 West 67th Street
Comments for this Plaza : 3
[(0.2650699754534338, u'easter', 27, 1)]
Plaza name : 345 Park Avenue Plaza
Comments for this Plaza : 5
[(0.4765053580405043, u'sides', 3, 1), (0.4765053580405043, u'issues', 4, 1), (0.41905978419640516, u'ways', 5, 1), (0.3394536660667255, u'fix', 8, 1), (0.28050889359956055, u'miles', 24, 1), (0.28050889359956055, u'stage', 21, 1), (0.25704484358604845, u'music', 50, 1), (0.23934588700996243, u'come', 48, 1), (0.22392725897047894, u'taxi', 118, 1)]
Plaza name : Harry Potter US Premiere
Comments for this Plaza : 1
[(0.5393670235115761, u'photographer', 39, 2), (0.4765053580405043, u'gentleman', 4, 1), (0.3394536660667255, u'pit', 8, 1), (0.3247342047137871, u'press', 10, 1), (0.28695173228265203, u'meet', 19, 1), (0.23484671873236782, u'get', 84, 1)]
Plaza name : Memorial 9/11
Comments for this Plaza : 21
[(0.5885996593276048, u'forget', 18, 2), (0.383224293337255, u'fallen', 6, 1), (0.383224293337255, u'twins', 6, 1), (0.383224293337255, u'endless', 5, 1), (0.383224293337255, u'offices', 7, 1), (0.3247342047137871, u'hole', 13, 1), (0.30279310656411385, u'museum', 55, 1), (0.2650699754534338, u'south', 62, 1), (0.253521478030654, u'tower', 95, 1), (0.253521478030654, u'history', 29, 1), (0.25026701779259936, u'trip', 68, 1), (0.24443647588626344, u'floor', 54, 1), (0.23934588700996243, u'center', 444, 1), (0.20804456358819232, u'afternoon', 200, 1), (0.20442288127105387, u'world', 322, 1)]
Plaza name : Soho Square
Comments for this Plaza : 101
[(0.725427202496031, u'graffiti', 65, 3), (0.6816326876180727, u'sign', 73, 3), (0.6494684094275742, u'paradise', 16, 2), (0.6494684094275742, u'silhouette', 21, 2), (0.5906161091496412, u'confessions', 3, 1), (0.507042956061308, u'season', 64, 2), (0.4944959586194701, u'train', 73, 2), (0.4765053580405043, u'letter', 3, 1), (0.45794928437586374, u'car', 68, 2), (0.4478545179409579, u'taxi', 118, 2), (0.4288567733761657, u'streets', 136, 2), (0.41905978419640516, u'gun', 9, 1), (0.41905978419640516, u'tis', 5, 1), (0.41608912717638463, u'trees', 239, 2), (0.4039389118524379, u'sun', 338, 2), (0.39008144702304515, u'work', 331, 2), (0.383224293337255, u'theme', 9, 1), (0.383224293337255, u'triumph', 6, 1), (0.383224293337255, u'folk', 5, 1), (0.383224293337255, u'blazer', 5, 1), (0.383224293337255, u'tiny', 13, 1), (0.383224293337255, u'zero', 7, 1), (0.383224293337255, u'coat', 8, 1), (0.3581970477838151, u'wrap', 9, 1), (0.3581970477838151, u'parking', 8, 1), (0.3581970477838151, u'vandalism', 6, 1), (0.3394536660667255, u'wheels', 9, 1), (0.3247342047137871, u'trade', 65, 1), (0.3247342047137871, u'word', 15, 1), (0.3247342047137871, u'red', 9, 1), (0.3247342047137871, u'fierce', 8, 1), (0.312771272649591, u'smoking', 10, 1), (0.30279310656411385, u'wit', 16, 1), (0.30279310656411385, u'deep', 17, 1), (0.30279310656411385, u'springtime', 14, 1), (0.2942998296638024, u'hipster', 18, 1), (0.2942998296638024, u'heels', 13, 1), (0.2942998296638024, u'monochrome', 16, 1), (0.28050889359956055, u'corner', 34, 1), (0.28050889359956055, u'shadows', 20, 1), (0.28050889359956055, u'candy', 23, 1), (0.28050889359956055, u'ground', 25, 1), (0.2747964402379244, u'minute', 24, 1), (0.2747964402379244, u'yummy', 32, 1), (0.2747964402379244, u'lives', 25, 1), (0.26968351175578803, u'neon', 23, 1), (0.26968351175578803, u'wow', 27, 1), (0.26968351175578803, u'business', 26, 1), (0.26968351175578803, u'followers', 17, 1), (0.2650699754534338, u'gotta', 27, 1)]
Plaza name : Metropolitan Museum Steps
Comments for this Plaza : 615
[(29.125819269625108, u'met', 142, 108), (14.3475866141326, u'steps', 94, 50), (10.294965623179872, u'museum', 55, 34), (5.014758668973412, u'gossip', 22, 14), (4.981915813384314, u'metropolitan', 20, 13), (4.180436297551181, u'girl', 208, 20), (2.29934576002353, u'yogurt', 13, 6), (1.8724010722937308, u'man', 216, 9), (1.5904198527206028, u'stairs', 38, 6), (1.3255682942994922, u'dog', 121, 6), (1.2796234278822654, u'food', 165, 6), (1.1812322182992825, u'wiener', 3, 2), (1.1812322182992825, u'armor', 3, 2), (1.1812322182992825, u'pretzels', 3, 2), (1.1812322182992825, u'mustard', 3, 2), (1.1541468063791358, u'front', 86, 5), (1.0991857609516975, u'pigeon', 34, 4), (1.0745911433514455, u'upper', 14, 3), (1.0745911433514455, u'pretzel', 16, 3), (1.0745911433514455, u'throw', 9, 3), (1.0059771311151513, u'place', 359, 5), (0.9889919172389402, u'guys', 62, 4), (0.9847293211005694, u'architecture', 409, 5), (0.9573835480398497, u'air', 73, 4), (0.9530107160810086, u'maker', 4, 2), (0.9530107160810086, u'bucket', 6, 2), (0.9083793196923415, u'bubbles', 43, 3), (0.8625176680784292, u'fashion', 347, 4), (0.8381195683928103, u'queen', 5, 2), (0.8381195683928103, u'player', 6, 2), (0.8243893207137731, u'soul', 20, 3), (0.7851844238535843, u'people', 414, 4), (0.76644858667451, u'master', 8, 2), (0.76644858667451, u'bunny', 8, 2), (0.7417439379292052, u'east', 32, 3), (0.7180376610298872, u'ave', 58, 3), (0.7180376610298872, u'check', 67, 3), (0.7163940955676302, u'rats', 7, 2), (0.7163940955676302, u'stand', 10, 2), (0.678907332133451, u'exhibition', 13, 2), (0.6717817769114368, u'style', 140, 3), (0.6671844668313173, u'beauty', 117, 3), (0.6506296700215141, u'cool', 137, 3), (0.6494684094275742, u'jacket', 11, 2), (0.6364599835422854, u'picture', 148, 3), (0.625542545299182, u'list', 21, 2), (0.625542545299182, u'van', 12, 2), (0.625542545299182, u'exhibit', 53, 2), (0.625542545299182, u'pro', 18, 2), (0.625542545299182, u'culture', 16, 2)]
Plaza name : Courtyard @ 888 7th ave
Comments for this Plaza : 2
[(0.3247342047137871, u'wild', 14, 1), (0.28695173228265203, u'cat', 19, 1), (0.24724797930973505, u'jungle', 43, 1)]
Plaza name : Friendly Presbyterian Douchebag
Comments for this Plaza : 0
[]
Plaza name : 555 Madison Ave
Comments for this Plaza : 10
[(0.4765053580405043, u'candle', 3, 1), (0.40884576254210775, u'fall', 321, 2), (0.383224293337255, u'scarf', 6, 1), (0.3394536660667255, u'terrace', 26, 1), (0.28695173228265203, u'pizza', 32, 1), (0.23278351371152656, u'cab', 73, 1), (0.22897464218793187, u'ride', 85, 1), (0.22239482227710577, u'rainy', 103, 1), (0.21817298312218497, u'party', 104, 1), (0.2156294170196073, u'fashion', 347, 1), (0.2132705713137109, u'office', 275, 1)]
Plaza name : Rockefeller Plaza
Comments for this Plaza : 1182
[(18.697178263342, u'plaza', 209, 81), (16.830533615973632, u'rock', 145, 60), (10.052527254418422, u'center', 444, 42), (6.462338949268985, u'show', 171, 27), (5.890686765590772, u'election', 51, 21), (5.748364400058825, u'democracy', 21, 15), (5.241558938445547, u'rink', 93, 11), (4.547571853189286, u'ice', 267, 19), (4.317007021581127, u'tree', 148, 19), (3.460895842957932, u'lights', 274, 17), (3.394536660667255, u'flags', 23, 10), (3.34158296661863, u'concert', 67, 13), (2.953080545748206, u'cranberry', 6, 5), (2.859032148243026, u'elections', 9, 6), (2.648698466974222, u'vote', 29, 9), (2.5602962348614806, u'architecture', 409, 13), (2.5203729539630926, u'midtown', 343, 12), (2.514358705178431, u'kickoff', 14, 6), (2.4271516058020923, u'flag', 41, 9), (2.095298920982026, u'knowledge', 9, 5), (1.9504072351152257, u'work', 331, 10), (1.916121466686275, u'doubt', 11, 5), (1.9060214321620172, u'skating', 24, 4), (1.7909852389190757, u'fans', 16, 5), (1.7718483274489236, u'fella', 4, 3), (1.7718483274489236, u'maroon', 4, 3), (1.767424392399323, u'year', 99, 8), (1.7561775504338357, u'awesome', 145, 8), (1.7061645705096873, u'office', 275, 8), (1.6643565087055385, u'photo', 283, 8), (1.6487786414275463, u'market', 42, 6), (1.6439270311265746, u'get', 84, 7), (1.6028224953155232, u'state', 343, 7), (1.5674908127933525, u'style', 140, 7), (1.53289717334902, u'fever', 9, 4), (1.4834878758584105, u'tourist', 85, 6), (1.4347586614132601, u'president', 21, 5), (1.3739822011896219, u'yeah', 44, 5), (1.3531838779170973, u'years', 89, 6), (1.3484175587789402, u'eye', 32, 5), (1.3435635538228736, u'line', 84, 6), (1.3043886554743958, u'tomorrow', 43, 5), (1.3043886554743958, u'wish', 61, 5), (1.2571793525892154, u'radio', 7, 3), (1.2571793525892154, u'farmer', 6, 3), (1.2541308892653544, u'girl', 208, 6), (1.2513350889629966, u'trip', 68, 5), (1.251085090598364, u'stars', 26, 4), (1.2482673815291538, u'man', 216, 6), (1.2370757537120165, u'life', 285, 6)]
Plaza name : St. Mark's Place
Comments for this Plaza : 1449
[(20.533929425623853, u'marks', 54, 49), (13.412850266803924, u'mark', 39, 35), (7.551138329162065, u'village', 86, 28), (7.0, u'hookah', 7, 7), (4.69195256890164, u'food', 165, 22), (4.30427598423978, u'pumpkin', 33, 15), (4.134312764047489, u'tattoos', 8, 7), (4.023908524460605, u'place', 359, 20), (4.017324251957128, u'pizza', 32, 14), (4.0, u'cartilage', 4, 4), (4.0, u'fortuneteller', 4, 4), (3.5819704778381514, u'bacon', 18, 10), (3.5819704778381514, u'patch', 19, 10), (3.270766100336862, u'home', 245, 16), (3.0550829946005296, u'pumpkins', 27, 9), (3.0, u'sliders', 3, 3), (3.0, u'smash', 3, 3), (2.8695173228265203, u'yum', 33, 10), (2.814941453846319, u'trash', 22, 9), (2.7479644023792438, u'yummy', 32, 10), (2.4443647588626343, u'dinner', 99, 10), (2.3999028143440344, u'fun', 208, 11), (2.3856297790809045, u'beer', 38, 9), (2.3719235872156803, u'fashion', 347, 11), (2.362464436598565, u'dollar', 5, 4), (2.355553271560753, u'people', 414, 12), (2.29934576002353, u'snake', 12, 6), (2.267972215138697, u'life', 285, 11), (2.2486516939815924, u'happy', 220, 11), (2.2252318137876155, u'fire', 56, 9), (2.1574680940463042, u'shop', 58, 8), (2.1541129830896617, u'ice', 267, 9), (2.0902181487755906, u'friends', 184, 10), (2.0563587486883876, u'apartment', 50, 8), (2.044228812710539, u'fall', 321, 10), (2.0367219964003533, u'supreme', 14, 6), (2.028171824245232, u'fuck', 43, 8), (1.9635622551969238, u'dope', 34, 7), (1.9344725399894158, u'graffiti', 65, 8), (1.916121466686275, u'comics', 10, 5), (1.8811963338980318, u'girl', 208, 9), (1.826144117664154, u'swag', 54, 7), (1.826144117664154, u'cream', 54, 7), (1.8042451705561298, u'baby', 103, 8), (1.7914180717638315, u'style', 140, 8), (1.7718483274489236, u'piercing', 4, 3), (1.7718483274489236, u'piercings', 4, 3), (1.7718483274489236, u'firemen', 4, 3), (1.7718483274489236, u'creme', 4, 3), (1.7718483274489236, u'zombie', 5, 3)]
Plaza name : Balsley Park
Comments for this Plaza : 14
[(0.4765053580405043, u'markets', 4, 1), (0.4765053580405043, u'temps', 3, 1), (0.44478964455421155, u'reflection', 142, 2), (0.3394536660667255, u'goodnight', 11, 1), (0.3394536660667255, u'stole', 7, 1), (0.3247342047137871, u'treat', 13, 1), (0.312771272649591, u'somebody', 12, 1), (0.2942998296638024, u'route', 23, 1), (0.26968351175578803, u'parks', 81, 1), (0.2650699754534338, u'god', 45, 1), (0.253521478030654, u'movie', 278, 1), (0.25026701779259936, u'lady', 120, 1), (0.24724797930973505, u'kind', 48, 1), (0.24443647588626344, u'thank', 39, 1), (0.24443647588626344, u'town', 69, 1), (0.23934588700996243, u'random', 69, 1), (0.23934588700996243, u'birds', 66, 1), (0.2370299675817646, u'portrait', 41, 1), (0.23484671873236782, u'window', 60, 1), (0.21952219380422947, u'days', 128, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : MPIA Harvest fest
Comments for this Plaza : 4
[(0.383224293337255, u'foods', 7, 1), (0.30279310656411385, u'non', 10, 1), (0.30279310656411385, u'fortune', 14, 1), (0.30279310656411385, u'gets', 14, 1), (0.22897464218793187, u'face', 64, 1), (0.22721089587269092, u'tree', 148, 1)]
Plaza name : John J Delury Senior Plaza
Comments for this Plaza : 0
[]
Plaza name : Sun Yat Sen Statue
Comments for this Plaza : 2
[(0.30279310656411385, u'gets', 14, 1), (0.24443647588626344, u'town', 69, 1), (0.24180906749867698, u'action', 35, 1)]
Plaza name : 60 Wall St Atrium
Comments for this Plaza : 9
[(0.383224293337255, u'atrium', 6, 1), (0.383224293337255, u'public', 14, 1), (0.3394536660667255, u'oasis', 19, 1), (0.3247342047137871, u'gem', 11, 1), (0.312771272649591, u'culture', 16, 1), (0.312771272649591, u'van', 12, 1), (0.26968351175578803, u'meeting', 49, 1), (0.23934588700996243, u'check', 67, 1), (0.22897464218793187, u'wall', 83, 1), (0.22897464218793187, u'end', 57, 1), (0.21817298312218497, u'party', 104, 1)]
Plaza name : Third North Courtyard Cafe
Comments for this Plaza : 7
[(0.5906161091496412, u'crunch', 3, 1), (0.41905978419640516, u'cap', 4, 1), (0.383224293337255, u'donuts', 7, 1), (0.3581970477838151, u'valentine', 9, 1), (0.28695173228265203, u'pizza', 32, 1), (0.24443647588626344, u'dinner', 99, 1), (0.2132705713137109, u'food', 165, 1), (0.20442288127105387, u'happy', 220, 1)]
Plaza name : Dante Park - Lincoln Center Triangle
Comments for this Plaza : 51
[(0.4765053580405043, u'layers', 3, 1), (0.4765053580405043, u'toast', 3, 1), (0.4765053580405043, u'roman', 42, 1), (0.4765053580405043, u'potter', 5, 1), (0.4616587225516543, u'coffee', 121, 2), (0.41905978419640516, u'appointment', 4, 1), (0.383224293337255, u'stands', 9, 1), (0.383224293337255, u'genius', 6, 1), (0.3581970477838151, u'silence', 6, 1), (0.3581970477838151, u'babies', 11, 1), (0.3394536660667255, u'study', 14, 1), (0.3394536660667255, u'sculptures', 9, 1), (0.312771272649591, u'table', 22, 1), (0.30279310656411385, u'bride', 20, 1), (0.30279310656411385, u'bagel', 17, 1), (0.30279310656411385, u'drink', 19, 1), (0.2942998296638024, u'wind', 12, 1), (0.28695173228265203, u'drinks', 34, 1), (0.28050889359956055, u'dope', 34, 1), (0.28050889359956055, u'sight', 24, 1), (0.2747964402379244, u'minute', 24, 1), (0.2747964402379244, u'purple', 28, 1), (0.2747964402379244, u'fog', 39, 1), (0.26087773109487916, u'tomorrow', 43, 1), (0.25704484358604845, u'bar', 32, 1), (0.25026701779259936, u'see', 43, 1), (0.25026701779259936, u'favorite', 63, 1), (0.24724797930973505, u'everyone', 53, 1), (0.24724797930973505, u'hotel', 115, 1), (0.24180906749867698, u'holiday', 138, 1), (0.23484671873236782, u'apple', 90, 1), (0.23484671873236782, u'sculpture', 110, 1), (0.23082936127582715, u'winter', 129, 1), (0.22897464218793187, u'ride', 85, 1), (0.22392725897047894, u'spot', 118, 1), (0.22392725897047894, u'statue', 345, 1), (0.21817298312218497, u'fun', 208, 1), (0.2156294170196073, u'friend', 123, 1), (0.2156294170196073, u'fashion', 347, 1), (0.21107423703435377, u'snow', 158, 1), (0.21003107949692437, u'midtown', 343, 1), (0.20804456358819232, u'man', 216, 1), (0.20196945592621895, u'way', 247, 1), (0.20044161109087177, u'sky', 427, 1), (0.1969458642201139, u'architecture', 409, 1), (0.19629610596339608, u'people', 414, 1)]
Plaza name : Broadway Plaza
Comments for this Plaza : 2