-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
131 lines (124 loc) · 5.11 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
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
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
<title>International Climate Finance Flows</title>
<script src="raphael.js" type="text/javascript"></script>
<script src="sankey.js" type="text/javascript"></script>
<script src="jquery.js" type="text/javascript"></script>
<style>
#sankey {
width: 1400px;
height: 1500px;
}
</style>
</head>
<body>
<h1>International Climate Finance Flows</h1>
<p>Not ready for use. Do not trust icf.</p>
<div id='sankey'>
</div>
<script type='text/javascript'>
var sankey = new Sankey();
sankey.stack(0,["DECC ICF Budget"]);
sankey.stack(1,['World Bank',
'KfW',
'ADB',
'GiZ',
'PIDG',
'Green Investment Bank',
'Other'
]);
sankey.stack(2,[
'Clean Technology Fund',
'NAMA Facility',
'International CCS capacity building',
'BioCarbon Fund',
'Forest Carbon Partnership Facility - Carbon Fund',
'CP3 - Catalyst Fund',
'CP3 - Asia Climate Partners',
'Global Climate Partnership Fund',
'Get FiT',
'Green Investment Bank International Pilot',
'Capital Markets Climate Intiative',
'International 2050 Calculator',
'Green Africa Power',
'Programme for Market Readiness',
'Forest Investment Programme',
'Pilot Program for Climate Resilience',
'Scaling up Renewable Energy',
'Colombia Silvopastoral Systems',
'Carbon Market Finance']);
sankey.stack(3, [
'Improve architecture for climate finance',
'Drive private investment',
'Support deployment of technologies critical to 2 degree goal',
'Build capacity to respond to climate change',
'Protect forests',
'Adapting to climate change'
]);
/* See http://www.w3schools.com/tags/ref_colorpicker.asp for how to define colours */
sankey.setColors({
"World Bank":"#3D7A99"
});
sankey.y_space = 20;
sankey.right_margin = 300;
sankey.left_margin = 120;
sankey.convert_flow_values_callback = function(finance_flow) {
return finance_flow * 0.3; // Pixels per £M
};
sankey.setData([
['DECC ICF Budget',91,'KfW'],
['DECC ICF Budget',70,'ADB'],
['DECC ICF Budget',35,'GiZ'],
['DECC ICF Budget',0.197,'Green Investment Bank'],
['DECC ICF Budget',2,'Other'],
['DECC ICF Budget',25,'PIDG'],
['DECC ICF Budget',782.9,'World Bank'],
['KfW',35,'NAMA Facility'],
['KfW',30,'Global Climate Partnership Fund'],
['KfW',25.5,'Get FiT'],
['ADB',35,'International CCS capacity building'],
['ADB',35.25,'CP3 - Asia Climate Partners'],
['GiZ',35,'NAMA Facility'],
['Green Investment Bank',0.197,'Green Investment Bank International Pilot'],
['Other',0.411,'Capital Markets Climate Intiative'],
['Other',1.8,'International 2050 Calculator'],
['PIDG',25,'Green Africa Power'],
['World Bank',45,'Forest Carbon Partnership Facility - Carbon Fund'],
['World Bank',320+180.921,'Clean Technology Fund'],
['World Bank',25,'International CCS capacity building'],
['World Bank',50,'BioCarbon Fund'],
['World Bank',7,'Programme for Market Readiness'],
['World Bank',25,'Forest Investment Programme'],
['World Bank',15,'Pilot Program for Climate Resilience'],
['World Bank',25,'Scaling up Renewable Energy'],
['World Bank',40,'CP3 - Catalyst Fund'],
['World Bank',15,'Colombia Silvopastoral Systems'],
['World Bank',35,'Carbon Market Finance'],
['NAMA Facility',70,'Improve architecture for climate finance'],
['Global Climate Partnership Fund',30,'Drive private investment'],
['Get FiT',25.5,'Drive private investment'],
['International CCS capacity building',60,'Support deployment of technologies critical to 2 degree goal'],
['CP3 - Catalyst Fund',40,'Drive private investment'],
['CP3 - Asia Climate Partners',35.25,'Drive private investment'],
['Green Investment Bank International Pilot',0.197,'Drive private investment'],
['Capital Markets Climate Intiative',0.411,'Drive private investment'],
['International 2050 Calculator',1.8,'Build capacity to respond to climate change'],
['Green Africa Power',25,'Drive private investment'],
['Forest Carbon Partnership Facility - Carbon Fund',45,'Protect forests'],
['Clean Technology Fund',320,'Drive private investment'],
['Clean Technology Fund',180.921,'Improve architecture for climate finance'],
['BioCarbon Fund',50,'Protect forests'],
['Programme for Market Readiness',7,'Build capacity to respond to climate change'],
['Forest Investment Programme',25,'Protect forests'],
['Pilot Program for Climate Resilience',15,'Adapting to climate change'],
['Scaling up Renewable Energy',25,'Support deployment of technologies critical to 2 degree goal'],
['Colombia Silvopastoral Systems',15,'Protect forests'],
['Carbon Market Finance',35,'Improve architecture for climate finance']
]);
sankey.draw();
</script>
</body>
</html>