-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall-branches.json
More file actions
1350 lines (1350 loc) · 43.1 KB
/
all-branches.json
File metadata and controls
1350 lines (1350 loc) · 43.1 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
{
"branches": [
{
"contacts": {
"email": "aguilar@nypl.org",
"phone": "2125342930"
},
"cross_street": "between Park & Lexington Aves.",
"id": "FE",
"lat": 40.7619,
"locality": "New York",
"long": -73.9691,
"name": "58th Street Library",
"postal_code": "10022-1211",
"region": "NY",
"street_address": "127 East 58th Street"
},
{
"contacts": {
"email": "ahlbph@nypl.org",
"phone": "2122065400",
"tty": "2122065458"
},
"cross_street": "near First Ave.",
"id": "SS",
"lat": 40.7652,
"locality": "New York",
"long": -73.9601,
"name": "67th Street Library",
"postal_code": "100656204",
"region": "NY",
"street_address": "328 East 67th Street"
},
{
"contacts": {
"email": "bloomingdale@nypl.org",
"phone": "2122228030"
},
"cross_street": "near Lexington Ave.",
"id": "NSR",
"lat": 40.7863,
"locality": "New York",
"long": -73.9522,
"name": "96th Street Library",
"postal_code": "101282597",
"region": "NY",
"street_address": "112 East 96th Street"
},
{
"contacts": {
"email": "chathamsquare@nypl.org",
"phone": "2129646598"
},
"cross_street": null,
"id": "HU",
"lat": 40.8028,
"locality": "New York",
"long": -73.9532,
"name": "115th Street Library",
"postal_code": "10026-2403",
"region": "NY",
"street_address": "203 West 115th Street"
},
{
"contacts": {
"email": "morningside@nypl.org",
"phone": "2128642530"
},
"cross_street": "near Third Ave.",
"id": "HD",
"lat": 40.8034,
"locality": "New York",
"long": -73.9354,
"name": "125th Street Library",
"postal_code": "100351786",
"region": "NY",
"street_address": "224 East 125th Street"
},
{
"contacts": {
"email": "columbus@nypl.org",
"phone": "2125865098"
},
"cross_street": "between Lexington & Third Aves.",
"id": "AG",
"lat": 40.7943,
"locality": "New York",
"long": -73.9436,
"name": "Aguilar Library",
"postal_code": "100293212",
"region": "NY",
"street_address": "174 East 110th Street"
},
{
"contacts": {
"email": "countee_cullen@nypl.org",
"phone": "2124912070"
},
"cross_street": "between Allerton & Arnow Aves.",
"id": "AL",
"lat": 40.866,
"locality": "Bronx",
"long": -73.8632,
"name": "Allerton Library",
"postal_code": "10467",
"region": "NY",
"street_address": "2740 Barnes Avenue"
},
{
"cross_street": "between 5th and 6th Aves.",
"id": "LBL",
"lat": 40.7404,
"locality": "New York",
"long": -73.993,
"name": "Andrew Heiskell Braille and Talking Book Library",
"postal_code": "10011-4211",
"region": "NY",
"street_address": "40 West 20th Street"
},
{
"cross_street": "north of Bartow Ave.",
"id": "BAR",
"lat": 40.8711,
"locality": "Bronx",
"long": -73.8305,
"name": "Baychester Library",
"postal_code": "10475",
"region": "NY",
"street_address": "2049 Asch Loop North"
},
{
"contacts": {
"email": "epiphany@nypl.org",
"phone": "2126792645"
},
"cross_street": "at Hughes Ave.",
"id": "BER",
"lat": 40.8544,
"locality": "Bronx",
"long": -73.8877,
"name": "Belmont Library and Enrico Fermi Cultural Center",
"postal_code": "10458",
"region": "NY",
"street_address": "610 E. 186th Street"
},
{
"contacts": {
"email": "58st_branch@nypl.org",
"phone": "2127597358"
},
"cross_street": "between Amsterdam & Columbus Aves.",
"id": "BLR",
"lat": 40.796,
"locality": "New York",
"long": -73.9671,
"name": "Bloomingdale Library",
"postal_code": "100255196",
"region": "NY",
"street_address": "150 West 100th Street"
},
{
"contacts": {
"email": "fort_washington@nypl.org",
"phone": "2129273533"
},
"cross_street": "at Briggs Avenue",
"id": "BLC",
"lat": 40.8634,
"locality": "Bronx",
"long": -73.8944,
"name": "Bronx Library Center",
"postal_code": "10458",
"region": "NY",
"street_address": "310 East Kingsbridge Road"
},
{
"contacts": {
"email": "george_bruce@nypl.org",
"phone": "2126629727"
},
"cross_street": "at Bruckner Blvd.",
"id": "CT",
"lat": 40.8264,
"locality": "Bronx",
"long": -73.8499,
"name": "Castle Hill Library",
"postal_code": "10473",
"region": "NY",
"street_address": "947 Castle Hill Avenue"
},
{
"contacts": {
"email": "hamilton_fish@nypl.org",
"phone": "2126732290"
},
"cross_street": "near Catherine St.",
"id": "CHR",
"lat": 40.7134,
"locality": "New York",
"long": -73.9965,
"name": "Chatham Square Library",
"postal_code": "10002-6804",
"region": "NY",
"street_address": "33 East Broadway"
},
{
"contacts": {
"email": "hamilton_grange@nypl.org",
"phone": "2129262147"
},
"cross_street": "between Bay & Fordham Sts.",
"id": "CI",
"lat": 40.8477,
"locality": "Bronx",
"long": -73.7865,
"name": "City Island Library",
"postal_code": "10464",
"region": "NY",
"street_address": "320 City Island Avenue"
},
{
"contacts": {
"email": "harlem@nypl.org",
"phone": "2123485620"
},
"cross_street": "near Westchester Ave.",
"id": "CP",
"lat": 40.8299,
"locality": "Bronx",
"long": -73.8748,
"name": "Clason's Point Library",
"postal_code": "10472",
"region": "NY",
"street_address": "1215 Morrison Avenue"
},
{
"contacts": {
"email": "hudson_park@nypl.org",
"phone": "2122436876"
},
"cross_street": "between 50th & 51st Sts.",
"id": "CS",
"lat": 40.765,
"locality": "New York",
"long": -73.9914,
"name": "Columbus Library",
"postal_code": "100197019",
"region": "NY",
"street_address": "742 10th Avenue"
},
{
"contacts": {
"email": "inwood@nypl.org",
"phone": "2129422445"
},
"cross_street": "near Lenox Ave.",
"id": "HTR",
"lat": 40.8148,
"locality": "New York",
"long": -73.9408,
"name": "Countee Cullen Library",
"postal_code": "10030-2695",
"region": "NY",
"street_address": "104 West 136th Street"
},
{
"contacts": {
"email": "jefferson_market@nypl.org",
"phone": "2122434334"
},
"cross_street": "between Seaview & Liberty Aves.",
"id": "DH",
"lat": 40.5906,
"locality": "Staten Island",
"long": -74.101,
"name": "Dongan Hills Library",
"postal_code": "10304",
"region": "NY",
"street_address": "1617 Richmond Road"
},
{
"contacts": {
"email": "kips_bay@nypl.org",
"phone": "2126832520"
},
"cross_street": null,
"id": "DLC",
"lat": 40.7609,
"locality": "New York",
"long": -73.9774,
"name": "Donnell Library Center",
"postal_code": "10019-6185",
"region": "NY",
"street_address": "20 West 53rd Street"
},
{
"contacts": {
"email": "macombs_bridge@nypl.org",
"phone": "2122814900"
},
"cross_street": "near Eastchester Rd.",
"id": "EA",
"lat": 40.8702,
"locality": "Bronx",
"long": -73.8454,
"name": "Eastchester Library",
"postal_code": "10469",
"region": "NY",
"street_address": "1385 East Gun Hill Road"
},
{
"contacts": {
"phone": "2123400863",
"tty": "2123400931"
},
"cross_street": "at DeReimer Ave.",
"id": "EW",
"lat": 40.8888,
"locality": "Bronx",
"long": -73.8409,
"name": "Edenwald Library",
"postal_code": "10466",
"region": "NY",
"street_address": "1255 East 233rd Street"
},
{
"contacts": {
"email": "muhlenberg@nypl.org",
"phone": "2129241585"
},
"cross_street": "near Second Ave.",
"id": "EP",
"lat": 40.7385,
"locality": "New York",
"long": -73.9827,
"name": "Epiphany Library",
"postal_code": "10010-4672",
"region": "NY",
"street_address": "228 East 23rd Street"
},
{
"contacts": {
"email": "new_amsterdam@nypl.org",
"phone": "2127328186"
},
"cross_street": "between St. Nicholas & Audubon Aves.",
"id": "FW",
"lat": 40.8478,
"locality": "New York",
"long": -73.9337,
"name": "Fort Washington Library",
"postal_code": "100335799",
"region": "NY",
"street_address": "535 West 179th Street"
},
{
"contacts": {
"phone": "9172756975"
},
"cross_street": "at 181st St.",
"id": "FXR",
"lat": 40.8574,
"locality": "Bronx",
"long": -73.9095,
"name": "Francis Martin Library",
"postal_code": "10453",
"region": "NY",
"street_address": "2150 University Avenue"
},
{
"contacts": {
"email": "96st_branch@nypl.org",
"phone": "2122890908"
},
"cross_street": "at Amsterdam Ave.",
"id": "BR",
"lat": 40.8139,
"locality": "New York",
"long": -73.957,
"name": "George Bruce Library",
"postal_code": "100273407",
"region": "NY",
"street_address": "518 West 125th Street"
},
{
"contacts": {
"email": "115st_branch@nypl.org",
"phone": "2126669393"
},
"cross_street": "east of Grand Concourse",
"id": "GD",
"lat": 40.8439,
"locality": "Bronx",
"long": -73.9101,
"name": "Grand Concourse Library",
"postal_code": "10457",
"region": "NY",
"street_address": "155 East 173rd Street"
},
{
"contacts": {
"email": "125st_branch@nypl.org",
"phone": "2125345050"
},
"cross_street": "at Margaret St.",
"id": "GK",
"lat": 40.5524,
"locality": "Staten Island",
"long": -74.151,
"name": "Great Kills Library",
"postal_code": "10308",
"region": "NY",
"street_address": "56 Giffords Lane"
},
{
"contacts": {
"email": "ottendorfer@nypl.org",
"phone": "2126740947"
},
"cross_street": "near Avenue D",
"id": "HF",
"lat": 40.7199,
"locality": "New York",
"long": -73.9791,
"name": "Hamilton Fish Park Library",
"postal_code": "100021197",
"region": "NY",
"street_address": "415 East Houston Street"
},
{
"contacts": {
"email": "riverside@nypl.org",
"phone": "2128701810"
},
"cross_street": null,
"id": "HG",
"lat": 40.8255,
"locality": "New York",
"long": -73.9477,
"name": "Hamilton Grange Library",
"postal_code": "100315101",
"region": "NY",
"street_address": "503 West 145th Street"
},
{
"contacts": {
"email": "st_agnes@nypl.org",
"phone": "2126210619"
},
"cross_street": null,
"id": "HL",
"lat": 40.8061,
"locality": "New York",
"long": -73.9431,
"name": "Harlem Library",
"postal_code": "100275699",
"region": "NY",
"street_address": "9 West 124th Street"
},
{
"contacts": {
"phone": "2124912200"
},
"cross_street": "at Woodycrest Ave.",
"id": "HB",
"lat": 40.838,
"locality": "Bronx",
"long": -73.9235,
"name": "High Bridge Library",
"postal_code": "10452",
"region": "NY",
"street_address": "78 West 168th Street"
},
{
"contacts": {
"email": "sewardpark@nypl.org",
"phone": "2124776770"
},
"cross_street": "off Seventh Ave. South",
"id": "HP",
"lat": 40.73,
"locality": "New York",
"long": -74.0053,
"name": "Hudson Park Library",
"postal_code": "100143929",
"region": "NY",
"street_address": "66 Leroy Street"
},
{
"contacts": {
"email": "67st_branch@nypl.org",
"phone": "2127341717",
"tty": "2127943854"
},
"cross_street": "at Drumgoole Rd., East",
"id": "HK",
"lat": 40.5345,
"locality": "Staten Island",
"long": -74.1933,
"name": "Huguenot Park Library",
"postal_code": "10312",
"region": "NY",
"street_address": "830 Huguenot Avenue"
},
{
"contacts": {
"email": "christinapark@nypl.org",
"phone": "2127523824"
},
"cross_street": null,
"id": "SASB",
"lat": 40.7532,
"locality": "New York",
"long": -73.9822,
"name": "Stephen A. Schwarzman Building",
"postal_code": "10018-2788",
"region": "NY",
"street_address": "Fifth Avenue at 42nd Street"
},
{
"contacts": {
"email": "tompkins_square@nypl.org",
"phone": "2122284747"
},
"cross_street": "at Tiffany St.",
"id": "HSR",
"lat": 40.8187,
"locality": "Bronx",
"long": -73.8939,
"name": "Hunt's Point Library",
"postal_code": "10459",
"region": "NY",
"street_address": "877 Southern Boulevard"
},
{
"contacts": {
"email": "washington_heights@nypl.org",
"phone": "2129236054"
},
"cross_street": "near Dyckman St.",
"id": "INR",
"lat": 40.866,
"locality": "New York",
"long": -73.9257,
"name": "Inwood Library",
"postal_code": "100344916",
"region": "NY",
"street_address": "4790 Broadway"
},
{
"contacts": {
"email": "webster@nypl.org",
"phone": "2122885049"
},
"cross_street": "at 10th St.",
"id": "JMR",
"lat": 40.7347,
"locality": "New York",
"long": -73.999,
"name": "Jefferson Market Library",
"postal_code": "100118454",
"region": "NY",
"street_address": "425 Avenue of the Americas"
},
{
"contacts": {
"email": "yorkville@nypl.org",
"phone": "2127445824"
},
"cross_street": "near Kingsbridge Rd.",
"id": "JP",
"lat": 40.8691,
"locality": "Bronx",
"long": -73.9012,
"name": "Jerome Park Library",
"postal_code": "10468",
"region": "NY",
"street_address": "118 Eames Place"
},
{
"contacts": {
"email": "allerton@nypl.org",
"phone": "7188814240"
},
"cross_street": null,
"id": "KBR",
"lat": 40.8805,
"locality": "Bronx",
"long": -73.908,
"name": "Kingsbridge Library",
"postal_code": "10463",
"region": "NY",
"street_address": "291 West 231st Street"
},
{
"contacts": {
"email": "baychester@nypl.org",
"phone": "7183796700"
},
"cross_street": "at E. 31st St.",
"id": "KP",
"lat": 40.7438,
"locality": "New York",
"long": -73.9797,
"name": "Kips Bay Library",
"postal_code": "100166025",
"region": "NY",
"street_address": "446 Third Avenue"
},
{
"contacts": {
"email": "belmont@nypl.org",
"phone": "7189336410"
},
"cross_street": "between W. 152nd & 153rd Sts.",
"id": "MB",
"lat": 40.826,
"locality": "New York",
"long": -73.9363,
"name": "Macomb's Bridge Library",
"postal_code": "100392004",
"region": "NY",
"street_address": "2650 Adam Clayton Powell, Jr. Blvd."
},
{
"contacts": {
"email": "castle_hill@nypl.org",
"phone": "7188243838"
},
"cross_street": "at E. 162nd St.",
"id": "ME",
"lat": 40.8267,
"locality": "Bronx",
"long": -73.9177,
"name": "Melrose Library",
"postal_code": "10451",
"region": "NY",
"street_address": "910 Morris Avenue"
},
{
"contacts": {
"email": "city_island@nypl.org",
"phone": "7188851703"
},
"cross_street": "at 40th Street",
"id": "MML",
"lat": 40.7518,
"locality": "New York",
"long": -73.9817,
"name": "Mid-Manhattan Library",
"postal_code": "100160122",
"region": "NY",
"street_address": "455 Fifth Avenue"
},
{
"contacts": {
"email": "clasons_point@nypl.org",
"phone": "7188421235"
},
"cross_street": "at W. 113th St.",
"id": "CL",
"lat": 40.8062,
"locality": "New York",
"long": -73.965,
"name": "Morningside Heights",
"postal_code": "100257822",
"region": "NY",
"street_address": "2900 Broadway"
},
{
"contacts": {
"email": "eastchester@nypl.org",
"phone": "7186533292"
},
"cross_street": "between Radcliff and Colden Aves.",
"id": "MP",
"lat": 40.8467,
"locality": "Bronx",
"long": -73.8558,
"name": "Morris Park Library",
"postal_code": "10462",
"region": "NY",
"street_address": "985 Morris Park Avenue"
},
{
"contacts": {
"email": "edenwald@nypl.org",
"phone": "7187983355"
},
"cross_street": "at Franklin Ave.",
"id": "MR",
"lat": 40.8316,
"locality": "Bronx",
"long": -73.9013,
"name": "Morrisania Library",
"postal_code": "10456",
"region": "NY",
"street_address": "610 East 169th Street"
},
{
"contacts": {
"email": "bronxlibrarycenter@nypl.org",
"phone": "7185794244",
"tty": "7185794244"
},
"cross_street": "near Perry Ave.",
"id": "MO",
"lat": 40.8744,
"locality": "Bronx",
"long": -73.8784,
"name": "Mosholu Library",
"postal_code": "10467",
"region": "NY",
"street_address": "285 East 205th Street"
},
{
"contacts": {
"email": "francis_martin@nypl.org",
"phone": "7182955287"
},
"cross_street": "at Alexander Ave.",
"id": "MH",
"lat": 40.8116,
"locality": "Bronx",
"long": -73.9243,
"name": "Mott Haven Library",
"postal_code": "10454",
"region": "NY",
"street_address": "321 East 140th Street"
},
{
"contacts": {
"email": "grand_concourse@nypl.org",
"phone": "7185836611"
},
"cross_street": "near Seventh Ave.",
"id": "MU",
"lat": 40.7444,
"locality": "New York",
"long": -73.9961,
"name": "Muhlenberg Library",
"postal_code": "100112379",
"region": "NY",
"street_address": "209 West 23rd Street"
},
{
"contacts": {
"email": "highbridge@nypl.org",
"phone": "7182937800"
},
"cross_street": "Between Lafayette & Mulberry Streets",
"id": "ML",
"lat": 40.7242,
"locality": "New York",
"long": -73.9956,
"name": "Mulberry Street Library",
"postal_code": "100123332",
"region": "NY",
"street_address": "10 Jersey Street"
},
{
"contacts": {
"email": "hunts_point@nypl.org",
"phone": "7186170338"
},
"cross_street": "between Broadway & Church St.",
"id": "LM",
"lat": 40.7134,
"locality": "New York",
"long": -74.0078,
"name": "New Amsterdam Library",
"postal_code": "100072223",
"region": "NY",
"street_address": "9 Murray Street"
},
{
"contacts": {
"email": "jerome_park@nypl.org",
"phone": "7185495200"
},
"cross_street": null,
"id": "NDR",
"lat": 40.572,
"locality": "Staten Island",
"long": -74.1123,
"name": "New Dorp Library",
"postal_code": "10306",
"region": "NY",
"street_address": "309 New Dorp Lane"
},
{
"contacts": {
"email": "kingsbridge@nypl.org",
"phone": "7185485656"
},
"cross_street": null,
"id": "LPA",
"lat": 40.7735,
"locality": "New York",
"long": -73.9848,
"name": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center",
"postal_code": "10023-7498",
"region": "NY",
"street_address": "40 Lincoln Center Plaza"
},
{
"contacts": {
"email": "melrose@nypl.org",
"phone": "7185880110"
},
"cross_street": "near E. 8th St. - St. Marks Place",
"id": "OT",
"lat": 40.7288,
"locality": "New York",
"long": -73.9877,
"name": "Ottendorfer Library",
"postal_code": "100038304",
"region": "NY",
"street_address": "135 Second Avenue"
},
{
"contacts": {
"email": "morrisania@nypl.org",
"phone": "7185899268"
},
"cross_street": "at Pugsley Ave.",
"id": "PKR",
"lat": 40.8336,
"locality": "Bronx",
"long": -73.8593,
"name": "Parkchester Library",
"postal_code": "10462",
"region": "NY",
"street_address": "1985 Westchester Avenue"
},
{
"contacts": {
"email": "mosholu@nypl.org",
"phone": "7188828239"
},
"cross_street": "north of Crosby Ave.",
"id": "PM",
"lat": 40.8444,
"locality": "Bronx",
"long": -73.828,
"name": "Pelham Bay Library",
"postal_code": "10461",
"region": "NY",
"street_address": "3060 Middletown Road"
},
{
"contacts": {
"email": "mott_haven@nypl.org",
"phone": "7186654878"
},
"cross_street": "at Heberton Ave.",
"id": "PR",
"lat": 40.638,
"locality": "Staten Island",
"long": -74.1322,
"name": "Port Richmond Library",
"postal_code": "10302",
"region": "NY",
"street_address": "75 Bennett Street"
},
{
"contacts": {
"email": "parkchester@nypl.org",
"phone": "7188297830"
},
"cross_street": "at Amber St.",
"id": "RT",
"lat": 40.5668,
"locality": "Staten Island",
"long": -74.1381,
"name": "Richmondtown Library",
"postal_code": "10306",
"region": "NY",
"street_address": "200 Clarke Avenue"
},
{
"contacts": {
"email": "pelham_bay@nypl.org",
"phone": "7187926744"
},
"cross_street": "at W. 256th St.",
"id": "RD",
"lat": 40.9029,
"locality": "Bronx",
"long": -73.9037,
"name": "Riverdale Library",
"postal_code": "10471",
"region": "NY",
"street_address": "5540 Mosholu Avenue"
},
{
"contacts": {
"email": "riverdale@nypl.org",
"phone": "7185491212"
},
"cross_street": "at W. 65th St.",
"id": "R",
"lat": 40.7743,
"locality": "New York",
"long": -73.9844,
"name": "Riverside Library",
"postal_code": "100236447",
"region": "NY",
"street_address": "127 Amsterdam Avenue"
},
{
"contacts": {
"email": "sedgwick@nypl.org",
"phone": "7187312074"
},
"cross_street": null,
"id": "RI",
"lat": 40.7609,
"locality": "New York",
"long": -73.9506,
"name": "Roosevelt Island Library",
"postal_code": "100440001",
"region": "NY",
"street_address": "524 Main Street"
},
{
"contacts": {
"email": "soundview@nypl.org",
"fax": "7185895869",
"phone": "7185890880"
},
"cross_street": null,
"id": "SC",
"lat": 40.8144,
"locality": "New York",
"long": -73.941,
"name": "Schomburg Center for Research in Black Culture",
"postal_code": "10037-1801",
"region": "NY",
"street_address": "515 Malcolm X Boulevard"
},
{
"contacts": {
"email": "spuyten_duyvil@nypl.org",
"phone": "7187961202"
},
"cross_street": null,
"id": "SIBL",
"lat": 40.748,
"locality": "New York",
"long": -73.983,
"name": "Science, Industry and Business Library (SIBL)",
"postal_code": "10016-4314",
"region": "NY",
"street_address": "188 Madison Avenue @ 34th Street"
},
{
"contacts": {
"email": "throgs_neck@nypl.org",
"phone": "7187922612"
},
"cross_street": "at W. 176th St.",
"id": "SD",
"lat": 40.8496,
"locality": "Bronx",
"long": -73.9184,
"name": "Sedgwick Library",
"postal_code": "10453",
"region": "NY",
"street_address": "1701 Martin Luther King, Jr. Blvd."
},
{
"contacts": {
"email": "tremont@nypl.org",
"phone": "7182995177"
},
"cross_street": "at Jefferson St.",
"id": "SE",
"lat": 40.7144,
"locality": "New York",
"long": -73.9884,
"name": "Seward Park Library",
"postal_code": "100025597",
"region": "NY",
"street_address": "192 East Broadway"
},
{
"contacts": {
"email": "van_cortlandt@nypl.org",
"phone": "7185435150"
},
"cross_street": "at Seward Ave.",
"id": "SV",
"lat": 40.8182,
"locality": "Bronx",
"long": -73.8625,
"name": "Soundview Library",
"postal_code": "10473",
"region": "NY",
"street_address": "660 Soundview Avenue"