This repository was archived by the owner on Jan 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflare.js
378 lines (320 loc) · 9.84 KB
/
flare.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
privately( function(){
var
arFilter = 'ALL',
refreshTreemap = function(){};
privately(function(){
var
ids = [
'radio-ar1',
'radio-ar2',
'radio-ar3',
'radio-ar4',
'radio-ar5',
'radio-all-ar'
];
forEach( ids, function( id ) {
var input = document.getElementById( id );
input.onclick = function() {
arFilter = input.value;
refreshTreemap();
};
});
document.getElementById( ids[ids.length-1] ).checked = true;
});
function drawTreemap() {
// Clear content
$('#chart').html('');
$('#legend').html('');
var margin = {top: 40, right: 0, bottom: 0, left: 0},
width = $("#chart").width(),
height = 500 - margin.top - margin.bottom,
formatNumber = d3.format(",d"),
transitioning;
var x = d3.scale.linear()
.domain([0, width])
.range([0, width]);
var y = d3.scale.linear()
.domain([0, height])
.range([0, height]);
function getValue( node ) {
return node[ arFilter ];
}
var treemap = d3.layout.treemap()
.children(function(d, depth) { return depth ? null : d._children; })
.sort(function(a, b) { return getValue(a) - getValue(b); })
.value( getValue )
.ratio(height / width * 0.5 * (1 + Math.sqrt(5)))
.round(false);
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.bottom + margin.top)
.style("margin-left", -margin.left + "px")
.style("margin.right", -margin.right + "px")
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")")
.style("shape-rendering", "crispEdges");
var grandparent = svg.append("g")
.attr("class", "grandparent");
grandparent.append("rect")
.attr("y", -margin.top)
.attr("width", width)
.attr("height", margin.top);
grandparent.append("text")
.attr("x", 12)
.attr("y", 12 - margin.top)
.attr("dy", ".75em");
function createTreeNode( name, type ) {
return {
name: name,
type: type,
_children: [],
AR1: 0,
AR2: 0,
AR3: 0,
AR4: 0,
AR5: 0,
ALL: 0
};
}
var
TEXT_PADDING_X = 5,
TEXT_BASELINE_Y = 10;
var
CONTINENT_KEY = 'WMO Region Symbol',
ROOT_NODE = 'root';
// Continents settings for the TreeMap
// The color attribute is used to set the color of the tile
// The name attribute is used to translate the WMO Region Symbol
var continentsSettings = {
'AFR' : {
'color' : '#cccf5f',
'name' : 'Africa'
},
'ASI' : {
'color' : '#d7832e',
'name' : 'Asia'
},
'EUR' : {
'color' : '#315b66',
'name' : 'Europe'
},
'NAC' : {
'color' : '#44a3c7',
'name' : 'North America, Central America and the Caribbean'
},
'SAM' : {
'color' : '#5bae66',
'name' : 'South America'
},
'SWP' : {
'color' : '#953a24',
'name' : 'South-West Pacific'
},
'WMONA' : {
'color' : '#695e9f',
'name' : 'Non Available'
}
};
d3.tsv(
"count-participations-by-ar-author-role-institution-country.tsv",
function(rows) {
var
root = createTreeNode( "IPCC", ROOT_NODE );
forEach( rows, function( row ) {
var
AR = "AR",
COUNT_KEY = "Total",
ar = row[AR],
count = Number( row[COUNT_KEY] ),
node = root,
color = null;
forEachProperty( row, function( value, key ) {
node[ar] += count;
node.ALL += count;
node.color = color;
color = getNodeColor(node);
if ( key === AR || key === COUNT_KEY ) {
delete node._children;
return;
}
var childNode = find( node._children, function( child ) {
return child.name === value;
});
if ( childNode === null ) {
childNode = createTreeNode( value, key );
childNode.parent = node;
node._children.push( childNode );
}
node = childNode;
});
});
initialize(root);
layout(root);
var g = display(root);
function initialize(root) {
root.x = root.y = 0;
root.dx = width;
root.dy = height;
root.depth = 0;
}
// Compute the treemap layout recursively such that each group of siblings
// uses the same size (1×1) rather than the dimensions of the parent cell.
// This optimizes the layout for the current zoom state. Note that a wrapper
// object is created for the parent node for each group of siblings so that
// the parent’s dimensions are not discarded as we recurse. Since each group
// of sibling was laid out in 1×1, we must rescale to fit using absolute
// coordinates. This lets us use a viewport to zoom.
function layout(d) {
if (d._children) {
treemap.nodes({_children: d._children});
d._children.forEach(function(c) {
c.x = d.x + c.x * d.dx;
c.y = d.y + c.y * d.dy;
c.dx *= d.dx;
c.dy *= d.dy;
c.parent = d;
layout(c);
});
}
}
function display(d) {
grandparent
.datum(d.parent)
.on("click", function(d) { transition(d, 500); })
.select("text")
.text(name(d));
var g1 = svg.insert("g", ".grandparent")
.datum(d)
.attr("class", "depth");
var g = g1.selectAll("g")
.data(d._children)
.enter().append("g");
g.filter(function(d) { return d._children; })
.classed("children", true);
g.append("rect")
.attr("class", "parent")
.call(rect);
var childCell =
g.selectAll(".child")
.data(function(d) { return d._children || [d]; })
.enter();
childCell.append("rect")
.attr("class", "child")
.call(rect)
.append("title")
.text(function(d) { return d.name; });
childCell.append("text")
.attr("dy", ".35em")
.text(function(d) { return d.name; })
.call(text);
// Add interaction on click on tiles
// Add interaction only if this object has children to display
g.selectAll(".child")
.on('click', function(d) {
if(d.hasOwnProperty('_children')) {
transition(d.parent, 1000);
} else {
return false;
}
});
function transition(d, duration) {
if (transitioning || !d) return;
duration = or(duration, 0);
transitioning = true;
var g2 = display(d),
t1 = g1.transition().duration(duration),
t2 = g2.transition().duration(duration);
// Update the domain only after entering new elements.
x.domain([d.x, d.x + d.dx]);
y.domain([d.y, d.y + d.dy]);
// Enable anti-aliasing during the transition.
svg.style("shape-rendering", null);
// Draw child nodes on top of parent nodes.
svg.selectAll(".depth").sort(function(a, b) { return a.depth - b.depth; });
// Fade-in entering text.
g2.selectAll("text").style("fill-opacity", 0);
// Transition to the new view.
t1.selectAll("text").call(text).style("fill-opacity", 0);
t2.selectAll("text").call(text).style("fill-opacity", 1);
t1.selectAll("rect").call(rect);
t2.selectAll("rect").call(rect);
// Remove the old node when the transition is finished.
t1.remove().each("end", function() {
svg.style("shape-rendering", "crispEdges");
transitioning = false;
});
}
refreshTreemap = function() {
layout(d);
transition(d);
};
return g;
}
function rectWidth(d) {
return x(d.x + d.dx) - x(d.x);
}
function rectHeight(d) {
return y(d.y + d.dy) - y(d.y);
}
function text(text) {
text.attr("x", function(d) { return x(d.x) + TEXT_PADDING_X; })
.attr("y", function(d) { return y(d.y) + TEXT_BASELINE_Y; })
.style("opacity", function(d) {
return rectWidth(d) > this.getComputedTextLength() + TEXT_PADDING_X
&& rectHeight(d) > TEXT_BASELINE_Y
? 1
: 0;
});
}
function rect(rect) {
rect.attr("x", function(d) { return x(d.x); })
.attr("y", function(d) { return y(d.y); })
.attr("width", rectWidth)
.attr("height", rectHeight)
.attr("fill", function(d) { return d.color; });
}
function name(d) {
return d.parent
? name(d.parent) + " > " + translate(continentsSettings, d.name)
: translate(continentsSettings, d.name);
}
// If 'string' is a key of 'dictionary', return its value
// Else return 'string'
function translate(dictionary, string) {
if( dictionary.hasOwnProperty(string) ) {
string = dictionary[string].name;
}
return string;
}
// Generate the code node
// It should be the color of the continent attached to this tile
function getNodeColor(node) {
if(node.type == ROOT_NODE) {
result = null;
} else if(node.type == CONTINENT_KEY) {
result = continentsSettings[node.name].color;
} else if(node.parent) {
result = getNodeColor(node.parent);
// Default fallback color as red
// This should never happen
} else {
result = '#ff0000';
}
return result;
}
});
$('#legend').append(
function() {
var html = '';
$.each(continentsSettings, function(key, value) {
html += '<div><div class="legend-color" style="background-color: ' + value.color + ';"></div>' + value.name + '</div>';
});
return html;
}
);
}
drawTreemap();
$(window).resize(function () {
drawTreemap();
});
});