wlan_sternenhimmel_ilzstausee/data_visualization/index.html

50 lines
No EOL
1.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Echtzeit-Heatmap zur Darstellung von WLAN-Signalstärken am Ilzstausee">
<title>WLAN Heatmap Ilzstausee</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="app-shell">
<header class="app-header" role="banner">
<h1>WLAN-Heatmap Ilzstausee</h1>
<nav aria-label="Hauptsteuerung">
<form class="filter-form" aria-label="Filteroptionen">
<label for="freq-filter">Frequenzband:</label>
<select id="freq-filter" name="frequency">
<option value="all">Alle</option>
<option value="2.4">2.4 GHz</option>
<option value="5">5 GHz</option>
</select>
<button type="button" id="refresh-button" aria-label="Daten aktualisieren">Aktualisieren</button>
</form>
</nav>
</header>
<main class="app-main heatmap-panel" role="main">
<div id="map" class="heatmap-container" aria-label="Heatmap-Darstellung der WLAN-Signalstärken"></div>
</main>
<aside class="sidebar stats-panel" role="complementary" aria-label="Statistikbereich">
<h2>Signal-Statistiken</h2>
<ul id="stats-list">
<li>Durchschnittlicher RSSI: <span id="avg-rssi"></span></li>
<li>Stärkster Empfang: <span id="max-rssi"></span></li>
<li>Schwächster Empfang: <span id="min-rssi"></span></li>
<li>2.4GHz Netze: <span id="count-24"></span></li>
<li>5GHz Netze: <span id="count-5"></span></li>
</ul>
</aside>
<footer class="app-footer" role="contentinfo">
<p>© 2026 Donau2Space.de WLAN-Datenvisualisierung Ilzstausee</p>
<p>Messzeitraum: Laufender Echtzeitbetrieb</p>
</footer>
</div>
<script type="module" src="js/app.js"></script>
</body>
</html>