Here you can find the last spots for DL2SBA on each band within the last day and the all time farest spots.
{tab all time farest}
{source}
<?php
$string = file_get_contents("http://filderpower.de/wsprdata/data/AllTimeFarest.json");
$json_a = json_decode($string, true);
echo "<table>";
echo "<tr><th width=100px>Reporter</th><th width=70px>Band</th><th width=80px>Distance</th></tr>";
foreach ($json_a as $key => $value) {
echo "<tr><td>" . $value['reporter'] . "</td><td>" . $value['band'] . "</td><td align='right'>" . $value['distance'] . " km</td></tr>";
}
echo "</table>";
?>
{/source}
{tab 60m}
{source}
<?php
$string = file_get_contents("http://filderpower.de/wsprdata/data/LastSpots60.json");
$json_a = json_decode($string, true);
echo "<table>";
echo "<tr><th width=180px>Time (UTC)</th><th width=100px>Reporter</th><th width=70px>Band</th><th width=100px>Frequency</th><th align='right' width=80px>Distance</th><th align='right' width=80px>SNR</th></tr>";
foreach ($json_a as $key => $value) {
echo "<tr><td>" . $value['time'] . "</td><td>" . $value['reporter'] . "</td><td>" . $value['band'] . "</td><td>" . $value['frequency']. " Hz</td><td align='right'>" . $value['distance'] . " km</td><td align='right'>" . $value['snr'] . " dB</td></tr>";
}
echo "</table>";
?>
{/source}
{tab 40m}
{source}
<?php
$string = file_get_contents("http://filderpower.de/wsprdata/data/LastSpots40.json");
$json_a = json_decode($string, true);
echo "<table>";
echo "<tr><th width=180px>Time (UTC)</th><th width=100px>Reporter</th><th width=70px>Band</th><th width=100px>Frequency</th><th align='right' width=80px>Distance</th><th align='right' width=80px>SNR</th></tr>";
foreach ($json_a as $key => $value) {
echo "<tr><td>" . $value['time'] . "</td><td>" . $value['reporter'] . "</td><td>" . $value['band'] . "</td><td>" . $value['frequency']. " Hz</td><td align='right'>" . $value['distance'] . " km</td><td align='right'>" . $value['snr'] . " dB</td></tr>";
}
echo "</table>";
?>
{/source}
{tab 30m}
{source}
<?php
$string = file_get_contents("http://filderpower.de/wsprdata/data/LastSpots30.json");
$json_a = json_decode($string, true);
echo "<table>";
echo "<tr><th width=180px>Time (UTC)</th><th width=100px>Reporter</th><th width=70px>Band</th><th width=100px>Frequency</th><th align='right' width=80px>Distance</th><th align='right' width=80px>SNR</th></tr>";
foreach ($json_a as $key => $value) {
echo "<tr><td>" . $value['time'] . "</td><td>" . $value['reporter'] . "</td><td>" . $value['band'] . "</td><td>" . $value['frequency']. " Hz</td><td align='right'>" . $value['distance'] . " km</td><td align='right'>" . $value['snr'] . " dB</td></tr>";
}
echo "</table>";
?>
{/source}
{tab 20m}
{source}
<?php
$string = file_get_contents("http://filderpower.de/wsprdata/data/LastSpots20.json");
$json_a = json_decode($string, true);
echo "<table>";
echo "<tr><th width=180px>Time (UTC)</th><th width=100px>Reporter</th><th width=70px>Band</th><th width=100px>Frequency</th><th align='right' width=80px>Distance</th><th align='right' width=80px>SNR</th></tr>";
foreach ($json_a as $key => $value) {
echo "<tr><td>" . $value['time'] . "</td><td>" . $value['reporter'] . "</td><td>" . $value['band'] . "</td><td>" . $value['frequency']. " Hz</td><td align='right'>" . $value['distance'] . " km</td><td align='right'>" . $value['snr'] . " dB</td></tr>";
}
echo "</table>";
?>
{/source}
{tab total spots}
{source}
<?php
$string = file_get_contents("http://filderpower.de/wsprdata/data/SpotsPerBand.json");
$json_a = json_decode($string, true);
echo "<table>";
echo "<tr><th width=70px>Band</th><th align='right' width=100px>Count<th></tr>";
foreach ($json_a as $key => $value) {
echo "<tr><td align='right'>" . $value['bnd'] . "</td><td align='right'>" . $value['cnt'] . "</td></tr>";
}
echo "</table>";
?>
{/source}
{tab P02}
{source}
<?php
$string = file_get_contents("http://filderpower.de/wsprdata/data/P02.json");
$json_a = json_decode($string, true);
echo "<table>";
echo "<tr><th width=60px>Call</th><th align='right' width=80px>max. Entf.</th><th align='right' width=80px>Durch. Entf.</th><th align='right' width=80px>Anz. Spots</th><th align='right' width=150px>erster Spot</th><th align='right' width=150px>letzter Spot</th></tr>";
foreach ($json_a as $key => $value) {
echo "<tr><td align='right'>" . $value['transmitter'] . "</td><td align='right'>" . $value['max. Entf.'] . "</td><td align='right'>" . $value['Durch. Entf.'] . "</td><td align='right'>" . $value['Anz. Spots'] . "</td><td align='right'>" . $value['erster Spot'] . "</td><td align='right'>" . $value['letzter Spot'] . "</td></tr>";
}
echo "</table>";
?>
{/source}
Spots < 100km not evaluated!
{/tabs}