-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (46 loc) · 2.18 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MoranPlot Dashboard</title>
<link rel="icon" href="images/icon.svg">
<link crossorigin="anonymous" type="text/css" rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" defer />
<!-- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous"> -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<!-- <div id="logo-container">
<i id="logo-icon" class="fas fa-globe-americas"></i>
<span id="logo-text">MoranPlot Dashboard</span>
</div>
<div id="links-container">
<a href="https://github.com/episphere/moranplot"><i class="fa-brands fa-github"></i> </a>
</div> -->
<div id="main-header">
<div id="logo-container">
<i id="logo-icon" class="fas fa-globe-americas"></i>
<span id="logo-text">MoranPlot Dashboard</span>
</div>
<div id="links-container">
<a title="Preprint" href="https://arxiv.org/abs/2408.02418"><i class="fas fa-scroll"></i></a>
<a title="GitHub repo" href="https://github.com/episphere/moranplot"><i class="fa-brands fa-github"></i> </a>
<i title="Observable Notebook" class="fa-solid observable-logo" target="_blank" onclick="window.open('https://observablehq.com/@siliconjazz/moranplot-overview', '_blank');"></i>
</div>
</div>
<div id="info-header">Demonstration of three new plot designs for the Local Moran's I spatial statistic. Try interacting! </div>
</header>
<div id="content">
<div id="dashboard">
<div id="data-info">Age-adjusted cancer mortality in the US, 2011-2022, CDC.</div>
<div id="left">
<div id="network-container"></div>
<div id="dual-container"></div>
</div>
<div id="map-container"></div>
</div>
</div>
<script src="src/dashboard.js" type="module"></script>
</html>