You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/assets/text/droughtAnnotations_mobile.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,7 @@ export default {
106
106
{
107
107
id: '1980s_2',
108
108
date: '1990-02-15',
109
-
text: 'In the summer of 1988, streamflow in the Mississippi River was so low that barges could not go up and down the lower section of the river. That same summer, wildfires burned 36% of Yellowstone National Park, triggering the largest fire-fighting effort in the U.S. at that time.',
109
+
text: 'In the summer of 1988, streamflow in the Mississippi River was so low that barges could not go up and down the lower section of the river. That same summer, wildfires burned 36% of Yellowstone National Park, triggering the largest wildland fire-fighting effort in the U.S. up to that time.',
Copy file name to clipboardExpand all lines: src/assets/text/droughtNarrations_desktop.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ export default {
97
97
title: '1980s Drought (1987 - 1992)',
98
98
start_date: '1990-10-31',
99
99
end_date: '1994-10-31',
100
-
text: 'In the summer of 1988, streamflow in the Mississippi River was so low that barges could not go up and down the lower section of the river. That same summer, wildfires burned 36% of Yellowstone National Park, triggering the largest fire-fighting effort in the U.S. at that time.',
100
+
text: 'In the summer of 1988, streamflow in the Mississippi River was so low that barges could not go up and down the lower section of the river. That same summer, wildfires burned 36% of Yellowstone National Park, triggering the largest wildland fire-fighting effort in the U.S. up to that time.',
101
101
quote: 'The 1988 drought dramatically illustrates how quickly several years of excess precipitation can change to widespread drought.',
102
102
quote_source: '<a href="https://files.dnr.state.mn.us/natural_resources/climate/summaries_and_publications/drought1988.pdf" target="_blank">Minnesota Department of Natural Resources, Division of Waters, 1989</a>',
Copy file name to clipboardExpand all lines: src/components/DroughtHistory.vue
+51-17Lines changed: 51 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,9 @@
5
5
<h2>Five droughts that changed history</h2>
6
6
</div>
7
7
<divid="intro-container">
8
-
<p>
8
+
<p
9
+
v-if="!mobileView"
10
+
>
9
11
The U.S. has experienced thousands of droughts that have caused water-related problems for humans and ecosystems. But in the last 100 years, five major drought events stand out in their effects on agriculture, wildfires, and streamflow (<a
10
12
href="https://doi.org/10.1002/joc.7904"
11
13
target="_blank"
@@ -14,6 +16,17 @@
14
16
target="_blank"
15
17
>USGS Streamgage Network</a>) across the lower 48 states.
16
18
</p>
19
+
<p
20
+
v-if="mobileView"
21
+
>
22
+
The U.S. has experienced thousands of droughts. But in the last 100 years, five major drought events stand out in their effects on agriculture, wildfires, and streamflow (<a
23
+
href="https://doi.org/10.1002/joc.7904"
24
+
target="_blank"
25
+
>McCabe et al. 2022</a>). Scroll through the timeline to see when and where these major droughts occurred at <a
:alt="`Map of drought sites in the continental United States. Sites actively in drought during the ${narration.title} are highlighted in red`"
@@ -123,28 +136,35 @@
123
136
<div
124
137
v-for="narration in narrations"
125
138
:id="`drought-text-${narration.id}`"
126
-
:key="narration.id"
139
+
:key="`title-${narration.id}`"
127
140
class="droughtText droughtTitle hidden"
128
141
>
129
142
<pv-html="narration.title" />
130
143
</div>
131
144
<div
132
145
v-for="narration in narrations"
133
146
:id="`drought-text-${narration.id}`"
134
-
:key="narration.id"
147
+
:key="`text-${narration.id}`"
135
148
class="droughtText narration hidden"
136
149
>
137
150
<pv-html="narration.text" />
138
151
</div>
139
152
</div>
140
153
</section>
141
-
<hr>
154
+
<hr
155
+
v-if="mobileView"
156
+
>
142
157
<section
143
158
id="region-container"
144
159
class="page-section"
145
160
>
146
161
<h3>Drought in Regions of the Conterminous U.S.</h3>
147
-
<p>Droughts happen in every region of the U.S. These charts show the same 2000 drought events as the national timeline above, but now they are shown by region. Where the orange violin-like shapes are wider, more streamgages were in drought at one time in that region.</p>
162
+
<p>
163
+
Droughts happen in every region of the U.S. These charts show the same 2000 drought events as the national timeline above, but now they are shown by <a
>Climate Adaptation Science Center</a> regions. Where the orange violin-like shapes are wider, more streamgages were in drought at one time in that region.
167
+
</p>
148
168
<divid="region-grid-container">
149
169
<cascMap
150
170
v-if="mobileView"
@@ -154,7 +174,7 @@
154
174
v-if="mobileView"
155
175
id="chart-instructions"
156
176
>
157
-
Click on the map to explore drought histories in each region
177
+
Tap on the map to explore drought histories in each region
0 commit comments