forked from friesenkiwi/wahl-o-meter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alltheses_categories.html
34 lines (28 loc) · 1008 Bytes
/
alltheses_categories.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>
Wahl-O-Meter-Daten: Kategorisiert
</title>
<script src="src/viewer.js" type="text/javascript"></script>
<script src="src/converter.js" type="text/javascript"></script>
<script src="src/categorizer.js" type="text/javascript"></script>
<script type="text/javascript">
load_mergedData_json("export/occasiondata.json", function(mergedData) {
console.log(mergedData);
mergedData = {
"occasions": mergedData
};
loadJSON('data/theses_categories.json', function(response) {
theses_categories = JSON.parse(response);
var categorizedData = categorize_theses(mergedData, theses_categories);
var crunchedCategorizedData = exports.crunch_party_occurences(categorizedData);
console.log(crunchedCategorizedData);
write_categorized(crunchedCategorizedData);
});
});
</script>
</head>
<body></body>
</html>