Here are the last hour pictures from the new black-and-white camera, at the field station.
This page is
updated every hour, when a new hour picture comes from the station.
The black-and-white camera is a WAT-902H from Watec. It has a sensivity of 0.0003 lux.
It was set in operation 19.June 2003.
The Hessdalen AMS was stopped on the 7.November 2003 because of failure.
It will be installed after the failure is repaired.
#!/usr/bin/perl -w
require "config.inc";
my $dir = &dir_prefix . "sh-hourly";
$| = 1;
printf "Content-Type: text/html\n\n";
my( $file, @files, $i);
opendir(DIR, "$dir") || die "Error: opening $dir.\n";
@files = reverse(sort(readdir(DIR)));
printf " \n";
printf <\n\n";
}
print_html_link( $file );
$i++;
}
}
printf " \n";
closedir(DIR);
sub print_html_link {
my $file = $_[0];
my ($year, $month, $day, $hour, $minute, $second);
($year, $month, $day, $hour, $minute, $second) = $file =~ /^hourly-(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})\.jpg$/;
print "\t | ";
print "";
print "Hourly $hour:$minute:$second $day.$month.$year";
print "";
print " | \n";
}