greens_report/www/index.html

29 lines
577 B
HTML
Raw Normal View History

2021-03-29 20:49:50 +02:00
<html>
<head>
<meta charset="utf-8">
2021-03-31 16:24:46 +02:00
<link rel="stylesheet" href="graph.css">
2021-03-30 16:30:50 +02:00
</head>
2021-03-29 20:49:50 +02:00
2021-03-30 16:30:50 +02:00
<body>
2021-03-29 20:49:50 +02:00
<div id='map'></div>
2021-04-19 22:47:06 +02:00
<div id='alluvial'></div>
2021-04-16 11:15:57 +02:00
<div id="filters">
2021-03-31 16:24:46 +02:00
</div>
2021-03-29 20:49:50 +02:00
2021-03-31 16:24:46 +02:00
<script src="https://d3js.org/d3.v6.js"></script>
2021-03-31 16:24:46 +02:00
<script src="https://d3js.org/d3-geo-projection.v3.min.js"></script>
2021-03-30 16:30:50 +02:00
<script src="https://d3js.org/topojson.v3.min.js"></script>
<script src="//unpkg.com/d3-geo-zoom"></script>
2021-04-19 22:47:06 +02:00
<script src="https://unpkg.com/d3-sankey@0"></script>
<!-- <script src="//unpkg.com/d3fc@14.0.1"></script> -->
<script src="graph.js"></script>
2021-03-29 20:49:50 +02:00
</body>
</html>