Here are the last alarm pictures from the new black-and-white camera at the field station.
This page is updated whenever a new alarm picture comes from the station. Most of these
pictures are false alarms, which means that a solution is found at once.
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-alarm";
$| = 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 =~ /^alarm-(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})\.jpg$/;
print "\t | ";
print "";
print "Alarm $hour:$minute:$second $day.$month.$year";
print "";
print " | \n";
}