Add data_visualization/index.html
This commit is contained in:
commit
ee574d8802
1 changed files with 53 additions and 0 deletions
53
data_visualization/index.html
Normal file
53
data_visualization/index.html
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
<!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="Donau2Space Experiment Dashboard zur Visualisierung von Umweltdaten und Bildanalyseergebnissen." />
|
||||||
|
<title>Donau2Space Experiment Dashboard</title>
|
||||||
|
<link rel="stylesheet" href="css/styles.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="app-header" role="banner">
|
||||||
|
<h1>Donau2Space Experiment Dashboard</h1>
|
||||||
|
<nav aria-label="Hauptnavigation">
|
||||||
|
<ul class="nav-list">
|
||||||
|
<li><button type="button" class="nav-button" data-view="data">Daten</button></li>
|
||||||
|
<li><button type="button" class="nav-button" data-view="images">Bilder</button></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<section id="data-section" class="data-panel" aria-labelledby="data-panel-heading">
|
||||||
|
<h2 id="data-panel-heading">Umweltdaten</h2>
|
||||||
|
<form class="data-filters" aria-label="Filter für Datenanzeige">
|
||||||
|
<label for="time-range">Zeitraum:</label>
|
||||||
|
<select id="time-range" name="time_range">
|
||||||
|
<option value="24h">Letzte 24 Stunden</option>
|
||||||
|
<option value="7d">Letzte 7 Tage</option>
|
||||||
|
<option value="30d">Letzte 30 Tage</option>
|
||||||
|
</select>
|
||||||
|
<label for="sensor-select">Sensor:</label>
|
||||||
|
<select id="sensor-select" name="sensor_id">
|
||||||
|
<option value="all">Alle Sensoren</option>
|
||||||
|
</select>
|
||||||
|
</form>
|
||||||
|
<div class="chart-container" aria-live="polite"></div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id="image-gallery" class="image-gallery" aria-labelledby="image-gallery-heading">
|
||||||
|
<h2 id="image-gallery-heading">Bildanalyse</h2>
|
||||||
|
<div class="gallery-grid" aria-live="polite"></div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="app-footer" role="contentinfo">
|
||||||
|
<p>Hardware und Datenquelle: Donau2Space Langzeitbelichtungsmodul</p>
|
||||||
|
<p>Lizenz: Frei nutzbar für wissenschaftliche Zwecke</p>
|
||||||
|
<p>© 2026 Donau2Space.de</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script type="module" src="js/app.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in a new issue