-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
1269 lines (1269 loc) · 32.8 KB
/
config.js
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
var config = {
style: "mapbox://styles/kelseyetaylor/ckwmy8umq07tr16nol9wltpf2",
accessToken:
"pk.eyJ1Ijoia2Vsc2V5ZXRheWxvciIsImEiOiJjanhzYWFwN2QwaHBsM2huNW0yZmplcmJlIn0.37SBNBO6Nldswe4RchbmtA",
showMarkers: false,
alignment: "left",
theme: "dark",
title: "Exploring Our Changing National Parks",
byline: "Kelsey Taylor",
footer: "Glacier data available from U.S. Geological Survey (USGS) and GLIMS database. Historic wildfire data available from the National Park Service (NPS) and USGS. Historical tropical cyclone data available via HURDAT2 from the National Hurricane Center (NHC) and National Oceanic and Atmospheric Administration (NOAA). Park boundary and name data available from NPS. The <a href='https://nationalparktypeface.com/'>National Park Typeface</a> is available for free use from the Design Outside Studio.<br><br> Funding for this project provided by The National Geographic Society",
chapters: [
{
id: "summary",
description: "Follow impacts of our changing climate in U.S. National Parks across time, space, and landscape. Wildfires, receding glaciers, hurricanes, rainfall, and temperature changes from 1850 to the present illustrate the rapid, intense changes in our climate over the past 150 years. Keep scrolling down to follow the story.",
location: {
center: [-114.0944, 48.6343],
zoom: 8.47,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [],
onChapterExit: []
},
{
id: "fires-title",
title: "Exploring Wildfires in Our Changing National Parks",
description: "Wildfires in the U.S. have increased dramatically in size and frequency since data was first tracked in the mid-19th century. In U.S. national parks, they are one very visible impact of our changing climate.",
image: "./content/scrollytelling/img/glac-12.jpeg",
location: {
center: [-114.0944, 48.6343],
zoom: 8.47,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [
{
layer: "fires-before-1950",
opacity: 0.5
},
{
layer: "fires-1950-2000",
opacity: 0.5
},
{
layer: "fires-since-2000",
opacity: 0.5
}
],
onChapterExit: [
{
layer: "fires-before-1950",
opacity: 0
},
{
layer: "fires-1950-2000",
opacity: 0
},
{
layer: "fires-since-2000",
opacity: 0
}
]
},
{
id: "glacier-before-1950",
title: "Glacier National Park:\n 1840 - 1950",
description: "Glacier National Park in Montana has been a hotbed of wildfire activity since before its designation as a national park in 1910. <br><br> Wildfires have been prominent in Glacier's landscape for so long that many of its species have adapted to fiery conditions, needing it to survive.",
location: {
center: [-114.0944, 48.6343],
zoom: 8.47,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [
{
layer: "fires-before-1950",
opacity: 0.5
}
],
onChapterExit: [
{
layer: "fires-before-1950",
opacity: 0
}
]
},
{
id: "yellowstone-before-1950",
title: "Yellowstone & Grand Teton National Parks:\n 1840 - 1950",
description: "Yellowstone National Park, located mostly in Wyoming with small sections in Idaho and Montana, has seen wildfires as long as it has existed as a national park. What has changed since its early days, however, are the number and size of fires within the park's boundaries.",
location: {
center: [-110.847, 44.34],
zoom: 7.62,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [
{
layer: "fires-before-1950",
opacity: 0.5
}
],
onChapterExit: [
{
layer: "fires-before-1950",
opacity: 0
}
]
},
{
id: "yellowstone-1950-2000",
title: "Yellowstone & Grand Teton National Parks:\n 1950 - 2000",
description: "As temperatures increased, droughts hit, and resources were scarce, wildfires ravaged the landscape of Yellowstone during the latter half of the 20th century. Many large-scale wildfires have left a noticeable mark on the park - most notably the fires of 1988, which burned 36% of the park's total area.",
location: {
center: [-110.847, 44.34],
zoom: 7.62,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [
{
layer: "fires-1950-2000",
opacity: 0.5
}
],
onChapterExit: [
{
layer: "fires-1950-2000",
opacity: 0
}
]
},
{
id: "yellowstone-since-2000",
title: "Yellowstone & Grand Teton National Parks:\n 2000 - 2018",
description: "One result of such widespread burning was that there was not much left to burn in the subsequent years, making the 21st century relatively quiet in Yellowstone - so far.",
image: "./content/scrollytelling/img/grte-03.jpeg",
location: {
center: [-110.847, 44.34],
zoom: 7.62,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [
{
layer: "fires-since-2000",
opacity: 0.5
}
],
onChapterExit: [
{
layer: "fires-since-2000",
opacity: 0
}
]
},
{
id: "yosemite-seki-since-2000",
title: "Yosemite, Sequoia, & Kings Canyon National Parks:\n 2000 - 2018",
description: "Three national parks in Central California have had more wildfire activity in the last 20 years, with hard-to-contain fires becoming routine every year.",
image: "./content/scrollytelling/img/yose-02.jpeg",
location: {
center: [-119.314, 37.209],
zoom: 7.48,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [
{
layer: "fires-since-2000",
opacity: 0.5
}
],
onChapterExit: [
{
layer: "fires-since-2000",
opacity: 0
}
]
},
{
id: "everglades-since-2000",
title: "Everglades National Park:\n 1950 - 2018",
description: "Another preserved area hit hard by myriad natural disasters is Everglades National Park in south Florida, just outside Miami. While wildfires are often associated with the Western United States, they have grown increasingly common in this region over the last several decades.",
location: {
center: [-81.137, 25.385],
zoom: 8.29,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [
{
layer: "fires-since-2000",
opacity: 0.5
},
{
layer: "fires-1950-2000",
opacity: 0.5
}
],
onChapterExit: [
{
layer: "fires-since-2000",
opacity: 0
},
{
layer: "fires-1950-2000",
opacity: 0
}
]
},
{
id: "glacier-since-2000",
title: "Glacier National Park:\n 2000 - 2018",
description: "As Glacier has become a more popular destination and wildfires have grown in size and frequency, the National Park Service at Glacier has learned how to manage fire instead of fighting it.",
image: "./content/scrollytelling/img/glac-11.jpeg",
location: {
center: [-114.0944, 48.6343],
zoom: 8.47,
pitch: 0.0,
bearing: 0.0,
speed: 0.7
},
onChapterEnter: [
{
layer: "fires-since-2000",
opacity: 0.5
}
],
onChapterExit: [
{
layer: "fires-since-2000",
opacity: 0
}
]
},
{
id: "glacier-fire-to-glaciers",
title: "Exploring Glaciers in Our Changing National Parks",
description: "Glaciers in national parks have changed dramatically since 1850 in large part due to changes in climate conditions. Glacier National Park still has some glaciers within its boundaries, but they are rapidly receding, with estimates that they will disappear by 2030.",
location: {
center: [-114.0944, 48.6343],
zoom: 8.47,
pitch: 0.0,
bearing: 0.0
},
onChapterEnter: [
{
layer: "1850-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers",
opacity: 0
}
]
},
{
id: "glacier-fire-to-glaciers-title",
title: "Glaciers in Glacier National Park",
description: "1850",
location: {
center: [-114.0944, 48.6343],
zoom: 8.47,
pitch: 0.0,
bearing: 0.0
},
onChapterEnter: [
{
layer: "1850-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers",
opacity: 0
}
]
},
{
id: "blackfoot-1850",
title: "1850",
description: "Glacial extent estimate in 1850 for the Blackfoot Glacier complex and surrounding glaciers",
location: {
center: [-113.69731, 48.6014],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers",
opacity: 1.0
},
{
layer: "glacier-labels",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
}
]
},
// done
{
id: "blackfoot-1850-1966",
title: "1966",
description: "Glacial extent in 1966 for the Blackfoot Glacier complex and surrounding glaciers, with the estimated extent in 1850 visible. <br><br> In just over than 100 years, approximately half of this glacier complex has receded.",
location: {
center: [-113.69731, 48.6014],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "1966-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "1966-glaciers",
opacity: 0
}
]
},
{
id: "blackfoot-1966-1998",
title: "1998",
description: "Glacial extent in 1998 for the Blackfoot Glacier complex and surrounding glaciers, with the estimated extent in 1850 and 1966 visible.",
location: {
center: [-113.69731, 48.6014],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "1998-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "1998-glaciers",
opacity: 0
}
]
},
{
id: "blackfoot-1998-2005",
title: "2005",
description: "Glacial extent in 2005 for the Blackfoot Glacier complex and surrounding glaciers, with the estimated extent in 1850, 1966, and 1998 visible.",
location: {
center: [-113.69731, 48.6014],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "1998-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "2005-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "1998-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "2005-glaciers",
opacity: 0
}
]
},
{
id: "blackfoot-2005-2015",
title: "2015",
description: "Glacial extent in 2015 for the Blackfoot Glacier complex and surrounding glaciers, with the estimated extent in 1850, 1966, 1998, and 2005 visible. <br><br> Beyond the dramatic initial recession from 1850 to 1966, much more of the glacier complex has disappeared in the last 50 years.",
location: {
center: [-113.69731, 48.6014],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "1998-glaciers-gone",
opacity: 0.5
},
{
layer: "2005-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "2015-glaciers",
opacity: 1
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "1998-glaciers-gone",
opacity: 0
},
{
layer: "2005-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "2015-glaciers",
opacity: 0
}
]
},
{
id: "agassiz-1850",
title: "1850",
description: "Glacial extent estimate in 1850 for the Agassiz Glacier complex and surrounding glaciers.",
location: {
center: [-114.1083, 48.9259],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers",
opacity: 1.0
},
{
layer: "glacier-labels",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
}
]
},
{
id: "agassiz-1850-1966",
title: "1966",
description: "Glacial extent in 1966 for the Agassiz Glacier complex and surrounding glaciers, with the estimated extent in 1850 visible.",
location: {
center: [-114.1083, 48.9259],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "1966-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "1966-glaciers",
opacity: 0
}
]
},
{
id: "agassiz-1850-1966",
title: "1998",
description: "Glacial extent in 1998 for the Agassiz Glacier complex and surrounding glaciers, with the estimated extent in 1850 and 1966 visible.",
location: {
center: [-114.1083, 48.9259],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "1998-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "1998-glaciers",
opacity: 0
}
]
},
{
id: "agassiz-1998-2005",
title: "2005",
description: "Glacial extent in 2005 for the Agassiz Glacier complex and surrounding glaciers, with the estimated extent in 1850, 1966, and 2005 visible.",
location: {
center: [-114.1083, 48.9259],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "1998-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "2005-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "1998-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "2005-glaciers",
opacity: 0
}
]
},
{
id: "agassiz-2005-2015",
title: "2015",
description: "Glacial extent in 2015 for the Agassiz Glacier complex and surrounding glaciers, with the estimated extent in 1850, 1966, 1998, and 2005 visible. <br><br> Glacier recession is even more dramatic here than in the Blackfoot area, with close to 70% of the glacier surface area here having receded between 1850 and 2015.",
location: {
center: [-114.1083, 48.9259],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "1998-glaciers-gone",
opacity: 0.5
},
{
layer: "2005-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1
},
{
layer: "2015-glaciers",
opacity: 1
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "1998-glaciers-gone",
opacity: 0
},
{
layer: "2005-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "2015-glaciers",
opacity: 0
}
]
},
{
id: "grinnell-1850",
title: "1850",
description: "Glacial extent estimate in 1850 for the Agassiz Glacier complex and surrounding glaciers. <br><br> Grinnell, named for one of the park's founders, is one of the most popular hiking destinations in the park. It is also one of the largest glaciers in the park and has been a very visible example of glacial retreat for visitors to the park.",
location: {
center: [-113.7023, 48.7455],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers",
opacity: 1.0
},
{
layer: "glacier-labels",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
}
]
},
{
id: "grinnell-1850-1966",
title: "1966",
description: "Glacial extent in 1966 for the Grinnell Glacier complex and surrounding glaciers, with the estimated extent in 1850 visible.",
location: {
center: [-113.7023, 48.7455],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "1966-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "1966-glaciers",
opacity: 0
}
]
},
{
id: "grinnell-1966-1998",
title: "1998",
description: "Glacial extent in 1998 for the Grinnell Glacier complex and surrounding glaciers, with the estimated extent in 1850 and 1966 visible. <br><br> This area features many glacial lakes, known as tarns, which form when glaciers melt over time.",
location: {
center: [-113.7023, 48.7455],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "1998-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "1998-glaciers",
opacity: 0
}
]
},
{
id: "grinnell-1998-2005",
title: "2005",
description: "Glacial extent in 2005 for the Grinnell Glacier complex and surrounding glaciers, with the estimated extent in 1850, 1966, and 1998 visible.",
location: {
center: [-113.7023, 48.7455],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "1998-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "2005-glaciers",
opacity: 1.0
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "1998-glaciers-gone",
opacity: 0
},
{
layer: "glacier-labels",
opacity: 0
},
{
layer: "2005-glaciers",
opacity: 0
}
]
},
{
id: "grinnell-2005-2015",
title: "2015",
description: "Glacial extent in 2015 for the Grinnell Glacier complex and surrounding glaciers, with the estimated extent in 1850, 1966, 1998, and 2005 visible.",
image: "./content/scrollytelling/img/glac-07.jpeg",
location: {
center: [-113.7023, 48.7455],
zoom: 11,
pitch: 0,
bearing: 0,
speed: 0.7
},
onChapterEnter: [
{
layer: "1850-glaciers-gone",
opacity: 0.5
},
{
layer: "1966-glaciers-gone",
opacity: 0.5
},
{
layer: "1998-glaciers-gone",
opacity: 0.5
},
{
layer: "2005-glaciers-gone",
opacity: 0.5
},
{
layer: "glacier-labels",
opacity: 1.0
},
{
layer: "2015-glaciers",
opacity: 1
}
],
onChapterExit: [
{
layer: "1850-glaciers-gone",
opacity: 0
},
{
layer: "1966-glaciers-gone",
opacity: 0
},
{
layer: "1998-glaciers-gone",
opacity: 0
},
{
layer: "2005-glaciers-gone",