-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgw.html
95 lines (75 loc) · 3.11 KB
/
gw.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>eXdb: Particle Physics Experiment Database</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Chart.js library -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="table_style.css">
</head>
<body>
<header>
<div class="header">
<div class="logo-container">
<img src="images/logos/exdb_logo.png" alt="xDB Logo", align="left">
</div>
<div class="title-container">
<h1>The Particle Physics Experiments Database</h1>
<h4>[Work in Progress]</h4>
</div>
</div>
</header>
<div class="header">
<nav>
<p><a href="experiments.html">All Experiments</a></p>
<p><a href="fixed_target.html">I: Fixed Target </a></p>
<p><a href="passive_det.html">II: Neutrino Observatories & DM Direct Detectors</a></p>
<p><a href="reactors.html">III: Reactors </a></p>
<p><a href="gw.html">IV: Gravitational Waves & Haloscopes</a></p>
<p><a href="colliders.html">V: Collider Experiments</a></p>
</nav>
</div>
<p>
Here we collect gravitational wave experiments. <b>Hover over experiment names for more information.</b>
</p>
<p style="font-style: italic;">
Disclaimer: This table is maintained individually and supported by community feedback.
The information within is sourced only by public references. Please check the source references for the most accurate representation of the aggregate information.
To suggest corrections or provide new data, see contact information at the bottom of the page.
</p>
<input type="text" id="search" placeholder="Search experiments...">
<h2 id="tableTitle_gw" align="center">IV: Gravitational Wave and Haloscope Experiments</h2>
<table id="gwTable">
<thead>
<tr id="tableHeader_gw"></tr>
</thead>
<tbody></tbody>
</table>
<!-- Call the external buildTable function -->
<script src="buildTable.js"></script>
<script>
// Build table
let visible_columns_gw = ["Class", "Signals of Interest", "Length Scale (km)", "Technology",
"Frequency Band (Hz)", "Minimum Strain Sensitivity (1/Hz^1/2)", "Minimum Strain Sensitivity (h^2 Ω_GW)",
"Location", "Status", "Reference", "Open Data", "Anomalies?"];
buildTable(visible_columns_gw, "data/gw.json", "gwTable", "tableTitle_gw");
</script>
<br>
<br>
<h2 align="center">Community Feedback and Contact</h4>
<p align="center">
To contact the owner for any corrections, improvements or feedback please email:
</p>
<p align="center">
a.thompson AT northwestern DOT edu
</p>
<h2>About the data</h2>
<p>
Link to JSON: <a href="data/gw.json">gw.json</a>
</p>
<br>
<br>
</body>
</html>