Add visualization_tool/index.html

This commit is contained in:
Mika 2026-03-05 15:47:58 +00:00
commit a2afd468e2

View file

@ -0,0 +1,64 @@
<!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="Visualisierung der Δt<0 Analyse in NearExpiryUnpinned Szenarien">
<title>NearExpiryUnpinned Δt Analysis</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="app-header" role="banner">
<h1>NearExpiryUnpinned Δt Analysis</h1>
<nav aria-label="Filter und Navigation">
<form id="filter-form" class="filter-controls" aria-label="Filterformular">
<label for="runTypeSelect">RunTyp:</label>
<select id="runTypeSelect" name="run_type">
<option value="all">Alle</option>
<option value="simulation">Simulation</option>
<option value="experiment">Experiment</option>
</select>
<label for="timeRangeInput">Zeitintervall:</label>
<input type="text" id="timeRangeInput" name="time_range" placeholder="z.B. 20260101 20260131">
<button type="submit">Aktualisieren</button>
</form>
</nav>
</header>
<main>
<section class="results-section results_table" id="results-section" aria-label="Ergebnisübersicht">
<table id="results-table" aria-live="polite">
<thead>
<tr>
<th>RunID</th>
<th>Kategorie</th>
<th>Δt</th>
<th>Zeitstempel</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<!-- Dynamisch per JS befüllt -->
</tbody>
</table>
</section>
<section class="chart-panel" id="chart-panel" aria-label="ΔtVerteilung">
<div class="chart-container">
<!-- Grafische Visualisierung wird hier über JS ergänzt -->
</div>
</section>
</main>
<footer class="app-footer" role="contentinfo">
<p>Datenquelle: APIEndpoint <code>/results</code></p>
<p>ExperimentKey: <strong>near_expiry_unpinned_analysis</strong></p>
<p id="last-update">Letzte Aktualisierung: <span></span></p>
<p>© 2026 Donau2Space.de</p>
</footer>
<script type="module" src="js/app.js"></script>
</body>
</html>