2021-03-29 18:49:50 +00:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2021-03-31 14:24:46 +00:00
|
|
|
<link rel="stylesheet" href="graph.css">
|
2021-03-30 14:30:50 +00:00
|
|
|
</head>
|
2021-03-29 18:49:50 +00:00
|
|
|
|
2021-03-30 14:30:50 +00:00
|
|
|
<body>
|
2021-03-29 18:49:50 +00:00
|
|
|
|
|
|
|
|
2021-03-30 14:30:50 +00:00
|
|
|
<svg id='graph'>
|
|
|
|
<defs>
|
|
|
|
<marker markerHeight="4" markerWidth="4" refY="0" refX="6" viewBox="0 -3 8 6" preserveAspectRatio="none" orient="auto" id="arrowHead" fill="lightgray"><path d="M0,-3L8,0L0,3"></path></marker>
|
|
|
|
<marker markerHeight="4" markerWidth="4" refY="0" refX="6" viewBox="0 -3 8 6" preserveAspectRatio="none" orient="auto" id="arrowHeadSelected"><path d="M0,-3L8,0L0,3" fill="white"></path></marker>
|
|
|
|
</defs>
|
2021-03-29 18:49:50 +00:00
|
|
|
|
2021-03-30 14:30:50 +00:00
|
|
|
</svg>
|
2021-03-29 18:49:50 +00:00
|
|
|
|
2021-04-16 09:15:57 +00:00
|
|
|
<!-- <div id="nodeInfo" class='hidden'>
|
2021-03-31 14:24:46 +00:00
|
|
|
<h2 class='nodeTitle'><a class='nodeHref' target="_blank"></a></h2>
|
|
|
|
<div id='closeInfo'>×</div>
|
|
|
|
<iframe class='nodeContents'></iframe>
|
2021-04-16 09:15:57 +00:00
|
|
|
</div> -->
|
|
|
|
|
|
|
|
<div id="filters">
|
|
|
|
|
2021-03-31 14:24:46 +00:00
|
|
|
</div>
|
2021-03-29 18:49:50 +00:00
|
|
|
|
2021-03-31 14:24:46 +00:00
|
|
|
<script src="https://d3js.org/d3.v6.js"></script>
|
|
|
|
<script src="https://d3js.org/d3-geo-projection.v3.min.js"></script>
|
2021-03-30 14:30:50 +00:00
|
|
|
<script src="https://d3js.org/topojson.v3.min.js"></script>
|
|
|
|
<script src="//unpkg.com/d3-geo-zoom"></script>
|
|
|
|
<script src="graph.js"></script>
|
2021-03-29 18:49:50 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|