kiesel_atmung_experiment/data_visualization/index.html

57 lines
No EOL
2 KiB
HTML
Raw Permalink 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">
<title>Kiesel-Atmung Experiment Datenvisualisierung</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="app-header">
<h1>Kiesel-Atmung Datenvisualisierung</h1>
<p>Untersuchung nächtlicher Temperaturpulse und akustischer Muster</p>
</header>
<section class="filter-panel app-sidebar" aria-label="Filter für Messreihen">
<form id="filter-form">
<fieldset>
<legend>Messdatenfilter</legend>
<label for="sensorType">Sensortyp:</label>
<select id="sensorType" name="sensorType">
<option value="">Alle</option>
<option value="temperature">Temperatur</option>
<option value="audio">Audio</option>
</select>
<label for="timeRange">Zeitraum:</label>
<input type="date" id="timeRangeStart" name="timeRangeStart" aria-label="Startdatum">
<input type="date" id="timeRangeEnd" name="timeRangeEnd" aria-label="Enddatum">
<button type="submit">Anwenden</button>
</fieldset>
</form>
</section>
<main class="chart-area app-main" aria-labelledby="charts-title">
<h2 id="charts-title">Messdaten</h2>
<section id="temperature-chart" class="chart-section" aria-label="Temperaturverlauf"></section>
<section id="audio-chart" class="chart-section" aria-label="Audiointensität"></section>
</main>
<div class="chart-legend" aria-label="Legende der Diagramme">
<ul>
<li><span class="legend-color legend-color--temp"></span>Temperatur</li>
<li><span class="legend-color legend-color--audio"></span>Audiointensität</li>
</ul>
</div>
<footer class="app-footer">
<p>Quelle: Live-Daten /data API</p>
<p id="last-update">Letzte Aktualisierung: <time datetime="">--:--</time></p>
<p id="api-status">API-Status: <span>unbekannt</span></p>
<p>© 2026 Donau2Space.de</p>
</footer>
<script type="module" src="js/app.js"></script>
</body>
</html>