2023-11-26 14:00:23 +01:00
|
|
|
<h2>Hunde:</h2>
|
|
|
|
<ul>
|
|
|
|
<?php foreach ($dogs as $dog) : ?>
|
|
|
|
<li><a href="#<?= $dog ?>"><?= $dog ?></a></li>
|
2023-11-26 10:30:00 +01:00
|
|
|
<?php endforeach; ?>
|
2023-11-26 14:00:23 +01:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
<?php foreach ($dogs as $dog) :
|
|
|
|
|
|
|
|
$results = $results_dogs[$dog];
|
2023-11-26 14:35:28 +01:00
|
|
|
$sdata = [];
|
2023-11-26 14:00:23 +01:00
|
|
|
?>
|
|
|
|
|
|
|
|
<h1 id="<?= $dog; ?>"><?= $dog; ?></h1>
|
|
|
|
|
|
|
|
<button onClick="getElementById('table_<?= $dog ?>').style.display='table'">Tabelle anzeigen</button>
|
|
|
|
<table id="table_<?= $dog ?>" class="table" style="display:none">
|
|
|
|
<tr>
|
|
|
|
<th>event</th>
|
|
|
|
<th>Wann wars</th>
|
|
|
|
<th>run</th>
|
|
|
|
<th>rang</th>
|
|
|
|
<th>stnr</th>
|
|
|
|
<th>teilnehmer</th>
|
|
|
|
<th>hund</th>
|
|
|
|
<th>verein</th>
|
|
|
|
<th>f</th>
|
|
|
|
<th>vw</th>
|
|
|
|
<th>zf</th>
|
|
|
|
<th>zeit</th>
|
|
|
|
<th>gf</th>
|
|
|
|
<th>msek</th>
|
|
|
|
<th>bew</th>
|
|
|
|
<th>punkte</th>
|
|
|
|
</tr>
|
|
|
|
<?php foreach ($results as $res) :
|
|
|
|
// graph data preparation
|
|
|
|
|
2023-11-29 13:53:05 +01:00
|
|
|
if ($res['bew'] != 'DIS' && $res['punkte'] != 'DIS') {
|
2023-11-26 14:00:23 +01:00
|
|
|
$sdata['dates'][] = date("d.m.Y", strtotime($res['date']));
|
|
|
|
$sdata['speed'][] = $res['msek'] ?: 0;
|
|
|
|
$sdata['errors'][] = $res['f'] ?: 0;
|
|
|
|
$sdata['refusals'][] = $res['vw'] ?: 0;
|
|
|
|
$sdata['time'][] = $res['zeit'] ?: 0;
|
|
|
|
$sdata['points'][] = $res['punkte'];
|
|
|
|
$sdata['ranking'][] = $res['rang'];
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td><?= $res['event'] ?></td>
|
|
|
|
<td><?= $res['ago'] ?></td>
|
|
|
|
<td><?= $res['run'] ?></td>
|
|
|
|
<td><?= $res['rang'] ?></td>
|
|
|
|
<td><?= $res['stnr'] ?></td>
|
|
|
|
<td><?= $res['teilnehmer'] ?></td>
|
|
|
|
<td><?= $res['hund'] ?></td>
|
|
|
|
<td><?= $res['verein'] ?></td>
|
|
|
|
<td><?= $res['f'] ?></td>
|
|
|
|
<td><?= $res['vw'] ?></td>
|
|
|
|
<td><?= $res['zf'] ?></td>
|
|
|
|
<td><?= $res['zeit'] ?></td>
|
|
|
|
<td><?= $res['gf'] ?></td>
|
|
|
|
<td><?= $res['msek'] ?></td>
|
|
|
|
<td><?= $res['bew'] ?></td>
|
|
|
|
<td><?= $res['punkte'] ?></td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</table>
|
|
|
|
|
2023-11-29 13:53:05 +01:00
|
|
|
<div class="row">
|
|
|
|
<?php if (count($results) > 0) : ?>
|
|
|
|
<div class="col">
|
|
|
|
<?= partial('graph.html.php', [
|
|
|
|
'id' => 'graph1'.$dog,
|
|
|
|
'title' => 'Fehler und Verweigerungen',
|
|
|
|
'xaxis' => $sdata['dates'],
|
|
|
|
'seriesdata' => [
|
|
|
|
['name' => 'Fehler', 'type' => 'line', 'stack' => 'Total', 'data' => $sdata['errors']],
|
|
|
|
['name' => 'Verweigerungen', 'type' => 'line', 'stack' => 'Total', 'data' => $sdata['refusals']],
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|
2023-11-26 14:00:23 +01:00
|
|
|
|
2023-11-29 13:53:05 +01:00
|
|
|
<div class="col">
|
|
|
|
<?= partial('graph.html.php', [
|
|
|
|
'id' => 'graph2'.$dog,
|
|
|
|
'title' => 'Geschwindigkeit',
|
|
|
|
'xaxis' => $sdata['dates'],
|
|
|
|
'seriesdata' => [
|
|
|
|
['name' => 'Geschwindigkeit', 'type' => 'line', 'stack' => 'Total', 'data' => $sdata['speed']],
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|
2023-11-26 14:00:23 +01:00
|
|
|
|
2023-11-29 13:53:05 +01:00
|
|
|
<div class="col">
|
|
|
|
<?= partial('graph.html.php', [
|
|
|
|
'id' => 'graph3'.$dog,
|
|
|
|
'title' => 'Platzierung',
|
|
|
|
'xaxis' => $sdata['dates'],
|
|
|
|
'seriesdata' => [
|
|
|
|
['name' => 'Platzierung', 'type' => 'line', 'stack' => 'Total', 'data' => $sdata['ranking']],
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-11-26 14:00:23 +01:00
|
|
|
|
2023-11-29 13:53:05 +01:00
|
|
|
<?php endif; ?>
|
2023-11-26 14:00:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<?php endforeach; ?>
|