-
Notifications
You must be signed in to change notification settings - Fork 2
/
stations.JSON
4998 lines (4998 loc) · 228 KB
/
stations.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
{
"Stations": {
"1": {
"NAME": "Long Island City",
"DIRECTIONS": "Take Long Island Expressway (495) to Van Dam Street make a left. Make the first right to station.",
"LOCATION": "Borden Avenue and 2nd Street\n\n",
"SHORTNAME": "longislandcity",
"BRANCH_CD": "13",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.95639",
"LATITUDE": "40.74128",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.95639&latitude=40.74128&zoom=0.5&label=Long Island City",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "None",
"TICKETMACHINE": "A Daily Ticket Machine is located adjacent to the station platform staircase.",
"WAITINGROOM": "None",
"INFO": "For additional information, call 511 and say LIRR.",
"ABBR": "LIC",
"LOC_CD": "9031",
"MILEPENN": ".9",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Subway 7",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/pdf/t7cur.pdf",
"PROVIDER_ROUTE_IMAGE_URL": "http://travel.mtanyct.info/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "B62, Q103",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "LIC Bus"
}
]
}
},
"elevator": null,
"escalator": null
},
"2": {
"NAME": "Hunterspoint Avenue",
"DIRECTIONS": "From Queens: Long Island Expressway to Hunterspoint Avenue \n\nFrom NYC: Take 59th Street Bridge to 21st Street, then left to Hunterspoint Avenue. Turn left to Station.",
"LOCATION": "Hunterspoint Avenue and Skillman Avenue off Van Dam Street.",
"SHORTNAME": "hunterspointavenue",
"BRANCH_CD": "13",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.94679",
"LATITUDE": "40.74238",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.94679&latitude=40.74238&zoom=0.5&label=Hunterspoint Avenue",
"ACCESSIBILITY": "No",
"TICKETOFFICE": "None. Summer seasonal hours only.",
"TICKETMACHINE": "One Full Service Ticket Machine and a Daily Ticket Machine are located on the platform, west side of the ticket office. \n\n",
"WAITINGROOM": "None",
"INFO": "For additional information, call 511 and say LIRR.<br><a href=\"http://web.mta.info/lirr/AlternateRoute/maps/LICityMap.jpg\" target=\"_blank\">Station Overview</a>",
"ABBR": "HPA",
"LOC_CD": "9037",
"MILEPENN": ".6",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Subway 7",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/pdf/t7cur.pdf",
"PROVIDER_ROUTE_IMAGE_URL": "http://travel.mtanyct.info/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "Q67, B62",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Hunts Point Bus"
}
]
}
},
"elevator": null,
"escalator": null
},
"8": {
"NAME": "Penn Station",
"DIRECTIONS": "32nd and 7th, 33rd and 8th, 34th Street. 34th between 7th and 8th Avenues.",
"LOCATION": "34th Street between 7th & 8th Avenues. \n",
"SHORTNAME": "pennstation",
"BRANCH_CD": "14",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.99358",
"LATITUDE": "40.75058",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.99358&latitude=40.75058&zoom=0.5&label=Penn Station",
"ACCESSIBILITY": null,
"TICKETOFFICE": "Open Continuously (Closed 3:00 AM - 3:30 AM) <br>Customer Service Office Hours: 7:00 AM - 10:00 PM. \n",
"TICKETMACHINE": "Thirteen Full Service Ticket Machines are available throughout Long Island Rail Road Concourse level. Two CTVMs are adjacent to the ticket windows. Three additional CTVMS are located at street level, 8th Avenue & 33rd Street entrance to Moynahan Bldg leading to West End Concourse. <br>Two Full Service Penn AirTrain Machines are adjacent to the ticket windows.(Cash, ATM Debit Card, Credit Card). Three STVMS are located across from the Ticket Office entry and Waiting Room. Assistance is available for the disabled during normal business hours. ",
"WAITINGROOM": "Open Continuously",
"INFO": "Starting Monday, 3/26, Amtrak repairs at Penn Station will result in Track 18 being out of service. There will be track changes, so please wait on the concourse level until your train's track assignment is posted, before descending to the platform. For additional information, call 511 and say LIRR.<br><a href=\"http://web.mta.info/lirr/AlternateRoute/maps/PennStation_10-16.jpg\" target=\"_blank\">Station Overview</a>",
"ABBR": "NYK",
"LOC_CD": "9012",
"MILEPENN": "0.0",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "1, 2, 3, A, C, E",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Penn Subway 1"
},
{
"PROVIDER_ROUTE_DESC": "D, F, N Q, R, ",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Penn Subway 2"
},
{
"PROVIDER_ROUTE_DESC": "M4, M20, M34, M34A, Q32",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Penn Bus"
}
]
},
"AMTRAK": {
"PROVIDER_URL": "http://www.amtrak.com",
"PROVIDER_PHONE": "800-872-7245",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": null,
"PROVIDER_ROUTE_URL": null,
"PROVIDER_ROUTE_IMAGE_URL": null,
"PROVIDER_ROUTE_NOTES": null
}
]
}
},
"elevator": [
{
"LOC": "Penn Station A, 34th Street, between 34th Street and LIRR level",
"STAT": "Working"
},
{
"LOC": "Penn Station B, Platform 7, Tracks 13 & 14, between platform and LIRR level",
"STAT": "Working"
},
{
"LOC": "Penn Station C, Platform 8, Tracks 15 & 16, between platform and LIRR level",
"STAT": "Working"
},
{
"LOC": "Penn Station D, Platform 9, Track 17, between platform and LIRR level",
"STAT": "Working"
},
{
"LOC": "Penn Station E, Platform 10, Tracks 18 & 19, between platform and LIRR level",
"STAT": "Working"
},
{
"LOC": "Penn Station F, Platform 11, Tracks 20 & 21, between platform and LIRR level",
"STAT": "Working"
}
],
"escalator": [
{
"LOC": "34th Street Corridor A, between street level and LIRR Concourse level",
"STAT": "Working"
},
{
"LOC": "34th Street Corridor B, between street level and LIRR Concourse level",
"STAT": "Working"
},
{
"LOC": "34th Street Corridor C, between street level and LIRR Concourse level",
"STAT": "Working"
},
{
"LOC": "Main Gate 1, between LIRR Concourse and Amtrak Concourse level",
"STAT": "Working"
},
{
"LOC": "Main Gate 2, between LIRR Concourse and Amtrak Concourse level",
"STAT": "Working"
},
{
"LOC": "Main Gate 3, between LIRR Concourse and Amtrak Concourse level",
"STAT": "Working"
}
]
},
"9": {
"NAME": "Woodside",
"DIRECTIONS": "Queens Boulevard, turn right on to 69th Street, then North 1/2 mile to Roosevelt Avenue. On Roosevelt Avenue, make a left to 61st Street.",
"LOCATION": "61st Street and Roosevelt Avenue",
"SHORTNAME": "woodside",
"BRANCH_CD": "14",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.90297",
"LATITUDE": "40.74584",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.90297&latitude=40.74584&zoom=0.5&label=Woodside",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "Weekday: 6:10 AM - 6:00 PM (Closed 10:20 AM - 10:50 AM & 2:20 PM - 2:50 PM)<br>Weekend: 8:10 AM - 3:30 PM (Closed 12:10 PM - 12:40 PM) ",
"TICKETMACHINE": "A Full Service Ticket Machine, a Daily Machine are located on the concourse level, just north of the ticket office.",
"WAITINGROOM": "Open Continuously.",
"INFO": "<a href=\"http://web.mta.info/lirr/AlternateRoute/maps/WoodsideMap.jpg\" target=\"_blank\">Station Overview</a><br>Attention Woodside Customers: On September 28 through January 2018 there will be no elevator service to/from Main Street bound platform at 61 St-Woodside -7 station. Nearest elevator accessible stations ∙∙61 St-Woodside -7 (Manhattan-bound only). <br>74 St-Broadway/Jackson Hts-Roosevelt Ave, E, F, M, R7. Junction Blvd 7, Court Sq 7\nFrom Manhattan and Long Island City to 61 St-Woodside. Take a Main St-bound 7 local to 74 St-Broadway and transfer to a Manhattan-bound -7. Take the Manhattan-bound -7 to 61 St-Woodside and proceed via elevators to street level. For additional information, call 511 and say LIRR.",
"ABBR": "WDD",
"LOC_CD": "9039",
"MILEPENN": "3.1",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Subway 7",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/pdf/t7cur.pdf",
"PROVIDER_ROUTE_IMAGE_URL": "http://travel.mtanyct.info/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "Q18, Q32, Q53",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Woodside Bus"
}
]
},
"MTA Bus Q70 to LaGuardia Airport": {
"PROVIDER_URL": "https://bustime.mta.info/m/%3Bjsessionid=3BDB8958C517BB7E45C0FE974DA50F69?q=Q70",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": null,
"PROVIDER_ROUTE_URL": null,
"PROVIDER_ROUTE_IMAGE_URL": null,
"PROVIDER_ROUTE_NOTES": null
}
]
}
},
"elevator": [
{
"LOC": "61st St & Roosevelt Ave, between street level, Platform A / Track 4 and LIRR / NYCT mezzanine level",
"STAT": "Working"
},
{
"LOC": "Between Platform B / Tracks 2 & 3 and LIRR / NYCT mezzanine level ",
"STAT": "Working"
},
{
"LOC": "Platform C / Track 1 and LIRR / NYCT mezzanine level",
"STAT": "Working"
}
],
"escalator": null
},
"10": {
"NAME": "Forest Hills",
"DIRECTIONS": "Queens Boulevard to 71st Avenue and Continental Avenue. Drive South on 71st Avenue, about 2 blocks to Station. On bridge over Continental Avenue.",
"LOCATION": "Continental Avenue (71st Ave) & Austin Street, 2 blocks South of Queens Boulevard.",
"SHORTNAME": "foresthills",
"BRANCH_CD": "14",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.84481",
"LATITUDE": "40.71957",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.84481&latitude=40.71957&zoom=0.5&label=Forest Hills",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "None",
"TICKETMACHINE": "A Full Service Ticket Machine and a Daily Machine are located on the westbound platform, just west of the station building. Another Daily Machine is located on eastbound platform in waiting area, at west end of the platform.",
"WAITINGROOM": "Weekdays: 5:00 AM - 2:00 PM",
"INFO": "To exit the train at Forest Hills, customers must be in the first four cars. For additional information, call 511 and say LIRR.",
"ABBR": "FHL",
"LOC_CD": "9109",
"MILEPENN": "6.7",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "E, F, R,",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Forest Hills Sub"
},
{
"PROVIDER_ROUTE_DESC": "Q23, Q64",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Forest Hills Bus"
}
]
}
},
"elevator": null,
"escalator": null
},
"11": {
"NAME": "Kew Gardens",
"DIRECTIONS": "Lefferts Boulevard and Austin Street, between Queens Boulevard and Metropolitan Avenue.",
"LOCATION": "Austin Street and Lefferts Boulevard, between Queens Boulevard and Metropolitan Avenue.",
"SHORTNAME": "kewgardens",
"BRANCH_CD": "14",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.83089",
"LATITUDE": "40.70964",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.83089&latitude=40.70964&zoom=0.5&label=Kew Gardens",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "None",
"TICKETMACHINE": "A Full Service Ticket Machine and a Daily Ticket Machine are located on the westbound platform, just east of the station building.",
"WAITINGROOM": "Weekdays: 5:00 AM - 2:00 PM",
"INFO": "To exit the train at Kew Gardens, customers must be in the first four cars. For additional information, call 511 and say LIRR.",
"ABBR": "KGN",
"LOC_CD": "9111",
"MILEPENN": "7.7",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "E, F",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Kew Gardens Sub"
},
{
"PROVIDER_ROUTE_DESC": "Q10",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Kew Gardens Bus"
}
]
}
},
"elevator": null,
"escalator": null
},
"12": {
"NAME": "Atlantic Terminal",
"DIRECTIONS": "Take either Flatbush Avenue or Pacific Street to the intersection where they come together. The Atlantic Avenue Terminal is located across the street from the Williamsburg Savings Bank, the tallest building in Brooklyn which has a large clock on each side of its tower.",
"LOCATION": "Intersection of Atlantic and Flatbush Avenues and Hanson Place.",
"SHORTNAME": "atlanticterminal",
"BRANCH_CD": "12",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.97768",
"LATITUDE": "40.684901",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.977108&latitude=40.684153&zoom=0.5&label=Flatbush Avenue",
"ACCESSIBILITY": "No",
"TICKETOFFICE": "Weekdays: Mon & Fri 6:00 AM - 10:00 PM (Closed 10:00 AM - 10:30 AM)<br>Weekdays: Tues/Wed/Thurs: 6:10 AM - 10 PM (Closed 10:00 AM - 10:30 AM)<br>Weekends/Holidays: 6:00 AM - 10:00 PM (Closed 10:00 AM - 10:30 AM & 4:00 PM- 4:30PM)",
"TICKETMACHINE": "Three Full Service Ticket Vending Machines and one CTVM are located at the platform level, waiting area.",
"WAITINGROOM": "5:00 AM - 10:00 PM",
"INFO": "For additional information, call 511 and say LIRR",
"ABBR": "ATL",
"LOC_CD": "9471",
"MILEPENN": "1.8",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "2 - 5, B, D, N, Q, R",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "FBA Subway"
},
{
"PROVIDER_ROUTE_DESC": "B41, B45, B63, B65, B67",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "FBA Bus"
}
]
}
},
"elevator": [
{
"LOC": "#1, West end platforms, adjacent to MTA Police. Between platform/street levels on Hanson Place",
"STAT": "Working"
},
{
"LOC": "#2, West end platforms, adjacent to MTA Police. Between platform/street levels on Hanson Place",
"STAT": "Working"
}
],
"escalator": null
},
"13": {
"NAME": "Nostrand Avenue",
"DIRECTIONS": "Nostrand and Atlantic Avenue between Bedford Avenue and New York Avenue. Two blocks South of Fulton Street.",
"LOCATION": "Nostrand Avenue and Atlantic Avenue.\n",
"SHORTNAME": "nostrandavenue",
"BRANCH_CD": "12",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.94822",
"LATITUDE": "40.67838",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.94822&latitude=40.67838&zoom=0.5&label=Nostrand Avenue",
"ACCESSIBILITY": "No",
"TICKETOFFICE": "None",
"TICKETMACHINE": "One Full Service Ticket Machine and one Daily Ticket Machine, both located on the east end of the eastbound platform",
"WAITINGROOM": "None",
"INFO": "Beginning on Friday, September 22, the LIRR will begin a two-year station improvements project at Nostrand Avenue. The first phase of the project will require the closure of the western half of both platforms. In addition, the staircases located closest to Nostrand Avenue will be closed during construction. As an alternative, please use the staircases at the east end of the station (near New York Avenue) to access the platforms. \n\n<br>During Phase 1, customers must be in one of the first 4 cars to exit the train at Nostrand Avenue.<br>For additional information, call 511 and say LIRR.",
"ABBR": "NAV",
"LOC_CD": "9477",
"MILEPENN": "3.4",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Subway A",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://travel.mtanyct.info/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "C",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "B25, B44, B65",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Nostrad Ave Bus"
}
]
}
},
"elevator": null,
"escalator": null
},
"14": {
"NAME": "East New York",
"DIRECTIONS": "Eastern Parkway to Atlantic Avenue, then East on Atlantic Avenue about 5 blocks. ",
"LOCATION": "Atlantic Avenue and Williams ",
"SHORTNAME": "eastnewyork",
"BRANCH_CD": "12",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "1",
"LONGITUDE": "-73.90281",
"LATITUDE": "40.6758",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.90281&latitude=40.6758&zoom=0.5&label=East New York",
"ACCESSIBILITY": "No",
"TICKETOFFICE": "None",
"TICKETMACHINE": "One Full Service Ticket Machine and one Daily Ticket Machine are both located near the eastbound platform, near the central staircase.",
"WAITINGROOM": "None",
"INFO": "For additional information, call 511 and say LIRR.",
"ABBR": "ENY",
"LOC_CD": "9480",
"MILEPENN": "5.8",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "A, C, J, L, Z",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "East NY Subway"
},
{
"PROVIDER_ROUTE_DESC": "B12, B20, B25, B83, Q24 & 56",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "ENY Bus"
}
]
}
},
"elevator": null,
"escalator": null
},
"15": {
"NAME": "Jamaica",
"DIRECTIONS": "Van Wyck Expressway to Atlantic Avenue about 1/2 mile to Sutphin Boulevard. Make a left turn. Next block is Archer Avenue. Station is on the railroad overpass.",
"LOCATION": "93-02 Sutphin Blvd., Jamaica, NY 11435. Corner of Sutphin Boulevard and Archer Avenue, 2 blocks south of Jamaica Avenue.\n\n.\n\nThe easiest way to Kennedy Airport is by Air Train. AirTrain JFK leaves from the terminal adjacent to the Long Island Rail Road's Jamaica Station every 2 to 12 minutes, depending upon the time of day.",
"SHORTNAME": "jamaica",
"BRANCH_CD": "14",
"BRANCH": "City Zone Branch",
"BRANCH_FARE_ZONE": "3",
"LONGITUDE": "-73.80853",
"LATITUDE": "40.6996",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.80853&latitude=40.6996&zoom=0.5&label=Jamaica",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "Open Continuously (Closed 3:30 AM - 4:00 AM) ",
"TICKETMACHINE": "Two Full Service Ticket Machine and two Daily Machines are located in the Station Waiting Room. \n\n<br>Two Full Service Machines and one STVM are located on the portal bridge to AirTrain. <br>Two Full Service Ticket Machines located in the Jamaica AirTrain Terminal, which also sells AirTrain Metrocards.",
"WAITINGROOM": "Open Continuosly.",
"INFO": "JFK CUSTOMERS: \nThe easiest way to Kennedy Airport is by Air Train. AirTrain JFK leaves from the terminal adjacent to the Long Island Rail Road's Jamaica Station every 2 to 12 minutes, depending upon the time of day.<br><a href=\"http://web.mta.info/lirr/AlternateRoute/maps/JamaicaMap2016.jpg\" target=\"_blank\">Station Overview</a><br>For additional information, call 511 and say LIRR.",
"ABBR": "JAM",
"LOC_CD": "9114",
"MILEPENN": "9.3",
"CONNECTING_SERVICES": {
"JFK AirTrain": {
"PROVIDER_URL": "http://www.panynj.gov/airtrain/",
"PROVIDER_PHONE": "877-535-2478",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Air Train",
"PROVIDER_ROUTE_URL": "http://www.panynj.gov/airtrain/",
"PROVIDER_ROUTE_IMAGE_URL": "http://www.panynj.gov/airtrain/",
"PROVIDER_ROUTE_NOTES": null
}
]
},
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "E, J, Z",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Jamaica Subway"
},
{
"PROVIDER_ROUTE_DESC": "Q- 6, 8, 9, 20A/B, 24",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Jam Bus 1"
},
{
"PROVIDER_ROUTE_DESC": "Q- 25, 30, 31, 34, 40, 41,",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Jam Bus 2"
},
{
"PROVIDER_ROUTE_DESC": "Q- 43, 44, 54, 56, 60 & 65",
"PROVIDER_ROUTE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Jam Bus 3"
}
]
},
"NICE": {
"PROVIDER_URL": "http://www.nicebus.com/",
"PROVIDER_PHONE": "516-336-6600",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "n1, n6, n22, n24, n26",
"PROVIDER_ROUTE_URL": "http://www.nicebus.com/",
"PROVIDER_ROUTE_IMAGE_URL": null,
"PROVIDER_ROUTE_NOTES": "Jamaica add"
}
]
}
},
"elevator": [
{
"LOC": "Between NYCT, street level and portal mezzanine ",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform A, Tracks 1 & 2, between the platform and portal mezzanine",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform B, Tracks 2 & 3, between the platform and portal mezzanine",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform C, Tracks 4 & 5, between the platform and portal mezzanine",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform D, Tracks 6 & 7, between the platform and portal mezzanine",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform E, Tracks 7 & 8, between the platform and portal mezzanine",
"STAT": "Working"
}
],
"escalator": [
{
"LOC": "East end of station platform, Platform A, Tracks 1 & 2, from platform to portal mezzanine",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform B, Tracks 2 & 3, from platform to portal mezzanine",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform C, Tracks 4 & 5, from platform to portal mezzanine",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform D, Tracks 6 & 7, from platform to portal mezzanine",
"STAT": "Working"
},
{
"LOC": "East end of station platform, Platform E, Tracks 7 & 8, from platform to portal mezzanine",
"STAT": "Working"
}
]
},
"17": {
"NAME": "Mets-Willets Point",
"DIRECTIONS": "Special LIRR train right to stadium.",
"LOCATION": "Flushing Meadow Park, south of Roosevelt Avenue.",
"SHORTNAME": "mets-willetspoint",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "91",
"LONGITUDE": "-73.8437",
"LATITUDE": "40.75239",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.8437&latitude=40.75239&zoom=0.5&label=Shea Stadium",
"ACCESSIBILITY": "Mets-Willets Point Station is not ADA accessible. ",
"TICKETOFFICE": "Seasonal US Open/Mets",
"TICKETMACHINE": "None",
"WAITINGROOM": "None",
"INFO": "The LIRR's Mets-Willets Point Station is not handicapped accessible. The subway Flushing Line Mets-Willets Point station is accessible via the Queens-bound local platform, with an ADA ramp connecting to the sidewalk on the south side of Roosevelt Ave. LIRR Customers with mobility impairments who are traveling to see the Mets should travel to Woodside Station. At Woodside Station, which has elevators, customers should transfer to a Flushing-bound #7 subway train to the Mets-Willets Point subway.<br>To return to Woodside after the game, customers with mobility impairments should board the #7 subway and travel one stop east to its end point, the Flushing-Main Street Station. There, after a brief wait on the train, the train will head west to Woodside. This is necessary due to the location of the ramp, which only permits access to the eastbound platform. \n<br>For additional information, call 511 and say LIRR.",
"ABBR": "SSM",
"LOC_CD": "9047",
"MILEPENN": "6.7",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Subway 7",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/pdf/t7cur.pdf",
"PROVIDER_ROUTE_IMAGE_URL": "http://travel.mtanyct.info/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "Q48",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Shea"
}
]
}
},
"elevator": null,
"escalator": null
},
"18": {
"NAME": "Flushing Main Street",
"DIRECTIONS": "Van Wyck Expressway to Northern Boulevard, Route 25A East Exit. Drive about 8 blocks and make a right onto Main Street. Drive about 1/4 mile on Main Street. Station on right.",
"LOCATION": "Main Street and 41st Avenue, off Kissena Boulevard.",
"SHORTNAME": "flushingmainstreet",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "3",
"LONGITUDE": "-73.83135",
"LATITUDE": "40.75789",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.83135&latitude=40.75789&zoom=0.5&label=Flushing",
"ACCESSIBILITY": "No",
"TICKETOFFICE": "The Flushing-Main Street ticket office will close through 2018, for a 2-year station renovation project. While the work is underway, Flushing-Main Street customers may buy tickets from LIRR ticket machines located under the trestle, via the new MTA eTix app or at Penn Station ticket windows. <br>Monthly tickets can be ordered through the LIRR's Mail&Ride ticket-by-mail service. Customers may also utilize the ticket office services at Woodside or Bayside locations during this program. ",
"TICKETMACHINE": "A Full Service Ticket Machine and a Daily Machine are located on the pedestrian walkway, under the trestle on the west side of Main Street.",
"WAITINGROOM": "None",
"INFO": "Due to the LIRR's Flushing Main Street Elevator and Station Improvements Project, the steel construction for the eastbound elevator will take place on the eastbound side of Main Street between 40th Road and 41st Avenue. Work is scheduled from Monday, September 11 through Friday, September 15 from 9:00 PM to 5:00 AM. <br>TRAFFIC AND STREET DETOURS: Both lanes on the south bound side of Main Street will be closed and two way traffic will be diverted to the north side of Main Street between 40th Road and 41st Avenue. The sidewalk on the south side will be closed and pedestrians will be diverted to the north side of Main Street.<br>For additional information, call 511 and say LIRR.",
"ABBR": "FLS",
"LOC_CD": "9057",
"MILEPENN": "7.5",
"CONNECTING_SERVICES": {
"NICE": {
"PROVIDER_URL": "http://www.nicebus.com/",
"PROVIDER_PHONE": "516-336-6600",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "n20G",
"PROVIDER_ROUTE_URL": "http://www.nicebus.com/",
"PROVIDER_ROUTE_IMAGE_URL": null,
"PROVIDER_ROUTE_NOTES": "Little Neck"
}
]
},
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Q64",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "Subway 7",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/pdf/t7cur.pdf",
"PROVIDER_ROUTE_IMAGE_URL": "http://travel.mtanyct.info/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "Q12-13, 15-18, 26, 27 28",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Flushing1"
},
{
"PROVIDER_ROUTE_DESC": "Q44, 48, ",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Flushing2"
},
{
"PROVIDER_ROUTE_DESC": "Q19, Q25, Q34, Q50, Q65, Q66",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_NOTES": null
}
]
}
},
"elevator": null,
"escalator": null
},
"19": {
"NAME": "Murray Hill",
"DIRECTIONS": "Van Wyck Expressway to Northern Boulevard East to 150th Street. Drive South on 150th Street to the Station.",
"LOCATION": "150th Street and 41st Avenue, just south of Roosevelt Avenue.",
"SHORTNAME": "murrayhill",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "3",
"LONGITUDE": "-73.81454",
"LATITUDE": "40.7627",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.81454&latitude=40.7627&zoom=0.5&label=Murray Hill",
"ACCESSIBILITY": "No",
"TICKETOFFICE": "None",
"TICKETMACHINE": "A Full Service Ticket Machine and a Daily Ticket Machine are located at Station Plaza (north side), adjacent to pedestrian overpass.",
"WAITINGROOM": "None",
"INFO": "To exit the train eastbound at Murray Hill, customers must be in the rear four cars. Westbound customers must be in the front four cars. For additional information, call 511 and say LIRR.<br>Construction at the Murray Hill Station will begin on April 3, 2018. This work will require the closure of northeast plaza and southwest plaza. Sidewalk closure by northeast plaza on Barton Ave. Street parking along Barton Ave will also be temporarily reduced. The LIRR will maintain normal train service levels at Murray Hill throughout the project. <br>While construction of the elevator to/from the eastbound platform is underway, the staircase near 149th Street will be temporarily relocated. The construction and elevator installation is expected to be completed in Spring 2019.",
"ABBR": "MHL",
"LOC_CD": "9058",
"MILEPENN": "8.4",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Q12, Q15",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Murray Hill"
}
]
}
},
"elevator": null,
"escalator": null
},
"20": {
"NAME": "Broadway",
"DIRECTIONS": "Long Island Expressway (495) to Exit 25 North Utopia Parkway. Drive approximately 2 - 1/2 miles to Northern Boulevard, make a left. Approximately 1/2 mile to Station, at 162nd Street.",
"LOCATION": "Intersection of 162nd Street and Northern Boulevard. \n\n\n",
"SHORTNAME": "broadway",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "3",
"LONGITUDE": "-73.80176",
"LATITUDE": "40.76164",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.80176&latitude=40.76164&zoom=0.5&label=Broadway",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "None",
"TICKETMACHINE": "A Full Service Machine and Daily Machine are located against the east side of station building at the platform level. \n",
"WAITINGROOM": "Weekdays: 5:00 AM - 2:00 PM",
"INFO": "For additional information, call 511 and say LIRR.",
"ABBR": "BDY",
"LOC_CD": "9059",
"MILEPENN": "9.2",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Q12, Q13, Q28",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Broadway"
}
]
}
},
"elevator": null,
"escalator": null
},
"21": {
"NAME": "Auburndale",
"DIRECTIONS": "Long Island Expressway (495) to Clearview Expressway North to Northern Boulevard West Exit, to 193rd Street, then right to the Station.",
"LOCATION": "Off Station Road, between 192nd Street and 39th Avenue, just north of Northern Boulevard.",
"SHORTNAME": "auburndale",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "3",
"LONGITUDE": "-73.78996",
"LATITUDE": "40.76143",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.78996&latitude=40.76143&zoom=0.5&label=Auburndale",
"ACCESSIBILITY": "No",
"TICKETOFFICE": "None",
"TICKETMACHINE": "A Full Service Ticket Machine and a Daily Machine are located at street level, east side of 192nd Street by platform access.\n",
"WAITINGROOM": "Weekdays: 6:10 AM - 1:45 PM.",
"INFO": "For additional information, call 511 and say LIRR.",
"ABBR": "ADL",
"LOC_CD": "9061",
"MILEPENN": "9.9",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Q12, Q13 Q28, Q76",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Auburndale"
}
]
}
},
"elevator": [
{
"LOC": "East end of platform, between street level and platform",
"STAT": "Working"
}
],
"escalator": null
},
"22": {
"NAME": "Bayside",
"DIRECTIONS": "Long Island Expressway (495) to Clearview Expressway North to Northern Boulevard East Exit. Drive approximately 1/2 mile to Bell Boulevard to 41st Avenue. Station on the left.",
"LOCATION": "213th Street and 41st Avenue, off Bell Boulevard and just north of Northern Boulevard.",
"SHORTNAME": "bayside",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "3",
"LONGITUDE": "-73.77125",
"LATITUDE": "40.76314",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.77125&latitude=40.76314&zoom=0.5&label=Bayside",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "Weekdays: 6:10 AM - 1:45 PM only (Closed 10:30 AM - 11:20 AM).",
"TICKETMACHINE": "One STVM, one Daily Machine and one CTVM Ticket Machine are located on the east side of the station building. ",
"WAITINGROOM": "Weekdays: 6:00 AM - 1:45 PM <br>Weekends: 6:00 AM - 2:15 PM ",
"INFO": "For additional information, call 511 and say LIRR.",
"ABBR": "BSD",
"LOC_CD": "9062",
"MILEPENN": "10.8",
"CONNECTING_SERVICES": {
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Q12, Q13, Q31",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": "Bayside"
}
]
}
},
"elevator": null,
"escalator": null
},
"23": {
"NAME": "Douglaston",
"DIRECTIONS": "Long Island Expressway (495) to Exit 31. Take Douglaston Parkway North about 1 mile to the Station.",
"LOCATION": "235th Street and 41st Avenue, off Douglaston Parkway and Wainscott Avenue. Just north of Northern Boulevard.",
"SHORTNAME": "douglaston",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "3",
"LONGITUDE": "-73.74941",
"LATITUDE": "40.76806",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.74941&latitude=40.76806&zoom=0.5&label=Douglaston",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "None",
"TICKETMACHINE": "A Full Service Ticket Machine and a Daily Machine are located against the east side of the station building, next to the waiting room entrance door.",
"WAITINGROOM": "Weekdays: 5:00 AM - 10:00 PM<br>Saturdays: Closed<br>Sundays: 5:00 AM - 4:00 PM",
"INFO": "For additional information, call 511 and say LIRR.",
"ABBR": "DGL",
"LOC_CD": "9063",
"MILEPENN": "12.1",
"CONNECTING_SERVICES": null,
"elevator": null,
"escalator": null
},
"24": {
"NAME": "Little Neck",
"DIRECTIONS": "Long Island Expressway (495) to Exit 32. Drive North on Little Neck Parkway about 1 - 1/2 miles to tracks. Make a right on 39th Avenue to Station.",
"LOCATION": "Little Neck Parkway and 39th Road, just north of Northern Boulevard. ",
"SHORTNAME": "littleneck",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "3",
"LONGITUDE": "-73.74065",
"LATITUDE": "40.77504",
"MAPURL": "http://services.mapinfo.com/mimapv2/servlet/mta?mibean=processbean&longitude=-73.74065&latitude=40.77504&zoom=0.5&label=Little Neck",
"ACCESSIBILITY": "Yes",
"TICKETOFFICE": "None",
"TICKETMACHINE": "A Full Service Ticket Machine and a Daily Machine are located on the west side of station building, at ground level, in kiosk.<br>A Full Service Ticket Machine is located on the north side of the station building, westbound platform in shelter shed.",
"WAITINGROOM": "Weekdays: 5:00 AM - 10:00 PM",
"INFO": "Attention Little Neck Customers: Monday, March 19 and continuing through mid-May, the LIRR's commuter parking lot will undergo repairs. Parking will be limited, with up to 19 fewer spaces available for use on weekdays. <br>The Little Neck parking lot will be closed early evening on Thursday, May 17, and will remain closed until mid-day, Sunday, May 20, 2018. The lot will be also be closed the following Saturday, May 26 only. <br>For additional information, call 511 and say LIRR.",
"ABBR": "LNK",
"LOC_CD": "9064",
"MILEPENN": "12.7",
"CONNECTING_SERVICES": {
"NICE": {
"PROVIDER_URL": "http://www.nicebus.com/",
"PROVIDER_PHONE": "516-336-6600",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "n20G",
"PROVIDER_ROUTE_URL": "http://www.nicebus.com/",
"PROVIDER_ROUTE_IMAGE_URL": null,
"PROVIDER_ROUTE_NOTES": "Little Neck"
}
]
},
"MTA New York City Transit": {
"PROVIDER_URL": "http://mta.info/nyct/",
"PROVIDER_PHONE": "511",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "Q12",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": null
},
{
"PROVIDER_ROUTE_DESC": "Q36",
"PROVIDER_ROUTE_URL": "http://web.mta.info/nyct/service/bus/qnsche.htm",
"PROVIDER_ROUTE_IMAGE_URL": "http://mta.info/nyct/",
"PROVIDER_ROUTE_NOTES": null
}
]
}
},
"elevator": null,
"escalator": null
},
"25": {
"NAME": "Great Neck",
"DIRECTIONS": "Northern State to Exit 25 - Lakeville Road North. Drive about 3 miles to Station. Lakeville Road becomes Middle Neck Road North of Route 25A.",
"LOCATION": "Middle Neck Road and Station Plaza at Great Neck Road, 1/4 mile North of Route 25A. ",
"SHORTNAME": "greatneck",
"BRANCH_CD": "9",
"BRANCH": "Port Washington Branch",
"BRANCH_FARE_ZONE": "4",
"LONGITUDE": "-73.7261",
"LATITUDE": "40.78721",
"MAPURL": "http://mta.info/lirr/images/stationmaps/greatneck.pdf",
"ACCESSIBILITY": "No. ",
"TICKETOFFICE": "Weekdays: 6:10 AM - 1:45 PM (Closed 10:20 AM - 11:10 AM) ",
"TICKETMACHINE": "Two Full Service Ticket Machines are located at street level, east end of station. A CTVM Machine is located inside the station waiting room.",
"WAITINGROOM": "Weekdays: 4:00 AM - 10:00 PM<br>Weekends: 4:00 AM - 8:30 PM",
"INFO": "<br>For additional information, call 511 and say LIRR.",
"ABBR": "GNK",
"LOC_CD": "9065",
"MILEPENN": "13.8",
"CONNECTING_SERVICES": {
"NICE": {
"PROVIDER_URL": "http://www.nicebus.com/",
"PROVIDER_PHONE": "516-336-6600",
"PROVIDER_ROUTES": [
{
"PROVIDER_ROUTE_DESC": "n20,21,25,57,58",
"PROVIDER_ROUTE_URL": "http://www.nicebus.com/",
"PROVIDER_ROUTE_IMAGE_URL": null,
"PROVIDER_ROUTE_NOTES": "Great Neck"
}
]
}
},
"elevator": [
{
"LOC": "End of pedestrian bridge/overpass, Platform A, between street level and westbound platform",
"STAT": "Working"
},
{
"LOC": "End of pedestrian bridge/overpass, Platform B, between street level and eastbound platform",
"STAT": "Working"
}
],
"escalator": null
},
"26": {
"NAME": "Manhasset",
"DIRECTIONS": "Long Island Expressway (495) to Exit 35. Take Shelter Rock Road North to Route 25A. West on Route 25A a few blocks and make a right on Plandome Road, 1/2 mile to Station.",