-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
50 lines (43 loc) · 1.51 KB
/
Copy pathproject.html
File metadata and controls
50 lines (43 loc) · 1.51 KB
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
<!-- Joos Akkerman (11304723)
MPROG Project
This file visualizes three graphs that are linked, and visualize changes in political preferences in
the Netherlands -->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="project.css">
<meta charset="utf-8">
<title>Politieke Verschuivingen</title>
<!-- Import D3 V5 -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<script>
d3v5 = d3;
window.d3 = null;
</script>
<script src="d3-tip.js"></script>
<script src="project.js"></script>
</head>
<body>
<h style="font-family: arial"><b>Verschuivingen in Politieke voorkeur per gemeente (1946-2017)</b></h><br>
<a style="font-family: arial" href="https://www.verkiezingsuitslagen.nl/verkiezingen/">Kiesraad</a>
<a style="font-family: arial" href="https://manifesto-project.wzb.eu/">Manifesto Project</a>
<div id="map"></div>
<div id="linechart"></div>
<div id="changechart"></div>
</body>
<!-- Import D3 V3 and TopoJSON -->
<script src="datamaps.js"></script>
<script src="topojson.js"></script>
<script src="topojson.min.js"></script>
<script>
var topology = topojson.topology({foo: geojson});
</script>
<script src="NL_mun_2017.topojson"></script>
<!-- <script src="NL_mun_2017.topojson"></script> -->
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/1.6.9/topojson.min.js"></script>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script>
d3v3 = d3;
window.d3 = null;
</script>
</html>