-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 2.85 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Re-implementation of IPCC data in Fluid</title>
<link href="css/styles.css" rel="stylesheet" type="text/css">
<link href="css/view-styles.css" rel="stylesheet" type="text/css">
<script src="https://use.fontawesome.com/1091715d00.js"></script>
<script>
// move to PureScript
function toggle(id) {
const elem = document.getElementById(id)
if (elem.style.visibility == 'hidden')
elem.style.visibility = 'visible'
else
elem.style.visibility = 'hidden'
}
</script>
</head>
<body class="standalone">
<div class="grid-container">
<div></div>
<div></div>
<div></div>
<div class="flex-left-align">
<h1>Recreation of IPCC AR6 WG1 Fig 6.19</h1>
</div>
<div></div>
<div></div>
<div></div>
<div class="flex-left-align">
<h2 class="title">
Scenario: Without climate change mitigation but with stringent air pollution control (SSP5-8.5)
</h2>
<p>
At the same time, the <a>SSP scenarios without climate change mitigation</a> project <a>faster growth in methane emissions in Africa, the Middle East</a> and Latin America (Figure 6.19) driven by <a>developments in agriculture, the oil and gas sectors, and […] waste management</a>.
</p>
<p>
After 2050, surface ozone concentrations decrease in SSP5-8.5, reaching levels below their 2005–2014 mean levels in most regions, but level off or continue to increase under SSP3-7.0. The increase in surface ozone in the <a>SSP5-8.5 scenario</a> occurs despite an emissions decrease of several ozone precursors <a>because the methane emissions increase until about 2080</a> in the absence of climate change mitigation.
</p>
<p>
In <a>SSP5-8.5, methane emissions increase</a> in North America, Europe and <a>Africa</a>, while there is a decrease in the Asian regions. For North America and Europe, the methane increase combined with a reduction in aerosol leads to highest net contribution to GSAT in this scenario (0.06°C and 0.04°C in 2100, respectively). The <a>high growth in methane makes Africa the region with the largest contribution to future warming</a> by SLCFs (0.18°C in 2100 versus 2020) in this scenario.
</p>
</div>
<div></div>
<div id="fig-input" class="flex-right-align data-pane"></div>
<div>
<div onclick="toggle('fig-input')"><span class="data-pane-button toggle-button">◀▶</span></div>
</div>
<div class="flex-left-align double-size">
<div id="fig"></div>
</div>
</div>
<script src="article.js"></script>
<script>
// move to PureScript
toggle('fig-input')
</script>
</body>
</html>