-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdata.json
13150 lines (13150 loc) · 758 KB
/
data.json
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
[
{
"id": "cjkwyvvjy00jg0955ulx7pygt",
"name": "The Manhattan Well Murder",
"description": "A sealed well underneath former Manhattan Bistro in Soho was the site of the 1799 murder of Gulielma Elmore Sands, who was strangled and dumped in the well on Spring St.The accused murderer was Levi Weeks, a fellow boarder in a house on Greenwich Street, whom Sands had been secretly seeing. Weeks was masterfully defended in court by Alexander Hamilton and Aaron Burr. As a result, the jury delivered an acquittal after just five minutes of deliberation.Weeks, nevertheless, had to leave the city, as he was widely condsidered guilty.The well is not open to the public, but it is sometimes accessible upon special request provided its status as one of the Travel Channel’s “10 Most Haunted Places in America.”The Manhattan Bistro above the site is also now closed, but it is visible in the lower level of a clothing store called COS.Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzLzZiMWJlOGI5ZDRhMzM1YTQ5ZGRhZGQzNTdiNTFmNjJiTlktQkc2ODZfU1BBQ0VzX0dfMjAxMTEwMjQxODE3NDEuanBlZyJdLFsicCIsInRodW1iIiwiNjAweDQwMCswKzAiXSxbInAiLCJjb252ZXJ0IiwiLXF1YWxpdHkgODEgLWF1dG8tb3JpZW50Il0sWyJwIiwidGh1bWIiLCIzNzJ4MjQ4IyJdXQ/NY-BG686_SPACEs_G_20111024181741.jpeg",
"location": "129 Spring StNew York, New York, 10012United States",
"source": "https://www.atlasobscura.com/places/The-Manhattan-Well-Murder",
"website": null,
"local_tourist": "local",
"indoor_outdoor": null,
"concepts": [
{
"text": "Alexander Hamilton",
"relevance": 0.9562,
"dbpedia_resource": "http://dbpedia.org/resource/Alexander_Hamilton"
},
{
"text": "Manhattan",
"relevance": 0.727832,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Most Haunted",
"relevance": 0.724078,
"dbpedia_resource": "http://dbpedia.org/resource/Most_Haunted"
},
{
"text": "Aaron Burr",
"relevance": 0.722477,
"dbpedia_resource": "http://dbpedia.org/resource/Aaron_Burr"
},
{
"text": "Travel Channel",
"relevance": 0.659477,
"dbpedia_resource": "http://dbpedia.org/resource/Travel_Channel"
},
{
"text": "Thomas Jefferson",
"relevance": 0.643789,
"dbpedia_resource": "http://dbpedia.org/resource/Thomas_Jefferson"
},
{
"text": "Albany, New York",
"relevance": 0.569477,
"dbpedia_resource": "http://dbpedia.org/resource/Albany,_New_York"
},
{
"text": "New York City",
"relevance": 0.558937,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
}
],
"categories": [
{
"score": 0.399524,
"label": "food and drink"
},
{
"score": 0.371659,
"label": "society"
},
{
"score": 0.348128,
"label": "home and garden"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk200jh09553q6z3wj8",
"name": "Titanic Memorial",
"description": "The Titanic Memorial lighthouse has stood at the entrance to the South Street Seaport since 1976. Before it moved to its current home, the memorial was erected on top of the Seamen’s Church Institute in 1913 after the Unsinkable Molly Brown insisted that a monument to those lost in the Titanic be erected.Margaret Brown, better known as Molly, was as stubborn after coming back to dry land as she was during her alleged rescue of fellow passengers during the Titanic’s sinking. Always larger than life, Brown insisted that a 60-foot-high lighthouse be erected in Lower Manhattan. When it was first built, just a year after the Titanic sank, a time ball was installed above the lighthouse, and dropped at noon every day in remembrance of those who perished.After the ball ceased to keep time in 1967, the lighthouse was moved off the roof of the Seamen’s Church Institute and became a part of the South Street Seaport Museum at the corner of Fulton and Pearl. As conspicuous as Molly Brown would have wanted it, the monument greets visitors to the Seaport with a reminder of the tragedy of April 15, 1912.Four blocks east of Fulton Street Subway Station. Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzLzk0NGQ2YThmN2UwZGY5MTgwMjdmYzI3OWYxYmI5NjExOWVjYjA4YmUuanBnIl0sWyJwIiwiY29udmVydCIsIi1xdWFsaXR5IDgxIC1hdXRvLW9yaWVudCJdLFsicCIsInRodW1iIiwiMzcyeDI0OCMiXV0/944d6a8f7e0df918027fc279f1bb96119ecb08be.jpg",
"location": "Titanic Memorial ParkNew York, New York, 10038United States",
"source": "https://www.atlasobscura.com/places/Titanic-Memorial",
"website": null,
"local_tourist": "local",
"indoor_outdoor": null,
"concepts": [
{
"text": "RMS Titanic",
"relevance": 0.96066,
"dbpedia_resource": "http://dbpedia.org/resource/RMS_Titanic"
},
{
"text": "Margaret Brown",
"relevance": 0.83873,
"dbpedia_resource": "http://dbpedia.org/resource/Margaret_Brown"
},
{
"text": "Fulton Street",
"relevance": 0.630555,
"dbpedia_resource": "http://dbpedia.org/resource/Fulton_Street_(Manhattan)"
},
{
"text": "Titanic",
"relevance": 0.56499,
"dbpedia_resource": "http://dbpedia.org/resource/Titanic_(1997_film)"
},
{
"text": "1911",
"relevance": 0.515777,
"dbpedia_resource": "http://dbpedia.org/resource/1911"
},
{
"text": "Titanic Memorial",
"relevance": 0.488222,
"dbpedia_resource": "http://dbpedia.org/resource/Titanic_Memorial_(Washington,_D.C.)"
},
{
"text": "A Night to Remember",
"relevance": 0.481564,
"dbpedia_resource": "http://dbpedia.org/resource/A_Night_to_Remember_(1958_film)"
},
{
"text": "American films",
"relevance": 0.479401,
"dbpedia_resource": "http://dbpedia.org/resource/American_films"
}
],
"categories": [
{
"score": 0.188006,
"label": "law, govt and politics"
},
{
"score": 0.181636,
"label": "hobbies and interests"
},
{
"score": 0.176774,
"label": "society"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk200ji09558kxf5pju",
"name": "Septuagesimo Uno",
"description": "While it’s not smallest piece of park property in New York, Septuagesimo Uno is still a charmingly diminutive plot of land, occupying a mere 0.04 acres between two townhouses on West 71st Street. The creation of the park may date to Mayor John Lindsay’s era, but its roots lie in the Commissioners Plan of 1811, which laid out the Manhattan grid system of roads with 12 avenues and 155 cross-streets. Parks were included in the plan at 53rd, 66th, 77th and 120th Streets. But, while the plan was effective at predicting and handling the explosive growth the city would experience over the next 150 years, it ultimately failed to provide enough parkland for recreation. To help alleviate demand, Mayor Lindsay started up the Vest Pocket Park campaign, which squeezed public space in wherever it could. The lot on 71st Street was condemned in 1969, landscaped by the city and eventually handed over to the stewardship of the NYC Parks Department in 1981. As for its name? It’s Latin for “seventy-one,” and was appended by parks commissioner Henry J. Stern in 2000 after a $14,325 renovation. Its original name was the much blander “71st Street Plot.”Septuagesimo Uno is located on the south side of 71st street between West End and Amsterdam Avenues; the closest subway is the 1/2/3 a block away on Broadway. The park closes at dusk.Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzLzY3OTA0MWQzODgzYWY1NWI2MF9TZXB0dWFnZXNpbW9fVW5vX2luc2lkZV9qZWguanBnIl0sWyJwIiwiY29udmVydCIsIi1xdWFsaXR5IDgxIC1hdXRvLW9yaWVudCJdLFsicCIsInRodW1iIiwiMzcyeDI0OCMiXV0/Septuagesimo_Uno_inside_jeh.jpg",
"location": "256 W 71st StNew York, New YorkUnited States",
"source": "https://www.atlasobscura.com/places/Septuagesimo-Uno",
"website": "https://www.nycgovparks.org/parks/septuagesimo-uno/",
"local_tourist": "local",
"indoor_outdoor": "outdoor",
"concepts": [
{
"text": "New York City",
"relevance": 0.943885,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Grid plan",
"relevance": 0.904545,
"dbpedia_resource": "http://dbpedia.org/resource/Grid_plan"
},
{
"text": "Landscape",
"relevance": 0.859182,
"dbpedia_resource": "http://dbpedia.org/resource/Landscape"
},
{
"text": "John Lindsay",
"relevance": 0.84942,
"dbpedia_resource": "http://dbpedia.org/resource/John_Lindsay"
},
{
"text": "Street",
"relevance": 0.74796,
"dbpedia_resource": "http://dbpedia.org/resource/Street"
},
{
"text": "Parks",
"relevance": 0.740944,
"dbpedia_resource": "http://dbpedia.org/resource/Parks"
},
{
"text": "Broadway theatre",
"relevance": 0.636674,
"dbpedia_resource": "http://dbpedia.org/resource/Broadway_theatre"
},
{
"text": "Manhattan",
"relevance": 0.626892,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
}
],
"categories": [
{
"score": 0.51426,
"label": "law, govt and politics"
},
{
"score": 0.395491,
"label": "travel"
},
{
"score": 0.228889,
"label": "real estate"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk300jj0955s774aqwd",
"name": "NYC Barber Museum",
"description": "This unexpected gem on Manhattan’s Upper West Side is a flashback to the past. Step inside, and you’ll uncover a collection of rare artifacts and barbershop equipment.The NYC Barber Museum is a new spot (it opened in June of 2018) dedicated to an old trade. It’s like a time capsule of an traditional early 20th-century barber shop.The museum is the work of Arthur Rubinoff, a fourth-generation barber and the founder of the Reamir & Co barbershop chain. His collection fills the space and includes nostalgic treasures like antique barber chairs and mirrors, gold and diamond-studded scissors, old razors, and of course, the classic striped poles that once hung outside so many barber shops. All the artifacts celebrate the art of the craft and the many people who have worked in the industry.While visiting, you can do more than admire the various antique items on display. The museum is actually a working barbershop, so you can get your hair cut or your beard trimmed in a beautifully decorated space that feels like it was plucked straight out of 20th-century New York. Patrons can choose from styles that reflect the 19th, 20th, and 21st centuries.Visiting is free, even if you don't get your hair cut. To schedule an appointment with the barber, call (212) 920-9716.The hours on Saturdays through Mondays are casual. On Tuesdays, it's open from 10:30 to 9:00. On Wednesdays, from 10:00 to 8:00. Thursdays it's open from 11:00 to 11:00, and Fridays it's open from 10:00 to 7:00.Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzL2IwM2JjM2RiLWNmNmYtNDQwNi04ZGRjLWQ4MTI1ZTkzMjQxMjFlMDgzM2RmYmFkNDM2ODk4YV9tdXNldW0xLmpwZyJdLFsicCIsImNvbnZlcnQiLCItcXVhbGl0eSA4MSAtYXV0by1vcmllbnQiXSxbInAiLCJ0aHVtYiIsIjM3MngyNDgjIl1d/museum1.jpg",
"location": "290 Columbus AveNew York, New YorkUnited States",
"source": "https://www.atlasobscura.com/places/NYC-Barber-Museum",
"website": "https://www.reamir.com/barbershop-museum-nyc/",
"local_tourist": "local",
"indoor_outdoor": "indoor",
"concepts": [
{
"text": "Week-day names",
"relevance": 0.965004,
"dbpedia_resource": "http://dbpedia.org/resource/Week-day_names"
},
{
"text": "Barber",
"relevance": 0.826156,
"dbpedia_resource": "http://dbpedia.org/resource/Barber"
},
{
"text": "New York City",
"relevance": 0.760103,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Shaving",
"relevance": 0.740128,
"dbpedia_resource": "http://dbpedia.org/resource/Shaving"
},
{
"text": "Upper West Side",
"relevance": 0.720475,
"dbpedia_resource": "http://dbpedia.org/resource/Upper_West_Side"
},
{
"text": "Manhattan",
"relevance": 0.679482,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Beard",
"relevance": 0.622019,
"dbpedia_resource": "http://dbpedia.org/resource/Beard"
},
{
"text": "Broadway",
"relevance": 0.61704,
"dbpedia_resource": "http://dbpedia.org/resource/Broadway_(New_York_City)"
}
],
"categories": [
{
"score": 0.545925,
"label": "family and parenting"
},
{
"score": 0.531372,
"label": "real estate"
},
{
"score": 0.413956,
"label": "style and fashio"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk300jk0955pufw7c8d",
"name": "Museum of Reclaimed Urban Space",
"description": "The mission of the Museum of Reclaimed Urban Space (MoRUS) is to preserve history and promote scholarship of grassroots urban space activism by researching and archiving efforts to create community spaces. They also exhibit materials that document these actions, to educate people on the political implications of reclaimed space. In the 1950s and ’60s, as wealthy residents started moving to the suburbs, property values plummeted across the city. Places like the Lower East Side were hit especially hard. The landlords, not seeing value in maintaining the properties or paying taxes, would collect rent until the city repossessed the property. As a result, New York City ended up owning tens of thousands of properties.Because the city was in an economic crisis and couldn’t maintain the buildings, it started cutting off services (like not maintaining infrastructure and shutting down schools and fire houses) to certain neighborhoods in an effort called “planned shrinkage.” As a result, buildings were left to burn and whole neighborhoods were left abandoned and decaying.In the late ’60s, struggling artists, punks, anarchists, transients, and activists saw an opportunity to reclaim these spaces. With a lot of hard work, they transformed the rotting tenements into livable spaces, the abandoned schools into community centers, and plots that were ruble into community gardens.When the late ’80s came along and the economy was on an up, people started moving back into the city. The price of real estate started to rise again, and the Lower East Side started looking like a desirable place to develop. Unfortunately, this led to many of the squatters being evicted and saw a lot of their community spaces shuttered.The squatters and activists fought hard and though most were evicted, about a dozen squats became legal co-ops and many of the gardens are still an essential part of the neighborhood today. If you look past the boutique shops, trendy bars, and fancy eateries you’ll see there’s a rich history of activism and resilience in the area. MoRUS is there to tell the story and to foster environmental and social change within the community.Museum entry free; suggested donation $5\nTours $20Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzLzRnNmRmcGw5bzdpNzY1NjE1YjhjYTFhMjc4MGIzXzdCOUVBRThCLTA0NUEtNEI0Qy04MkQzLUY2ODFBMUQxRDI2NS5qcGVnIl0sWyJwIiwiY29udmVydCIsIi1xdWFsaXR5IDgxIC1hdXRvLW9yaWVudCJdLFsicCIsInRodW1iIiwiMzcyeDI0OCMiXV0/7B9EAE8B-045A-4B4C-82D3-F681A1D1D265.jpeg",
"location": "155 Avenue C New York, New York, 10009United States",
"source": "https://www.atlasobscura.com/places/Museum-of-Reclaimed-Urban-Space",
"website": "http://www.morusnyc.org",
"local_tourist": "local",
"indoor_outdoor": null,
"concepts": [
{
"text": "New York City",
"relevance": 0.98024,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Lower East Side",
"relevance": 0.782302,
"dbpedia_resource": "http://dbpedia.org/resource/Lower_East_Side"
},
{
"text": "Property",
"relevance": 0.713211,
"dbpedia_resource": "http://dbpedia.org/resource/Property"
},
{
"text": "Real estate",
"relevance": 0.662268,
"dbpedia_resource": "http://dbpedia.org/resource/Real_estate"
},
{
"text": "Urban decay",
"relevance": 0.661728,
"dbpedia_resource": "http://dbpedia.org/resource/Urban_decay"
},
{
"text": "Community",
"relevance": 0.611661,
"dbpedia_resource": "http://dbpedia.org/resource/Community"
},
{
"text": "Manhattan",
"relevance": 0.604876,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Squatting",
"relevance": 0.538617,
"dbpedia_resource": "http://dbpedia.org/resource/Squatting"
}
],
"categories": [
{
"score": 0.345784,
"label": "home and garde"
},
{
"score": 0.231665,
"label": "real estat"
},
{
"score": 0.196383,
"label": "science"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk600jl09551c4sqwqa",
"name": "Barthman's Sidewalk Clock",
"description": "At the dawn of the 20th century it didn’t take as much effort to garner the attention of the buying public as it does today, but the core principle remains the same: novelty. The titular owner of William Barthman Jeweler had a clear grasp of this concept when he and an associate installed a working clock into the sidewalk outside their store.Barthman, along with one of his employees, Frank Homm, created the timepiece in 1896, but not as it exists today. The original clock was a mechanical jump hour clock with the numbered tablets that would flip over on the hour. It also had a little light bulb that would illuminate the clock at night. In the beginning, as passersby trampled across the clock face it was met with surprise and delight by turn-of-the-century shoppers. Unfortunately the fatal flaw of the original contraption was that it was custom designed by Barthman and Homm, and they were the only ones who knew how to fix it. Thus when the clock began to malfunction in later years, the attraction became an embarrassment, and the operators of Barthman’s store would cover it with cardboard each day to hide their shame.Unable to make the clock work with Homm’s special touch (Homm passed away in 1917), the only solution they could come up with was to replace the clock entirely. The new clock was a more traditional analog dial, ringed with a classy brass compass rose. With the installation of the new clock, and the lucky popularity of a photographer’s snapshot of the clock, the sidewalk novelty that had vexed them for years had once again become a popular feature for Barthman’s. The sidewalk clock still sits outside of Barthman’s on the corner of Broadway and Maiden Lane in lower Manhattan, just as it has for a century. It is estimated that over 50,000 people walk over the timepiece each day, not once stopping to ask the time. Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzL2RkZmQzZDdmMDkwYTNiNTI0OF82MTEwOTIyNjYyX2UxYzQ0NjU1ZTNfYi5qcGciXSxbInAiLCJjb252ZXJ0IiwiLXF1YWxpdHkgODEgLWF1dG8tb3JpZW50Il0sWyJwIiwidGh1bWIiLCIzNzJ4MjQ4IyJdXQ",
"location": "176 BroadwayNew York, New YorkUnited States",
"source": "https://www.atlasobscura.com/places/Barthman-s-Sidewalk-Clock",
"website": null,
"local_tourist": "local",
"indoor_outdoor": null,
"concepts": [
{
"text": "Clocks",
"relevance": 0.91363,
"dbpedia_resource": "http://dbpedia.org/resource/Clocks"
},
{
"text": "Watch",
"relevance": 0.846893,
"dbpedia_resource": "http://dbpedia.org/resource/Watch"
},
{
"text": "20th century",
"relevance": 0.781641,
"dbpedia_resource": "http://dbpedia.org/resource/20th_century"
},
{
"text": "Striking clock",
"relevance": 0.717736,
"dbpedia_resource": "http://dbpedia.org/resource/Striking_clock"
},
{
"text": "Manhattan",
"relevance": 0.702055,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Movement",
"relevance": 0.683315,
"dbpedia_resource": "http://dbpedia.org/resource/Movement_(clockwork)"
},
{
"text": "English-language films",
"relevance": 0.645526,
"dbpedia_resource": "http://dbpedia.org/resource/English-language_films"
},
{
"text": "Horology",
"relevance": 0.643942,
"dbpedia_resource": "http://dbpedia.org/resource/Horology"
}
],
"categories": [
{
"score": 0.575098,
"label": "home and garden"
},
{
"score": 0.454914,
"label": "sports"
},
{
"score": 0.379045,
"label": "art and entertainment"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk700jm0955rp54jza5",
"name": "Hallett Nature Sanctuary",
"description": "Between Cop Cot and The Pond in the southeastern corner of New York’s Central Park is a four-acre area that, until recently, had been closed to the public since 1934.Originally called The Promontory by park designers Frederick Law Olmsted and Calvert Vaux, it was left mostly wild as the areas around it were molded and sculpted into their urban pastoral vision. The Promontory was closed off in 1934 by Robert Moses (then Parks Commissioner, among other things), who designated it as a bird sanctuary meant to be undisturbed, unmaintained, and untouched. It was subsequently renamed The Hallett Nature Sanctuary in 1986, after nature lover and Citizens Union executive George Harvey Hallett Jr.In 2001, as part of the Central Park Conservancy’s Woodland’s Initiative, work began to restore the Sanctuary to something visitors could enjoy once more. Invasive plant species, like wisteria and Japanese knotgrass, were switched out for native ones, like Dutchman’s breeches and shooting stars, and what had been overgrown was very carefully tamed. Over the years, access has occasionally been granted to school groups, but starting in 2016, the Sanctuary began scheduling regular visitors’ hours for the first time.There may be a line to get through the beautiful new wooden gate, but it is worth the wait. Once in, there are guides posted around who will answer questions (to answer one that apparently gets asked a lot, the water at the top of the waterfall that issues into The Pond from the Hallett Sanctuary is piped up there). There is a woodchip path that visitors are asked to stay on as they explore the Sanctuary, and the path is lined with beautiful flowers, including azaleas, columbines, and adorable little Jack-in-the-Pulpits, as well as bushes and trees, all accompanied by identification placards. Looking past the groomed area along the path, the woods still bear hallmarks of their decades of wilderness, with massive roots of old fallen trees peppering the landscape.The Sanctuary sits on a giant boulder of Manhattan schist; at the highest point, there is an overlook providing views of the buildings of Central Park East, as well as The Pond itself and the large rock formations on the other side, sprinkled with climbers. This area also has benches where one can sit and listen to the birds. The benches were donated by Sima Ghadamian, a rare gems dealer, who was moved to create such a quiet, reflective space after the death of a friend. A “sanctuary within the sanctuary,” The New York Times calls it. If that sounds peaceful, it accurately represents the experience of wandering through the Hallett Nature Sanctuary.Enter Central Park at the intersection of 59th Street and 6th Avenue and head north, away from the pond. There may be a line to get in. Open hours listed on official website.Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzLzFkZjNheHRwZ3JhMzFjZmFhZjc0OTJiZjZmN2M1X01hbmhhdHRhbiBTY2hpc3QuSlBHIl0sWyJwIiwiY29udmVydCIsIi1xdWFsaXR5IDgxIC1hdXRvLW9yaWVudCJdLFsicCIsInRodW1iIiwiMzcyeDI0OCMiXV0/Manhattan%20Schist.JPG",
"location": "Directly inside the southeastern corner of Central Park, northwest of the PondNew York, New York, 10019United States",
"source": "https://www.atlasobscura.com/places/Hallett-Nature-Sanctuary",
"website": "http://www.centralparknyc.org/things-to-see-and-do/attractions/hallett-nature-sanctuary.html",
"local_tourist": "local",
"indoor_outdoor": "outdoor",
"concepts": [
{
"text": "Central Park",
"relevance": 0.972205,
"dbpedia_resource": "http://dbpedia.org/resource/Central_Park"
},
{
"text": "Manhattan",
"relevance": 0.899809,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Frederick Law Olmsted",
"relevance": 0.880702,
"dbpedia_resource": "http://dbpedia.org/resource/Frederick_Law_Olmsted"
},
{
"text": "New York City",
"relevance": 0.78131,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Calvert Vaux",
"relevance": 0.756469,
"dbpedia_resource": "http://dbpedia.org/resource/Calvert_Vaux"
},
{
"text": "Prospect Park",
"relevance": 0.468118,
"dbpedia_resource": "http://dbpedia.org/resource/Prospect_Park_(Brooklyn)"
},
{
"text": "Robert Moses",
"relevance": 0.457346,
"dbpedia_resource": "http://dbpedia.org/resource/Robert_Moses"
},
{
"text": "Invasive species",
"relevance": 0.454572,
"dbpedia_resource": "http://dbpedia.org/resource/Invasive_species"
}
],
"categories": [
{
"score": 0.560198,
"label": "travel"
},
{
"score": 0.541548,
"label": "home and garden"
},
{
"score": 0.523356,
"label": "style and fashion"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk700jn095515t1avgo",
"name": "First Shearith Israel Graveyard",
"description": "The First Shearith Israel Graveyard is not only the oldest Jewish Cemetery in New York City, it is also the only 17th century structure still remaining in Manhattan. The small burial site, now located in Chinatown, contains 107 graves, most of which retain legible headstones in a variety of languages including Hebrew, Spanish and Portuguese. A number of the graves belong to soldiers from the Revolutionary War and the landmark graveyard is a popular Memorial Day site to this day. Does not seem to be open/accessible.Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzLzNlMWE0MGEyLTY4MWQtNDIxZi04YzJlLTYzOTU4MGViNzU2YWI0ZDgzNmI1YzdiMDQzNDE4YV9FRDNGN0M3Mi1GQThCLTQ4NkEtOUVBOC02QkRDNTdDNDY1Q0QuanBlZyJdLFsicCIsImNvbnZlcnQiLCItcXVhbGl0eSA4MSAtYXV0by1vcmllbnQiXSxbInAiLCJ0aHVtYiIsIjM3MngyNDgjIl1d/ED3F7C72-FA8B-486A-9EA8-6BDC57C465CD.jpeg",
"location": "57 Saint James PlaceNew York, New York, 10038United States",
"source": "https://www.atlasobscura.com/places/First-Shearith-Israel-Graveyard",
"website": null,
"local_tourist": "local",
"indoor_outdoor": "outdoor",
"concepts": [
{
"text": "Cemetery",
"relevance": 0.945673,
"dbpedia_resource": "http://dbpedia.org/resource/Cemetery"
},
{
"text": "American Revolutionary War",
"relevance": 0.775222,
"dbpedia_resource": "http://dbpedia.org/resource/American_Revolutionary_War"
},
{
"text": "Headstone",
"relevance": 0.765066,
"dbpedia_resource": "http://dbpedia.org/resource/Headstone"
},
{
"text": "New York City",
"relevance": 0.717042,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Burial",
"relevance": 0.684439,
"dbpedia_resource": "http://dbpedia.org/resource/Burial"
},
{
"text": "New Jersey",
"relevance": 0.594972,
"dbpedia_resource": "http://dbpedia.org/resource/New_Jersey"
},
{
"text": "Manhattan",
"relevance": 0.575517,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Los Angeles",
"relevance": 0.532857,
"dbpedia_resource": "http://dbpedia.org/resource/Los_Angeles"
}
],
"categories": [
{
"score": 0.552371,
"label": "religion and spirituality"
},
{
"score": 0.347397,
"label": "science"
},
{
"score": 0.117244,
"label": "society"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk700jo09554hfqnf8d",
"name": "Water Tower",
"description": "New York City’s skyline features a myriad of water towers, but one in particular stands out from the rest. MoMA’s rooftop sculpture garden features the familiar steel frame, but the container appears to be missing. In its place, you’ll find what looks like water in the shape of a coned cylinder resting atop the structure.The 12-foot-tall resin cast of the inside of a water tower is English artist Rachel Whiteread’s first public sculpture to be conceived and displayed in the U.S. After she was commissioned by the Public Art Fund in the ‘90s, she searched the city for what she felt would be a quintessential New York City symbol.Whiteread is known for her castings of everyday objects like bathtubs, hot water bottles, and even an entire Victorian house. “Water Tower” was made using a once-functioning cedar tower. She chose it for the wood’s distinct texture, which she then imprinted on the casting. The translucent sculpture changes color and brightness with the weather and is all but invisible at night.The piece was installed on a rooftop on West Broadway and Grand Street in SoHo in 1998, but it has since been moved to MoMA. Like Whiteread’s other works, it almost appears to be a fossil. If you’re ever at MoMA, keep an eye out for the glowing artifact of city life.The Water Tower is best viewed from West 54th Street between 5th and 6th Ave.Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzL2Q0NjY0YzMwZTYzNTg1Mzg2Nl8xMzU1OTc5MTUyX2U0YTAwYjY0ZDBfby5qcGciXSxbInAiLCJ0aHVtYiIsIjE1MzZ4MTAyNCswKzI2MSJdLFsicCIsImNvbnZlcnQiLCItcXVhbGl0eSA4MSAtYXV0by1vcmllbnQiXSxbInAiLCJ0aHVtYiIsIjM3MngyNDgjIl1d/1355979152_e4a00b64d0_o.jpg",
"location": "11 West 53 StreetNew York, New York, 10019United States",
"source": "https://www.atlasobscura.com/places/Water-Tower",
"website": null,
"local_tourist": "local",
"indoor_outdoor": "outdoor",
"concepts": [
{
"text": "New York City",
"relevance": 0.985693,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Manhattan",
"relevance": 0.489047,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Public Art Fund",
"relevance": 0.439916,
"dbpedia_resource": "http://dbpedia.org/resource/Public_Art_Fund"
},
{
"text": "Water tower",
"relevance": 0.415367,
"dbpedia_resource": "http://dbpedia.org/resource/Water_tower"
},
{
"text": "Sculpture",
"relevance": 0.407267,
"dbpedia_resource": "http://dbpedia.org/resource/Sculpture"
},
{
"text": "United Kingdom",
"relevance": 0.402691,
"dbpedia_resource": "http://dbpedia.org/resource/United_Kingdom"
},
{
"text": "Pablo Picasso",
"relevance": 0.397789,
"dbpedia_resource": "http://dbpedia.org/resource/Pablo_Picasso"
},
{
"text": "Public art",
"relevance": 0.388018,
"dbpedia_resource": "http://dbpedia.org/resource/Public_art"
}
],
"categories": [
{
"score": 0.501881,
"label": "art and entertainment"
},
{
"score": 0.466411,
"label": "home and garde"
},
{
"score": 0.242701,
"label": "science"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk800jp0955ky9hzdqj",
"name": "C-Squat",
"description": "In the 1970s tenement vacancies in the Lower East side left some buildings up for grabs, as squatters in need of downtown housing soon discovered. In 1989, squatters discovered the building that would become C-squat.It gutted by fire and without stairs or landings, but this didn’t stop them from transforming the space.The squat became famous because its residents repaired it after it fell into dangerous decay. Famous punk shows were held in the two-story basement (which resulted from a cave-in). A half pipe was also installed. In 2002, C-squat joined a network of nearby squats to negotiate the sale of the buildings from the city. The plan went like this: Each building would be sold for $1 USD to a nonprofit intermediary. The nonprofit would then take out loans on the squatters’ behalf to renovate the buildings and bring them up to code. Once the renovations were finished and the building was up to code, it would be transferred to its residents, along with the accumulated renovation debt.In 2012, the Museum of Reclaimed Urban Space (MoRUS) moved into the ground floor space to earn rent and keep their monthly co-op payments affordable. In 2015, the squat officially became a low-income co-op.Accessible from L Train at 1st AvenueSign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzL2Z0czAxbmZiem9rZDEwN2VlOGZjNTBlNmI3ODcwX0UzNjkzRjU2LUM5QTktNDBGNC1BQkNDLTAzODA2NENDN0REQi5qcGVnIl0sWyJwIiwiY29udmVydCIsIi1xdWFsaXR5IDgxIC1hdXRvLW9yaWVudCJdLFsicCIsInRodW1iIiwiMzcyeDI0OCMiXV0/E3693F56-C9A9-40F4-ABCC-038064CC7DDB.jpeg",
"location": "155 Avenue CNew York, New York, 10009United States",
"source": "https://www.atlasobscura.com/places/C-Squat",
"website": null,
"local_tourist": "local",
"indoor_outdoor": null,
"concepts": [
{
"text": "Storey",
"relevance": 0.967616,
"dbpedia_resource": "http://dbpedia.org/resource/Storey"
},
{
"text": "Squatting",
"relevance": 0.943387,
"dbpedia_resource": "http://dbpedia.org/resource/Squatting"
},
{
"text": "House",
"relevance": 0.851808,
"dbpedia_resource": "http://dbpedia.org/resource/House"
},
{
"text": "C-Squat",
"relevance": 0.793214,
"dbpedia_resource": "http://dbpedia.org/resource/C-Squat"
},
{
"text": "Building",
"relevance": 0.792072,
"dbpedia_resource": "http://dbpedia.org/resource/Building"
},
{
"text": "Lower East Side",
"relevance": 0.774598,
"dbpedia_resource": "http://dbpedia.org/resource/Lower_East_Side"
},
{
"text": "Renovation",
"relevance": 0.743117,
"dbpedia_resource": "http://dbpedia.org/resource/Renovation"
},
{
"text": "Building engineering",
"relevance": 0.737868,
"dbpedia_resource": "http://dbpedia.org/resource/Building_engineering"
}
],
"categories": [
{
"score": 0.528702,
"label": "home and garde"
},
{
"score": 0.141362,
"label": "society"
},
{
"score": 0.138804,
"label": "home and garden"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk800jq095501wadudl",
"name": "Strawberry Fields Memorial",
"description": " Constructed just five years after John Lennon’s tragic death, Strawberry Fields quickly became a well-known pop-culture pilgrimage site, and is now presided over and decorated by one dedicated super-fan.Situated across the street from the Dakota, the building in which John Lennon lived and was killed, Strawberry Fields is a 2.5 acre chunk of Central Park focused around a mosaic with a single, powerful word in its center; imagine. During his career with the Beatles, Lennon inspired many, and since 1985 people have flocked to pay homage to the fallen music hero.One man took it upon himself to act as the keeper of Lennon’s legacy at the memorial. Gary dos Santos was well-known around New York City and was a fixture at Strawberry fields. The self-proclaimed mayor of Strawberry Fields began hanging out near the memorial in the mid-1990s and never left after John Lennon told him in a dream to keep maintaining the memorial.dos Santos made a living off of tips from tourists who paid him what they could after a deliverance of a short monologue on Central Park, John Lennon and peace. Besides his work as tour guide, dos Santos also contributed his own sort of artwork to the memorial, and regularly laid out flowers in the form of a peace sign over the mosaic in dedication of John Lennon.While dos Santos passed away in November 2013 from complications from leukemia, he will always be remembered as an integral figure to Strawberry Fields and an important fixture to Central Park itself through his dedication and beautiful adornments to the memorial.Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzL2VkNTNhZjU0YjI4YmUxOTE2ODk0YWNiYTc0YjUwMzc4YTVkZGYyNWEuanBnIl0sWyJwIiwiY29udmVydCIsIi1xdWFsaXR5IDgxIC1hdXRvLW9yaWVudCJdLFsicCIsInRodW1iIiwiMzcyeDI0OCMiXV0/ed53af54b28be1916894acba74b50378a5ddf25a.jpg",
"location": "Strawberry FieldsCentral ParkNew York, New York, 10024United States",
"source": "https://www.atlasobscura.com/places/Strawberry-Fields-Memorial",
"website": null,
"local_tourist": "local",
"indoor_outdoor": null,
"concepts": [
{
"text": "The Beatles",
"relevance": 0.973657,
"dbpedia_resource": "http://dbpedia.org/resource/The_Beatles"
},
{
"text": "John Lennon",
"relevance": 0.893791,
"dbpedia_resource": "http://dbpedia.org/resource/John_Lennon"
},
{
"text": "Imagine",
"relevance": 0.578634,
"dbpedia_resource": "http://dbpedia.org/resource/Imagine_(album)"
},
{
"text": "New York City",
"relevance": 0.57093,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Sgt. Pepper's Lonely Hearts Club Band",
"relevance": 0.559408,
"dbpedia_resource": "http://dbpedia.org/resource/Sgt._Pepper's_Lonely_Hearts_Club_Band"
},
{
"text": "The Dakota",
"relevance": 0.537931,
"dbpedia_resource": "http://dbpedia.org/resource/The_Dakota"
},
{
"text": "English-language films",
"relevance": 0.502038,
"dbpedia_resource": "http://dbpedia.org/resource/English-language_films"
},
{
"text": "The Beatles Anthology",
"relevance": 0.491909,
"dbpedia_resource": "http://dbpedia.org/resource/The_Beatles_Anthology"
}
],
"categories": [
{
"score": 0.227768,
"label": "art and entertainment"
},
{
"score": 0.142494,
"label": "society"
},
{
"score": 0.141572,
"label": "home and garde"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk800jr0955h2r2leem",
"name": "Castle Williams",
"description": "Although Governors Island off the coast of Manhattan has seen an off-and-on military presence since the Revolutionary War, one need not enlist to reach it any longer. In 1996 the Coast Guard – the last of the military tenants of the Island – finally folded up their charts, and while it took a few years and some (luckily) unfulfilled development plans, Governors Island is now open to the public from May to September, finally allowing access to historic Castle Williams.On the northwest corner of the island, Castle Williams was the jewel in the defensive crown set up on Governors Island to protect New York from attack during the War of 1812. The circular red sandstone defense was finished in 1811, a cousin to the better-known Castle Clinton at Battery Park just across the channel. The eight-foot-thick walls of the “castle” were arranged in a circular arch so that the 100 cannons installed within could fire in just about every direction.The defense was fearsome enough that it never even had to be tested. The British never attacked New York during the War of 1812. The fort remained and acted as a Union barracks and jail during the Civil War, before being converted to a full military prison later on. The castle operated as a prison of some sort until 1965, when the aging structure was finally decommissioned.Today Castle Williams is restored and protected as a historical landmark on Governors Island. During the summer months, the castle can be toured with the help of a guide who will walk visitors through the many lives of the historic fort.The ferry leaves 7 days a week from lower Manhattan (terminal next to the Staten Island Ferry), at South & Whitehall Streets. On weekends there is also a ferry from Pier 6 at Brooklyn Bridge Park, at the end of Atlantic Avenue.Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzL2I1Y2M3MmQ0OWRjYjU2ZGQ1Nl9DYXN0bGVXaWxsaWFtc0EuanBnIl0sWyJwIiwiY29udmVydCIsIi1xdWFsaXR5IDgxIC1hdXRvLW9yaWVudCJdLFsicCIsInRodW1iIiwiMzcyeDI0OCMiXV0",
"location": "Governors IslandNew York, New York, 10004United States",
"source": "https://www.atlasobscura.com/places/Castle-Williams",
"website": "http://govisland.com/",
"local_tourist": "local",
"indoor_outdoor": "outdoor",
"concepts": [
{
"text": "Manhattan",
"relevance": 0.949618,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Staten Island Ferry",
"relevance": 0.826503,
"dbpedia_resource": "http://dbpedia.org/resource/Staten_Island_Ferry"
},
{
"text": "New York City",
"relevance": 0.761276,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "American Revolutionary War",
"relevance": 0.728646,
"dbpedia_resource": "http://dbpedia.org/resource/American_Revolutionary_War"
},
{
"text": "Staten Island",
"relevance": 0.628046,
"dbpedia_resource": "http://dbpedia.org/resource/Staten_Island"
},
{
"text": "New Jersey",
"relevance": 0.577666,
"dbpedia_resource": "http://dbpedia.org/resource/New_Jersey"
},
{
"text": "Brooklyn",
"relevance": 0.520963,
"dbpedia_resource": "http://dbpedia.org/resource/Brooklyn"
},
{
"text": "Governors Island",
"relevance": 0.510367,
"dbpedia_resource": "http://dbpedia.org/resource/Governors_Island"
}
],
"categories": [
{
"score": 0.522698,
"label": "society"
},
{
"score": 0.247491,
"label": "science"
},
{
"score": 0.20792,
"label": "law, govt and politics"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk800js0955vlcpfjb2",
"name": "284 Broome Street",
"description": "The block of Broome Street between Allen and Eldridge is the smelliest block in New York City. The New York Times Magazine tested the area with a number of olfactory experts, who all agreed it is the worst smell known to the City.If you happen to think you can handle anything, or that you’ve smelled worse, hop a subway down to the Lower East Side and take a few whiffs. Better yet, challenge a friend and make the loser buy lunch at Shopsin’s, only a few blocks away.A local magazine conducted an investigation on the smell recently, and figured out that the smell was coming from stacked boxes of raw poultry that have been marinating in the sun. While you would think that the place would be slapped with a fine or a warning from the health inspectors, but the smell is technically legal, so the legendary scent of Broome street lives on, unopposed.Accessible from B,D Trains at Grand Street StationSign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzLzZiMWJlOGI5ZDRhMzM1YTQ5ZGRhZGQzNTdiNTFmNjJic21lbGxpZXN0LWJsb2NrMS5qcGciXSxbInAiLCJjb252ZXJ0IiwiLXF1YWxpdHkgODEgLWF1dG8tb3JpZW50Il0sWyJwIiwidGh1bWIiLCIzNzJ4MjQ4IyJdXQ/smelliest-block1.jpg",
"location": "284 Broome StreetNew York, New York, 10002United States",
"source": "https://www.atlasobscura.com/places/284-Broome-Street",
"website": null,
"local_tourist": "local",
"indoor_outdoor": "outdoor",
"concepts": [
{
"text": "New York City",
"relevance": 0.984591,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Lower East Side",
"relevance": 0.973223,
"dbpedia_resource": "http://dbpedia.org/resource/Lower_East_Side"
},
{
"text": "Manhattan",
"relevance": 0.596962,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Olfaction",
"relevance": 0.482221,
"dbpedia_resource": "http://dbpedia.org/resource/Olfaction"
},
{
"text": "Odor",
"relevance": 0.475447,
"dbpedia_resource": "http://dbpedia.org/resource/Odor"
},
{
"text": "Third rail",
"relevance": 0.414584,
"dbpedia_resource": "http://dbpedia.org/resource/Third_rail"
},
{
"text": "New York City Subway",
"relevance": 0.404158,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City_Subway"
},
{
"text": "Amtrak",
"relevance": 0.403158,
"dbpedia_resource": "http://dbpedia.org/resource/Amtrak"
}
],
"categories": [
{
"score": 0.33114,
"label": "style and fashion"
},
{
"score": 0.309784,
"label": "technology and computing"
},
{
"score": 0.193651,
"label": "society"
}
],
"child_friendly": null,
"type": [
"activity"
]
},
{
"id": "cjkwyvvk900jt0955jhzd0jm3",
"name": "Spring Street Salt Shed",
"description": "Sitting just across from the Hudson River on Manhattan’s West Street is what appears to be a titanic concrete Aggro Crag, but it is in fact an abstract representation of a salt grain. Which makes sense, because that’s what it does. Store salt.The ultra modern Spring Street Salt Shed is an effort by the city to make even their most utilitarian edifices into unique pieces of art. Finally unveiled in 2015, the strangely angular structure stands in sharp contrast to the staid buildings surrounding it. Joining some 40 odd other sheds in the city that also hold road salt for use in the winter months, the new salt shed is certainly the most fashionable. Even the concrete that the six-foot-thick walls are made of has a special, blueish luster thanks to bits of slag that were added to the mix during construction.When in full use, the bunker-like shed will hold around 4,000 tons of salt, piled 40 feet high, and that’s about it. For all of the high design efforts added to the exterior of the building, inside it is pretty much just a big box, fitted with a giant door for trucks to drive through.The salt shed cannot be entered, but anyone traveling along the Hudson River in Manhattan can see it from the street. Licking the surface is not recommended. Sign up for our newsletter and get the best of Atlas Obscura in your inbox.",
"cost": null,
"image": "https://assets.atlasobscura.com/media/W1siZiIsInVwbG9hZHMvcGxhY2VfaW1hZ2VzL2JlYTNmMzE2MGQ4OTkxNDllYl81MzNfQ2FuYWxfU3Rfc2FsdF9zaGVkX2plaC5KUEciXSxbInAiLCJjb252ZXJ0IiwiLXF1YWxpdHkgODEgLWF1dG8tb3JpZW50Il0sWyJwIiwidGh1bWIiLCIzNzJ4MjQ4IyJdXQ",
"location": "336 Spring StNew York, New YorkUnited States",
"source": "https://www.atlasobscura.com/places/Spring-Street-Salt-Shed",
"website": null,
"local_tourist": "local",
"indoor_outdoor": "outdoor",
"concepts": [
{
"text": "Hudson River",
"relevance": 0.979819,
"dbpedia_resource": "http://dbpedia.org/resource/Hudson_River"
},
{
"text": "New York City",
"relevance": 0.945234,
"dbpedia_resource": "http://dbpedia.org/resource/New_York_City"
},
{
"text": "Manhattan",
"relevance": 0.917929,
"dbpedia_resource": "http://dbpedia.org/resource/Manhattan"
},
{
"text": "Holland Tunnel",
"relevance": 0.746093,
"dbpedia_resource": "http://dbpedia.org/resource/Holland_Tunnel"
},
{
"text": "English-language films",
"relevance": 0.725977,
"dbpedia_resource": "http://dbpedia.org/resource/English-language_films"
},
{
"text": "New Jersey",
"relevance": 0.646581,
"dbpedia_resource": "http://dbpedia.org/resource/New_Jersey"
},
{
"text": "Hudson County, New Jersey",
"relevance": 0.645833,
"dbpedia_resource": "http://dbpedia.org/resource/Hudson_County,_New_Jersey"
},
{
"text": "Henry Hudson",
"relevance": 0.641973,
"dbpedia_resource": "http://dbpedia.org/resource/Henry_Hudson"
}
],
"categories": [
{
"score": 0.690052,
"label": "art and entertainment"
},
{
"score": 0.508309,
"label": "business and industrial"
},
{