Here you can find the latest NOAA satellite pictures received at JN48OQ
Please select one day from list below - to return to this page, simply close the new tab.
{source}
</script>
<ul>
<?php
$files = array();
$files = glob('/var/www/web4/html/NOAA/NOAA/*', GLOB_ONLYDIR );
usort($files, function($a, $b) {
// return filemtime($a) < filemtime($b);
return ($a) < ($b);
});
foreach ($files as &$aFile) {
$elements=explode("/", $aFile);
$date = $elements[count($elements) - 1];
if ( $date != "@eaDir") {

$href = "https://noaa.dl2sba.com/showFiles4Date.php?folder=".$date;


echo "<li><a target='_new' href='$href' >$date</a></li>";
}
}
?>
</ul>
{/source}