forked from akjw/national-park
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparks.json
4575 lines (4574 loc) · 221 KB
/
parks.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
[
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "2024266841",
"description": "",
"extension": "",
"type": "Voice"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "DC",
"directionsInfo": "The memorial is located at the corner of Vermont Avenue, 10th St, and U Street NW, near the U Street/African-American Civil War Memorial/Cardozo Metro Station.",
"directionsUrl": "http://www.nps.gov/afam/planyourvisit/directions.htm",
"url": "https://www.nps.gov/afam/index.htm",
"weatherInfo": "Washington DC gets to see all four seasons. Humidity will make the temps feel hotter in summer and colder in winter.\n\nSpring (March - May) Temp: Average high is 65.5 degrees with a low of 46.5 degrees\n\nSummer (June - August) Temp: Average high is 86 degrees with a low of 68.5 degrees\n\nFall (September - November) Temp: Average high is 68 degrees with a low of 51.5 degrees\n\nWinter (December - February) Temp: Average high is 45 degrees with a low of 30 degrees\n\n(Source: www.usclimatedata.com)",
"name": "African American Civil War Memorial",
"latLong": "lat:38.916554, long:-77.025977",
"description": "Over 200,000 African-American soldiers and sailors served in the U.S. Army and Navy during the Civil War. Their service helped to end the war and free over four million slaves. The African American Civil War Memorial honors their service and sacrifice.",
"images": [
{
"credit": "NPS Photo",
"altText": "Site Statue",
"title": "African American Civil War Statue",
"id": "3406",
"caption": "A poignant reminder of our nations past",
"url": "https://www.nps.gov/common/uploads/structured_data/3C816B50-1DD8-B71B-0BF380049FB6B6A2.jpg"
},
{
"credit": "NPS Photo",
"altText": "African American Sailor Close up",
"title": "African American Sailor",
"id": "3407",
"caption": "African American Civil War Sailor",
"url": "https://www.nps.gov/common/uploads/structured_data/3C816C97-1DD8-B71B-0B7B2A0DD09C870A.jpg"
},
{
"credit": "NPS Photo",
"altText": "African American Soldier Close up",
"title": "African American Soldier",
"id": "3408",
"caption": "African American Civil War Soldier",
"url": "https://www.nps.gov/common/uploads/structured_data/3C816DF6-1DD8-B71B-0B5D792777650EA4.jpg"
}
],
"designation": "",
"parkCode": "afam",
"addresses": [
{
"postalCode": "20001",
"city": "Washington",
"stateCode": "DC",
"line1": "1925 Vermont Avenue Northwest",
"type": "Physical",
"line3": "",
"line2": ""
},
{
"postalCode": "20024",
"city": "Washington",
"stateCode": "DC",
"line1": "900 Ohio Drive SW",
"type": "Mailing",
"line3": "",
"line2": ""
}
],
"id": "1A47416F-DAA3-4137-9F30-14AF86B4E547",
"fullName": "African American Civil War Memorial"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "706-823-0440 / 1-888-659-8926",
"description": "",
"extension": "",
"type": "Voice"
},
{
"phoneNumber": "706-823-1045",
"description": "",
"extension": "",
"type": "Fax"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "GA",
"directionsInfo": "To Augusta Canal Discovery Center (1450 Greene Street, Augusta, GA 30901):\nFrom I-20 Exit 200, turn left onto GA-104/Riverwatch Parkway (signs for Downtown Augusta). In approximately 4.5 miles, use the right lane to take the ramp to Downtown Augusta/Medical District. Continue straight onto Greene Street. Continue for approximately 0.4 miles. Enterprise Mill and the Discovery Center will be on your right.",
"directionsUrl": "http://augustacanal.com/directions.php",
"url": "https://www.nps.gov/auca/index.htm",
"weatherInfo": "The weather varies throughout the year and even throughout the day. Please check the National Weather Service information at http://www.weather.gov for forecast information.",
"name": "Augusta Canal",
"latLong": "lat:33.5099067687988, long:-82.0053787231445",
"description": "The Augusta Canal helped usher the Industrial Revolution into the American South. Built in 1845 as a source of power, water, and transportation, the canal today is the only fully intact American industrial canal in continuous operation. By 1847 the first mills opened, followed by the massive Civil War era Confederate Powder Works and many more industries in the later decades of the 19th century.",
"images": [
{
"credit": "NPS Photo",
"altText": "Petersburg Boat passes Sibley Mill and the chimney of Confederate States Powder Works along the Augu",
"title": "Petersburg Boat",
"id": "4740",
"caption": "Petersburg Boat passes Sibley Mill and the chimney of Confederate States Powder Works along the Augusta Canal National Heritage Area",
"url": "https://www.nps.gov/common/uploads/structured_data/17CB88D7-1DD8-B71B-0B176D86D21968E8.png"
}
],
"designation": "National Heritage Area",
"parkCode": "auca",
"addresses": [
{
"postalCode": "30901",
"city": "Augusta",
"stateCode": "GA",
"line1": "Augusta Canal National Heritage Area",
"type": "Physical",
"line3": "",
"line2": "1450 Greene Street, Suite 400"
},
{
"postalCode": "30901",
"city": "Augusta",
"stateCode": "GA",
"line1": "Augusta Canal National Heritage Area",
"type": "Mailing",
"line3": "",
"line2": "1450 Greene Street, Suite 400"
}
],
"id": "813548D1-F8EA-4C07-8878-17FB3C385378",
"fullName": "Augusta Canal National Heritage Area"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "(202) 543-2240",
"description": "General visitor inquiries",
"extension": "",
"type": "Voice"
}
],
"emailAddresses": [
{
"description": "General vistor inquiries",
"emailAddress": "[email protected]"
}
]
},
"states": "DC",
"directionsInfo": "The Belmont-Paul Women's Equality NM is located on Capitol Hill at the corner of Constitution Avenue and 2nd Street, NE, next to the Hart Senate Office building. It is a free-standing, federal style brick house surrounded by a black cast-iron fence.\nThe entrance for museum tours and the museum shop is located on 2nd Street with the lift accessible entrance located to the side of the museum next to the Hart Senate Office Building. The doors facing Constitution Avenue are not entrances.",
"directionsUrl": "http://www.nps.gov/bepa/planyourvisit/directions.htm",
"url": "https://www.nps.gov/bepa/index.htm",
"weatherInfo": "Washington DC gets to see all four seasons. Humidity will make the temps feel hotter in summer and colder in winter. Spring (March - May) Temp: Average high is 65.5 degrees with a low of 46.5 degrees Summer (June - August) Temp: Average high is 86 degrees with a low of 68.5 degrees Fall (September - November) Temp: Average high is 68 degrees with a low of 51.5 degrees Winter (December - February) Temp: Average high is 45 degrees with a low of 30 degrees (Source: www.usclimatedata.com)",
"name": "Belmont-Paul Women's Equality",
"latLong": "lat:38.89231541, long:-77.00381882",
"description": "Home to the National Woman's Party for nearly 90 years, this was the epicenter of the struggle for women's rights. From this house in the shadow of the U.S. Capitol and Supreme Court, Alice Paul and the NWP developed innovative strategies and tactics to advocate for the Equal Rights Amendment and equality for women. President Barack Obama designated the national monument on April 12, 2016.",
"images": [
{
"credit": "NPS Photo",
"altText": "Belmont-Paul Women's Equality NM House",
"title": "Belmont-Paul Women's Equality NM House",
"id": "6794",
"caption": "411th Unit of the National Park Service",
"url": "https://www.nps.gov/common/uploads/structured_data/6E4F7F3F-1DD8-B71B-0BBDE514BEF76FDF.jpg"
},
{
"credit": "NPS Photo",
"altText": "Suffrage Banner",
"title": "Suffrage Banner",
"id": "6799",
"caption": "Calling out for Women Suffrage",
"url": "https://www.nps.gov/common/uploads/structured_data/9D4A4DD0-1DD8-B71B-0BF6DF9405E5BC27.jpg"
},
{
"credit": "NPS Photo",
"altText": "Stained Glass Entrance",
"title": "Stained Glass Entrance",
"id": "6800",
"caption": "Entry way beauty",
"url": "https://www.nps.gov/common/uploads/structured_data/9D5C0E5A-1DD8-B71B-0BBDD767A7BEE294.jpg"
},
{
"credit": "NPS Photo",
"altText": "Thinking Woman Statue",
"title": "Thinking Woman Statue",
"id": "6801",
"caption": "A moment of repose",
"url": "https://www.nps.gov/common/uploads/structured_data/9D7C5824-1DD8-B71B-0B25227D25F19408.jpg"
},
{
"credit": "NPS Photo",
"altText": "Susan B. Anthony's Desk",
"title": "Susan B. Anthony's Desk",
"id": "6802",
"caption": "To write a letter...",
"url": "https://www.nps.gov/common/uploads/structured_data/9D84D528-1DD8-B71B-0B6E904FFF508773.jpg"
}
],
"designation": "National Monument",
"parkCode": "bepa",
"addresses": [
{
"postalCode": "20002",
"city": "Washington",
"stateCode": "DC",
"line1": "144 Constitution Ave NE",
"type": "Physical",
"line3": "",
"line2": "900 Ohio Drive SW"
},
{
"postalCode": "20024",
"city": "Washington",
"stateCode": "DC",
"line1": "900 Ohio Drive SW",
"type": "Mailing",
"line3": "",
"line2": ""
}
],
"id": "E7E4E103-5FA9-45AC-8843-05DE554CDBB7",
"fullName": "Belmont-Paul Women's Equality National Monument"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "2396952000",
"description": "",
"extension": "",
"type": "Voice"
},
{
"phoneNumber": "2396953901",
"description": "",
"extension": "",
"type": "Fax"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "FL",
"directionsInfo": "Big Cypress is located along the Tamiami Trail East and I-75 in southern Florida. The preserve can be accessed by driving from Miami and Naples. The preserves two visitor centers are located along Tamiami Trail East.",
"directionsUrl": "http://www.nps.gov/bicy/planyourvisit/directions.htm",
"url": "https://www.nps.gov/bicy/index.htm",
"weatherInfo": "Big Cypress National Preserve experiences two predominant seasons- wet and dry.\n\nRAINY SEASON\n(May through October)\nWhile visiting during this season you may find daily afternoon thunderstorms, high humidity, temperatures in the mid - to - high 80s and a multitude of mosquitoes. \n\nDRY SEASON\n(November through April)\nFalling water levels within the Big Cypress make this a pleasant time to hike, camp, and watch wildlife.\n\nFor more information visit http://www.nps.gov/bicy/planyourvisit/weather.htm",
"name": "Big Cypress",
"latLong": "lat:25.97079602, long:-81.08120629",
"description": "The freshwaters of the Big Cypress Swamp, essential to the health of the neighboring Everglades, support the rich marine estuaries along Florida's southwest coast. Protecting over 729,000 acres of this vast swamp, Big Cypress National Preserve contains a mixture of tropical and temperate plant communities that are home to a diversity of wildlife, including the elusive Florida panther.",
"images": [
{
"credit": "John Kellam",
"altText": "a Florida Panther sits in a tree",
"title": "Florida Panther",
"id": "4507",
"caption": "The Florida Panther is one of the most iconic animals of Big Cypress",
"url": "https://www.nps.gov/common/uploads/structured_data/3C87C79D-1DD8-B71B-0BB51B9A589AEC2D.jpg"
},
{
"credit": "Al Sunshine",
"altText": "Two Alligators rest on a river bank",
"title": "Alligators of Big Cypress",
"id": "4508",
"caption": "Two Alligators rest on a river bank",
"url": "https://www.nps.gov/common/uploads/structured_data/3C87C8DD-1DD8-B71B-0B0027F88F090A39.jpg"
},
{
"credit": "NPS photo",
"altText": "two visitors in a canoe go through mangrove tunnels on the Turner River",
"title": "Canoeing through mangrove tunnels",
"id": "4510",
"caption": "Canoeing is one of the many activities you can enjoy in Big Cypress",
"url": "https://www.nps.gov/common/uploads/structured_data/3C87CBC3-1DD8-B71B-0B1A0639FD11D95E.jpg"
},
{
"credit": "NPS photo",
"altText": "A prairie foreground with tall pine trees in the background. A large blue sky with white cloud",
"title": "Prairies and Pine Lands in Big Cypress",
"id": "4511",
"caption": "large open expanses of prairie bordered by pine lands create stunning landscapes",
"url": "https://www.nps.gov/common/uploads/structured_data/3C87CCCC-1DD8-B71B-0B54E8FBA86B93C2.jpg"
},
{
"credit": "Richard Eskin",
"altText": "palm trees emerge out of the fog in an orange sunrise",
"title": "Sunrise in Big Cypress",
"id": "4512",
"caption": "palm trees emerge out of the fog as an orange sunrise dots the landscape",
"url": "https://www.nps.gov/common/uploads/structured_data/3C87CDFC-1DD8-B71B-0B810266A3A23068.jpg"
}
],
"designation": "National Preserve",
"parkCode": "bicy",
"addresses": [
{
"postalCode": "34141",
"city": "Ochopee",
"stateCode": "FL",
"line1": "33100 Tamiami Trail East",
"type": "Mailing",
"line3": "",
"line2": ""
},
{
"postalCode": "34141",
"city": "Ochopee",
"stateCode": "FL",
"line1": "33000 Tamiami Trail East",
"type": "Physical",
"line3": "",
"line2": ""
},
{
"postalCode": "34141",
"city": "Ochopee",
"stateCode": "FL",
"line1": "33100 Tamiami Trail East",
"type": "Physical",
"line3": "",
"line2": ""
}
],
"id": "E0F4D5E3-3E4A-4345-B86A-1B0CAD7461F1",
"fullName": "Big Cypress National Preserve"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "4358345322",
"description": "",
"extension": "",
"type": "Voice"
},
{
"phoneNumber": "4358344703",
"description": "",
"extension": "",
"type": "Fax"
},
{
"phoneNumber": "4358344747",
"description": "",
"extension": "",
"type": "TTY"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "UT",
"directionsInfo": "From the North:\nTake I-15 south to UT-20 (exit 95). Travel east on UT-20 to US-89. Follow US-89 south to UT-12. Travel east on UT-12 to UT-63. Take UT-63 south to Bryce Canyon National Park.\n\nFrom the South through Zion National Park:\nTake I-15 north to UT-9 (exit 16). Follow UT-9 east through Zion National Park to US-89. Travel north on US-89 to UT-12. Go east on UT-12 to UT-63. Take UT-63 south to Bryce Canyon National Park.",
"directionsUrl": "http://www.nps.gov/brca/planyourvisit/directions.htm",
"url": "https://www.nps.gov/brca/index.htm",
"weatherInfo": "http://forecast.weather.gov/MapClick.php?lat=37.63&lon=-112.17#.VpUamdHUhaR",
"name": "Bryce Canyon",
"latLong": "lat:37.58399144, long:-112.1826689",
"description": "Hoodoos (irregular columns of rock) exist on every continent, but here is the largest concentration found anywhere on Earth. Situated along a high plateau at the top of the Grand Staircase, the park's high elevations include numerous life communities, fantastic dark skies, and geological wonders that defy description.",
"images": [
{
"credit": "NPS Photo / Brian B. Roanhorse February 24, 2015",
"altText": "Bryce Canyon Visitor Center Toll booths in winter.",
"title": "Bryce Canyon Visitor Center Toll Booths",
"id": "3089",
"caption": "Opening the gates at Bryce Canyon National Park under snow.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C7F8B29-1DD8-B71B-0B5EA38E8C5E5606.jpg"
},
{
"credit": "NPS Photo / Brian B. Roanhorse February 28, 2015",
"altText": "Snow on the Queens Garden Trail.",
"title": "Snow blanket On Queens Garden",
"id": "3091",
"caption": "Trail to Queens Garden is exceptional any day of the year.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C7F8EAD-1DD8-B71B-0B080143E3A4984D.jpg"
},
{
"credit": "Brian B. Roanhorse March 4, 2015",
"altText": "Orange Hoodoos under snow cover.",
"title": "Mossy Cave in Winter",
"id": "3094",
"caption": "Orange is the new look at Bryce.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C7F9378-1DD8-B71B-0B4B29598AA967F4.jpg"
},
{
"credit": "NPS Photo / Brian B. Roanhorse March 13, 2015",
"altText": "Early morning snow at Thor' Hammer.",
"title": "Thor's Hammer in Winter",
"id": "3095",
"caption": "Clear skys and snow drifts at Thor's Hammer.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C7F9538-1DD8-B71B-0BA12D1447D43CE4.jpg"
},
{
"credit": "Photographed by Brian B. Roanhorse NPS",
"altText": "Paria View Point at Sunrise",
"title": "Paria View Point at Sunrise",
"id": "3844",
"caption": "Paria View at sunrise.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C83D7D0-1DD8-B71B-0B799F6F8D0902D8.jpg"
}
],
"designation": "National Park",
"parkCode": "brca",
"addresses": [
{
"postalCode": "84764",
"city": "Bryce",
"stateCode": "UT",
"line1": "P.O Box 640201",
"type": "Mailing",
"line3": "",
"line2": ""
},
{
"postalCode": "84764",
"city": "Bryce",
"stateCode": "UT",
"line1": "Highway 63",
"type": "Physical",
"line3": "",
"line2": "Bryce Canyon National Park"
}
],
"id": "6B1D053D-714F-46D1-B410-04BE868F14C1",
"fullName": "Bryce Canyon National Park"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "(859) 881-5716",
"description": "",
"extension": "",
"type": "Voice"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "KY",
"directionsInfo": "Camp Nelson National Monument is located along US 27 about 20 miles south of Lexington, Kentucky, 6 miles south of Nicholasville on US 27, and 7.5 miles southeast of Wilmore along US 1268. The Park entrance is on the original Danville Pike, adjacent to US 27, one mile north of the Camp Nelson National Cemetery.",
"directionsUrl": "http://www.nps.gov/cane/planyourvisit/directions.htm",
"url": "https://www.nps.gov/cane/index.htm",
"weatherInfo": "Kentucky has a moderate climate, characterized by warm, yet moist conditions. Summers are usually warm, and winters cool. Kentucky's weather patterns are influenced by the Gulf of Mexico, especially during summer. Spring and summer are the rainiest seasons, though storms occur year-round. Most storms occur between March and September.",
"name": "Camp Nelson",
"latLong": "",
"description": "Established as a Union supply depot and hospital during the Civil War, Camp Nelson became a recruitment and training center for African American soldiers, and a refugee camp for their wives and children. Thousands of slaves risked their lives escaping to this site with the hope of securing their freedom and, ultimately, controlling their futures by aiding in the destruction of slavery.",
"images": [
{
"credit": "NPS Photo",
"altText": "The visitor center building",
"title": "Camp Nelson Civil War Heritage Park Visitor Center",
"id": "12104",
"caption": "The Camp Nelson Civil War Heritage Park Visitor Center",
"url": "https://www.nps.gov/common/uploads/structured_data/AA1FDA35-B4C4-E3B1-0ACCD6ABAD52B620.jpg"
},
{
"credit": "NPS Photo",
"altText": "A row of rough, wooden bunk beds in the soldiers' barrack house.",
"title": "Interior of Soldiers' Barrack Building",
"id": "12105",
"caption": "Visit the barracks to imagine life at Camp Nelson during the Civil War.",
"url": "https://www.nps.gov/common/uploads/structured_data/AA4128C7-0BE7-FF64-77C780E3D922AF62.jpg"
},
{
"credit": "NPS Photo",
"altText": "A white, 2 story farm house with a Civil War cannon sitting in front of it",
"title": "Perry House",
"id": "12106",
"caption": "The Perry House at Camp Nelson",
"url": "https://www.nps.gov/common/uploads/structured_data/AA6B7615-AE22-7890-A0DD3E829F771918.jpg"
},
{
"credit": "NPS Photo",
"altText": "African American Civil War soldiers stand at attention outside their barracks.",
"title": "United States Colored Troops at Camp Nelson, KY during the Civil War",
"id": "12129",
"caption": "African American Civil War soldiers fighting for the Union stand at attention outside their barracks at Camp Nelson, KY.",
"url": "https://www.nps.gov/common/uploads/structured_data/7E9967CB-F590-F434-375F758A63F9A9E8.jpg"
},
{
"credit": "NPS Photo",
"altText": "Open fields and earth works at Camp Nelson",
"title": "Open fields and earth works at Camp Nelson National Monument in Kentucky.",
"id": "12130",
"caption": "Open fields and earth works at Camp Nelson National Monument in Kentucky.",
"url": "https://www.nps.gov/common/uploads/structured_data/7EBA8763-F7B5-5B84-1C9DB354CF30C795.jpg"
}
],
"designation": "National Monument",
"parkCode": "cane",
"addresses": [
{
"postalCode": "40356",
"city": "Nicholasville",
"stateCode": "KY",
"line1": "6614 Old Danville Road",
"type": "Mailing",
"line3": "",
"line2": "Loop 2"
},
{
"postalCode": "40356",
"city": "Nicholasville",
"stateCode": "KY",
"line1": "6614 Danville Road",
"type": "Physical",
"line3": "",
"line2": ""
}
],
"id": "2FB7A664-0F66-49A3-9460-194F4073BA3F",
"fullName": "Camp Nelson National Monument"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "5082553421",
"description": "",
"extension": "",
"type": "Voice"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "MA",
"directionsInfo": "The national seashore is located in eastern Massachusetts and is accessed via Rt. 6. The park is 20 miles east of Hyannis, MA.",
"directionsUrl": "http://www.nps.gov/caco/planyourvisit/directions.htm",
"url": "https://www.nps.gov/caco/index.htm",
"weatherInfo": "Cape Cod's weather is generally moderated by its proximity to the ocean. Winter is typically cold with some snow. Spring is often rainy. Summer is usually warm and humid. Fall is generally dry and clear.",
"name": "Cape Cod",
"latLong": "lat:41.92381465, long:-70.04319832",
"description": "The great Outer Beach described by Thoreau in the 1800s is protected within the national seashore. Forty miles of pristine sandy beach, marshes, ponds, and uplands support diverse species. Lighthouses, cultural landscapes, and wild cranberry bogs offer a glimpse of Cape Cod's past and continuing ways of life. Swimming beaches and walking and biking trails beckon today's visitors.",
"images": [
{
"credit": "NPS image",
"altText": "Pink surise and waves",
"title": "Outer beach",
"id": "4078",
"caption": "Many visitors rise early to watch the sun rise over the Atlantic.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C853027-1DD8-B71B-0B7E332E35FF7626.jpg"
},
{
"credit": "NPS photo",
"altText": "Water makes an impression in the sand",
"title": "Sand and Water",
"id": "4079",
"caption": "A walk on a Cape Cod beach is never the same twice.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C8531C0-1DD8-B71B-0BE3CAF8B7CFED72.jpg"
},
{
"credit": "NPS photo",
"altText": "The front of a red kayak floating on a pond points towards a forest with red and orange leaves",
"title": "Exploring the Park by Water",
"id": "4080",
"caption": "Exploring the park by water provides a different perspective on the land.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C853320-1DD8-B71B-0B079D55D788EEAD.jpg"
},
{
"credit": "NPS photo",
"altText": "A flock of bird flies by a beach with waves",
"title": "Birds and Beach",
"id": "4081",
"caption": "The national seashore is known for its species diversity, including threatened and endangered birds.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C85349E-1DD8-B71B-0B20658295A3DE59.jpg"
},
{
"credit": "NPS photo",
"altText": "A park ranger with a bucket and net walks on a sandy path with a boy and a man.",
"title": "Fish, Snails, and Horseshoe Crab Tales",
"id": "4082",
"caption": "Rangers and visitors explore the park together during dozens of programs every week during the summer.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C85363D-1DD8-B71B-0B947E86974A478B.jpg"
}
],
"designation": "National Seashore",
"parkCode": "caco",
"addresses": [
{
"postalCode": "02667",
"city": "Wellfleet",
"stateCode": "MA",
"line1": "99 Marconi Site Road",
"type": "Mailing",
"line3": "",
"line2": ""
},
{
"postalCode": "02667",
"city": "Wellfleet",
"stateCode": "MA",
"line1": "99 Marconi Site Road",
"type": "Physical",
"line3": "",
"line2": ""
}
],
"id": "DE0A8012-5324-4F5C-98DA-0EE6589FDFB3",
"fullName": "Cape Cod National Seashore"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "8438815516",
"description": "",
"extension": "",
"type": "Voice"
},
{
"phoneNumber": "8438817070",
"description": "",
"extension": "",
"type": "Fax"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "SC",
"directionsInfo": "The park is located on the south side of Long Point Road .7 miles from US Highway 17, or 3 miles if coming from I-526.",
"directionsUrl": "http://www.nps.gov/chpi/planyourvisit/directions.htm",
"url": "https://www.nps.gov/chpi/index.htm",
"weatherInfo": "Winters are generally mild. Summers are hot and humid.",
"name": "Charles Pinckney",
"latLong": "lat:32.84577392, long:-79.82487582",
"description": "Charles Pinckney was a principal author and signer of the United States Constitution. This remnant of his coastal plantation is preserved to tell the story of a \"founding father,\" his life of public service, the lives of enslaved African Americans on South Carolina Lowcountry plantations and their influences on Charles Pinckney.",
"images": [
{
"credit": "NPS Photo",
"altText": "1828 Lowcountry cottage and grounds",
"title": "Historic House and Grounds",
"id": "4341",
"caption": "The historic house serves as the park's visitor center and features exhibits, film options, and a museum shop.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C86ACA6-1DD8-B71B-0B4AB188D4CC5AE8.jpg"
},
{
"credit": "New York State Office of Parks, Recreation and Historic Preservation",
"altText": "Charles Pinckney portrait",
"title": "Charles Pinckney",
"id": "4343",
"caption": "American founding father, Charles Pinckney, was a contributing author and signer of the U.S. Constitution.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C86B04E-1DD8-B71B-0BF5BB35B9534139.jpg"
},
{
"credit": "NPS Photo",
"altText": "Live Oak",
"title": "Live Oak",
"id": "4344",
"caption": "Spanish Moss drape Live Oak in the early morning sun.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C86B25A-1DD8-B71B-0B3451518A1D565B.jpg"
},
{
"credit": "NPS Photo",
"altText": "Southern Magnolia (Magnolia grandiflora)",
"title": "Southern Magnolia (Magnolia grandiflora)",
"id": "4345",
"caption": "Flowering plants, like this Southern Magnolia, are remnant of historic ornamental gardens once enjoyed by former farm owners and still marveled over by modern visitors.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C86B43C-1DD8-B71B-0BA91DAD21A2793B.jpg"
},
{
"credit": "NPS Photo",
"altText": "Corn Crib",
"title": "Corn Crib",
"id": "4346",
"caption": "Snee Farm, once owned by Charles Pinckney, was a working farm for over 200 years. This corn crib, built in 1910, is one of the few remaining structures of a bygone era.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C86B604-1DD8-B71B-0B72883C9777D630.jpg"
},
{
"credit": "NPS Photo.",
"altText": "Boardwalk and Marsh",
"title": "Boardwalk and Marsh",
"id": "4347",
"caption": "A .25 mile loop trail is a popular activity for visitors to enjoy the grounds and see points of cultural and natural interest along the way.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C86B810-1DD8-B71B-0B084DB6A7FABC1C.jpg"
}
],
"designation": "National Historic Site",
"parkCode": "chpi",
"addresses": [
{
"postalCode": "29482",
"city": "Sullivan's Island",
"stateCode": "SC",
"line1": "1214 Middle Street",
"type": "Mailing",
"line3": "",
"line2": ""
},
{
"postalCode": "29464",
"city": "Mount Pleasant",
"stateCode": "SC",
"line1": "1254 Long Point Road",
"type": "Physical",
"line3": "",
"line2": ""
}
],
"id": "08EFF7E4-0FE4-4402-B23A-124EB8AAC249",
"fullName": "Charles Pinckney National Historic Site"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "3306572752",
"description": "",
"extension": "",
"type": "Voice"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "OH",
"directionsInfo": "Plane\nCleveland Hopkins International Airport and Akron-Canton Regional Airport offer many daily flights to the area. Car rentals are available at both airports.\n\nBus & Train\nBus stations are located in downtown Cleveland and Akron. The Amtrak station is in downtown Cleveland.\n\nCar\nThe park is easily accessible by car from all directions. A good place to start your visit is at Boston Store Visitor Center located at 1550 Boston Mills Road, Peninsula, Ohio 44264. (81° 33.512' W) (41° 15.803' N).",
"directionsUrl": "http://www.nps.gov/cuva/planyourvisit/directions.htm",
"url": "https://www.nps.gov/cuva/index.htm",
"weatherInfo": "Spring's rain and warming temperatures bring new leaves on trees, blooming wildflowers, and visitors anxious get out on the trail. \n\nSummer temperatures range from 49 to 95 degrees F and can be humid. Dressing in layers is advisable. \n\nFall temperatures can range from low 70s during the day to freezing during the night. Fall foliage often peaks in mid-October.\n\nWinter weather conditions can rapidly change, due to the lake effect snow from Lake Erie. Temperatures vary from mid-30s to below zero.",
"name": "Cuyahoga Valley",
"latLong": "lat:41.26093905, long:-81.57116722",
"description": "Though a short distance from the urban areas of Cleveland and Akron, Cuyahoga Valley National Park seems worlds away. The park is a refuge for native plants and wildlife, and provides routes of discovery for visitors. The winding Cuyahoga River gives way to deep forests, rolling hills, and open farmlands. Walk or ride the Towpath Trail to follow the historic route of the Ohio & Erie Canal.",
"images": [
{
"credit": "Photo by Ted Toth",
"altText": "Scenic train as it pulls into Peninsula Depot.",
"title": "Cuyahoga Valley Scenic Railroad in Peninsula",
"id": "3423",
"caption": "Many park visitors ride the scenic excursion trail through the valley or take advantage of the Bike Aboard option to ride one way with their bike.",
"url": "https://www.nps.gov/common/uploads/structured_data/50001FF6-1DD8-B71B-0BECA954B0F991BF.jpg"
},
{
"credit": "Photo by Tom Jones",
"altText": "A ray of sunshine streaming through the rock formation along the Ledges Trail.",
"title": "Along the Ledges Trail",
"id": "3424",
"caption": "One of Cuyahoga Valley's most popular trails, the Ledges Trail proved glimpses of great color and rock formations throughout the year.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C81841A-1DD8-B71B-0B1A447676517C5B.jpg"
},
{
"credit": "Photo by Tom Jones",
"altText": "A misty sunset over a lone goose at the Beaver Marsh",
"title": "Sunset at the Beaver Marsh",
"id": "3425",
"caption": "Anytime of day or night there is some wildlife at the Beaver Marsh to capture your attention.",
"url": "https://www.nps.gov/common/uploads/structured_data/4FD6A6BA-1DD8-B71B-0B5B3D9F4BE50EEF.jpg"
},
{
"credit": "Photo by Tom Jones",
"altText": "Brandywine Falls the parks 60 ft waterfall.",
"title": "Brandywine Falls",
"id": "11077",
"caption": "Brandywine Falls is Among the Most Popular Attractions in Cuyahoga Valley National Park",
"url": "https://www.nps.gov/common/uploads/structured_data/4FE11F5B-1DD8-B71B-0BBC14532CF8C3B3.jpg"
}
],
"designation": "National Park",
"parkCode": "cuva",
"addresses": [
{
"postalCode": "44141",
"city": "Brecksville",
"stateCode": "OH",
"line1": "15610 Vaughn Road",
"type": "Mailing",
"line3": "",
"line2": ""
},
{
"postalCode": "44264",
"city": "Peninsula",
"stateCode": "OH",
"line1": "1550 Boston Mills Road",
"type": "Physical",
"line3": "",
"line2": ""
}
],
"id": "F4D44F29-3F67-498F-B05B-0783473D2708",
"fullName": "Cuyahoga Valley National Park"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "3052427700",
"description": "",
"extension": "",
"type": "Voice"
},
{
"phoneNumber": "3052427711",
"description": "",
"extension": "",
"type": "Fax"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "FL",
"directionsInfo": "Dry Tortugas National Park is one of the most remote parks in the National Park System. Located approximately 70 miles west of Key West it is accessible only by a daily concession ferry, private boats, charter boats, or seaplane.",
"directionsUrl": "http://www.nps.gov/drto/planyourvisit/directions.htm",
"url": "https://www.nps.gov/drto/index.htm",
"weatherInfo": "The climate in the Dry Tortugas is subtropical, which basically means that it has warm and tropical weather in the range of 60°F to 90°F. The two main seasons are the winter stormy season from December through March which is windier and sees rougher seas, and the summertime tropical storm season from June through November where there is a higher chance of isolated storms. During the summers it is hot and humid. During the winter the temperature is milder and drier.",
"name": "Dry Tortugas",
"latLong": "lat:24.628741, long:-82.87319",
"description": "Almost 70 miles (113 km) west of Key West lies the remote Dry Tortugas National Park. This 100-square mile park is mostly open water with seven small islands. Accessible only by boat or seaplane, the park is known the world over as the home of magnificent Fort Jefferson, picturesque blue waters, superlative coral reefs and marine life, and the vast assortment of bird life that frequents the area.",
"images": [
{
"credit": "NPS Photo / Maria Belen Farias",
"altText": "Park visitors enjoy a sunset on the moat wall.",
"title": "Sunset at Fort Jefferson",
"id": "3341",
"caption": "Sunsets at the Dry Tortugas are breathtaking. Visitors who choose to camp over night can view the sun set at Fort Jefferson.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C80FF02-1DD8-B71B-0B39AC51BF7B2FA2.jpg"
},
{
"credit": "NPS Photo / Maria Belen Farias",
"altText": "A view of Fort Jefferson from the moat all.",
"title": "Fort Jefferson",
"id": "3342",
"caption": "ort Jefferson is a massive but unfinished coastal fortress. It is the largest masonry structure in the Americas, and is composed of over 16 million bricks.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C810049-1DD8-B71B-0B0040641619D4A6.jpg"
},
{
"credit": "NPS Photo / Maria Belen Farias",
"altText": "A boat passes in front of Loggerhead Key during sunset.",
"title": "Loggerhead Key",
"id": "3343",
"caption": "The largest island in the Dry Tortugas, Loggerhead Key is a site of shipwrecks, a significant lighthouse installation, and where the historic Carnegie Laboratory for Marine Ecology once stood. Named for its abundance of loggerhead sea turtles, Loggerhead",
"url": "https://www.nps.gov/common/uploads/structured_data/3C810258-1DD8-B71B-0BE07AC43C736990.jpg"
},
{
"credit": "NPS Photo / Maria Belen Farias",
"altText": "A view inside Fort Jefferson.",
"title": "Inside Fort Jefferson",
"id": "3344",
"caption": "Garden Key is the second largest island in the Dry Tortugas, about 14 acres in size, and has had the most human impact. Located on Garden Key is historic Fort Jefferson, one of the nation’s largest 19th century forts and a central cultural feature of Dry",
"url": "https://www.nps.gov/common/uploads/structured_data/3C8103D0-1DD8-B71B-0B6DB5CF9A4AC58F.jpg"
},
{
"credit": "NPS Photo / Brett Seymour",
"altText": "A few of the stars at night with a view of Fort Jefferson.",
"title": "Night sky at the Dry Tortugas",
"id": "3345",
"caption": "The Dry Tortugas is so remote that night sky viewing is possible.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C81050F-1DD8-B71B-0B45EDC68B621860.jpg"
},
{
"credit": "NPS Photo",
"altText": "Two divers dive the Windjammer Wreck",
"title": "Diving at the Dry Tortugas",
"id": "3346",
"caption": "The Dry Tortugas has over 300 sunken ships. One of the most accessible is the Winjammer Wreck which can be dove or snorkeled.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C810626-1DD8-B71B-0B1DFF7BCF9A0682.jpg"
},
{
"credit": "NPS Photo",
"altText": "An aerial view of the Dry Tortugas",
"title": "Aerial view of the Dry Tortugas",
"id": "3347",
"caption": "The Dry Tortugas is made up of seven islands.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C810722-1DD8-B71B-0BAD4B445F0C3D8C.jpg"
}
],
"designation": "National Park",
"parkCode": "drto",
"addresses": [
{
"postalCode": "33034",
"city": "Homestead",
"stateCode": "FL",
"line1": "40001 SR-9336",
"type": "Mailing",
"line3": "",
"line2": ""
},
{
"postalCode": "33034",
"city": "Homestead",
"stateCode": "FL",
"line1": "40001 SR-9336",
"type": "Physical",
"line3": "",
"line2": ""
}
],
"id": "167A05D1-5793-49E0-89FE-0A1DDFA9A7F4",
"fullName": "Dry Tortugas National Park"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "5638733491",
"description": "Visitor Center front desk.",
"extension": "123",
"type": "Voice"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }
]
},
"states": "IA",
"directionsInfo": "Located 3 miles north of Marquette, Iowa on Hwy 76.",
"directionsUrl": "http://www.nps.gov/efmo/planyourvisit/directions.htm",
"url": "https://www.nps.gov/efmo/index.htm",
"weatherInfo": "All four seasons are represented in this area with summer temperature in the upper 80’s with higher heat indexes due to humidity and winter daytime highs in the 20's. Temperatures are in °Fahrenheit.",
"name": "Effigy Mounds",
"latLong": "lat:43.08095081, long:-91.19687517",
"description": "The mounds preserved here are considered sacred by many Americans, especially the Monument's 20 culturally associated American Indian tribes. A visit offers opportunities to contemplate the meanings of the mounds and the people who built them. The 200 plus American Indian mounds are located in one of the most picturesque sections of the Upper Mississippi River Valley.",
"images": [
{
"credit": "NPS Photo",
"altText": "Bear Effigy Mounds with visitor walking nearby.",
"title": "Marching Bear in Spring",
"id": "1538",
"caption": "Marching Bear Mound Group in summer.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C7BB1E2-1DD8-B71B-0B5500DF447CB89D.jpg"
},
{
"credit": "NPS Photo",
"altText": "Scenic view of the steep bluffs adjacent to the Mississippi River as trees start to change color.",
"title": "Scenic Overlook at Fire Point",
"id": "1541",
"caption": "Scenic overlook from the popular Fire Point Trail overlooking the Mississippi River and Driftless area bluffs.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C7BB6EE-1DD8-B71B-0BDC4A0D83D76902.jpg"
},
{
"credit": "NPS / Kat Busse",
"altText": "Three conical mounds in a foggy morning setting.",
"title": "Mounds on a Foggy Morning",
"id": "1542",
"caption": "Three Conical mounds along the Fire Point Trail during a foggy morning.",
"url": "https://www.nps.gov/common/uploads/structured_data/3C7BB8AE-1DD8-B71B-0BCEF3BB013A5F6A.jpg"
},
{
"credit": "NPS Photo/ Eaton Cote'",
"altText": "Circular mounds in a single line.",
"title": "Conical Mounds Leading to Fire Point",
"id": "7930",
"caption": "Follow a line of conical mounds that will lead you out to Fire Point which overlooks the Mississippi River.",
"url": "https://www.nps.gov/common/uploads/structured_data/20611706-1DD8-B71B-0BEA4697A628DD12.jpg"
}
],
"designation": "National Monument",
"parkCode": "efmo",
"addresses": [
{
"postalCode": "52146",
"city": "Harpers Ferry",
"stateCode": "IA",
"line1": "151 Hwy 76",
"type": "Mailing",
"line3": "",
"line2": ""
},
{
"postalCode": "52146",
"city": "Harpers Ferry",
"stateCode": "IA",
"line1": "151 Hwy 76",
"type": "Physical",
"line3": "",
"line2": ""
}
],
"id": "0265E5A4-576A-4626-882A-05971DEE9B76",
"fullName": "Effigy Mounds National Monument"
},
{
"contacts": {
"phoneNumbers": [
{
"phoneNumber": "5058762783",
"description": "",
"extension": "",
"type": "Voice"
}
],
"emailAddresses": [
{ "description": "", "emailAddress": "[email protected]" }