Add visualization_tool/index.html
This commit is contained in:
commit
a2afd468e2
1 changed files with 64 additions and 0 deletions
64
visualization_tool/index.html
Normal file
64
visualization_tool/index.html
Normal 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 Near‑Expiry‑Unpinned Szenarien">
|
||||||
|
<title>Near‑Expiry‑Unpinned Δt Analysis</title>
|
||||||
|
<link rel="stylesheet" href="css/style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="app-header" role="banner">
|
||||||
|
<h1>Near‑Expiry‑Unpinned Δt Analysis</h1>
|
||||||
|
<nav aria-label="Filter und Navigation">
|
||||||
|
<form id="filter-form" class="filter-controls" aria-label="Filterformular">
|
||||||
|
<label for="runTypeSelect">Run‑Typ:</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. 2026‑01‑01 – 2026‑01‑31">
|
||||||
|
|
||||||
|
<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>Run‑ID</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="Δt‑Verteilung">
|
||||||
|
<div class="chart-container">
|
||||||
|
<!-- Grafische Visualisierung wird hier über JS ergänzt -->
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="app-footer" role="contentinfo">
|
||||||
|
<p>Datenquelle: API‑Endpoint <code>/results</code></p>
|
||||||
|
<p>Experiment‑Key: <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>
|
||||||
Loading…
Reference in a new issue