#!/bin/perl -w #+ # ospeclog -- generate logsheet data from image headers # # Purpose: # Given a list of images, parse the image headers and print # out a formatted list of data. With no arguments, parse all of # the images in the current directory. # # Usage: # ospeclog [n | images] # # Arguments: # n = number of latest images to parse. # images = names of images to parse. If no images are listed, # then all images in the current directory will be read # (EXCEPT for backup.fits). # # Output: # to STDOUT # # Restrictions # None # # Note: # The output from this program is extra wide. To print it, use # this command: # enscript -1r -c -f Courier9 -P lw4s # # Exit values: # 0 = normal completion # 1 = wrong number of arguments # # Example: # 1) Generate log data for all images in the current directory: # ospeclog # # ) Generate log data for the last 5 images in the current directory: # ospeclog 5 # # 3) Generate log data for all images in the directory # /s/sdata1001/deimos1/2003jan01: # ospeclog /s/sdata1001/deimos1/2003jan01/*.fits #- # Modification history: # 2002-Dec-30 GDW Original version (deeplog) # 2003-Aug-27 GDW Changed TTIME to EXPTIME # 2004-Oct-10 GDW Added "last n images" option # 2004-Nov-09 jlyke Adapted for NIRSPEC use (nspeclog) # 2005-Sep-09 jlyke Adapted for NIRC2 use (nirc2log) # 2005-Oct-18 jlyke Adapted for OSIRIS imager use (osimglog) #----------------------------------------------------------------------- use File::Basename; # declarations... $| = 1; my( $observers, $date, $directory); my( @images); my( $i, $j); my( $m, $n, $title_format); my( %HeadValue); my( $null) = 'INDEF'; my( $Pi) = atan2(1,1)*4; my( $r2a) = 206264.8; my( $thresh) = 0.001; # define logsheet fields... &AddColumn( 'DATAFILE', 'File', '%-15s '); #&AddColumn( 'OBJECT', 'Object', '%-17s '); &AddColumn( 'TARGNAME', 'Object', '%-17s '); &AddColumn( 'UTC', 'UTC', '%-12s '); &AddColumn( 'AIRMASS', ' AM', '%5.2f '); &AddColumn( 'ITIME', 'Tint', '%7.2f '); &AddColumn( 'COADDS', 'Coadd', '%5s '); &AddColumn( 'SSCALE', 'Scale', '%5.3f '); &AddColumn( 'SFILTER', 'Filter', '%-4s '); &AddColumn( 'PONAME','PO', '%6s '); &AddColumn( 'PA_SPEC','PA', '%5.1f '); &AddColumn( 'LSPROP', 'Laser', '%5s '); &AddColumn( 'WSFRRT', 'WFS Rate', '%8s '); &AddColumn( 'ISSKY', 'Sky', '%4s '); &AddColumn( 'COMMENT', 'Comments', '%-25s '); # check args... die "Usage: $0 [images]\n" if ( @ARGV < 0 ); # build default image list... @images = glob("*.fits*"); # expunge bad filenames from image list. # NOTE: that we traverse the list BACKWARDS because we are removing elements from the list as we go... for ( $i=@images-1 ; $i>=0 ; $i--){ if( ($images[$i] =~ m/backup.fits/) or # remove backup files ($images[$i] =~ m/^cam/) or # remove cam files not ($images[$i] =~ m/.fits$/ or $images[$i] =~ m/.fits.gz$/)){ splice( @images, $i, 1) } } # sort images by dataset number # format is syymmdd_s001002.fits where "001" is the dataset number for ( $i=0 ; $i < @images ; $i++){ $images[$i] =~ m/^.*_.(\d\d\d).*$/; $setnum[$i] = $1; $dataset{$images[$i]} = $setnum[$i]; } @images = sort bysetnum @images; # parse args... if ( @ARGV == 1 and $ARGV[0] =~ /^\d+$/ ) { $m = $ARGV[0]; if ( $m > @images ) { $m = scalar(@images) }; $m = -$m; @images = @images[ $m .. -1 ]; # extract last $m elements of image list } elsif ( @ARGV > 0 ) { @images = @ARGV; } # verify number of images... die "ERROR: No images found\n" unless @images; # get some information from the first OSIRIS imager image... #for( $i=0 ; $i < @images ; $i++){ # %HeadValue = &GetFitsHead( $images[$i]); # last if (defined($HeadValue{'CURRINST'}) # and $HeadValue{'CURRINST'} =~ m/^OSIRIS/) # #die "ERROR: No OSIRIS imager images found\n" # unless $HeadValue{'CURRINST'} =~ m/^OSIRIS/; # print header... printf "\n"; printf "%-72s", "Project:"; printf "UT Date: %s", &BlankIfUndef($HeadValue{"DATE-OBS"}); printf "\n"; printf "%-72s", "Observers: " . &BlankIfUndef($HeadValue{"OBSERVER"}); printf "Weather:"; printf "\n"; printf "%-72s", "Data directory: " . &BlankIfUndef($HeadValue{"OUTDIR"}); printf "Seeing:"; printf "\n"; printf "\n"; $line = ''; for ( $i=0 ; $i<@X::keyword ; $i++ ) { $X::format[$i] =~ m/^%-?(\d+)/; $n = $1; $X::format[$i] =~ m/(\s+)$/; $space = $1; $buf = sprintf "%-${n}s$space", $X::title[$i]; print $buf; $buf =~ s/./_/g; $line .= $buf; } printf "\n"; printf "$line\n"; # set initial values of object and telescope offsets $Object = ""; $Filter = ""; $RaBase = 0.00; $DecBase = 0.00; $Time = 0.0; $Itime = 0.0; $Coadds = 0; # loop over images... for ( $j=0 ; $j<@images ; $j++ ) { # read image header... %HeadValue = &GetFitsHead( $images[$j]); # skip non-OSIRIS images... # next unless (defined($HeadValue{'CURRINST'}) # and $HeadValue{'CURRINST'} =~ m/^OSIRIS/); # build filename field... $HeadValue{'DATAFILE'} = (fileparse( $images[$j], '\..*'))[0]; # read some keywords to adapt the printed values # $NewObj = $HeadValue{'OBJECT'}; $NewObj = $HeadValue{'TARGNAME'}; $NewFilt = $HeadValue{'SFILTER'}; # If UTC is in header, collect some more dcs keywords if ( defined($HeadValue{'UTC'}) ) { $UTC = &ConvertTime( $HeadValue{'UTC'}); # $Ra = $HeadValue{'RA'}; $Dec = $HeadValue{'DEC'}; $RaOff = $HeadValue{'RAOFF'} * $r2a; $DecOff = $HeadValue{'DECOFF'} * $r2a; } if ( defined($HeadValue{'AODTSTAT'}) ) { $ttStat = $HeadValue{'AODTSTAT'}; } else { $ttStat = "unk"; } if ( defined($HeadValue{'AODMSTAT'}) ) { $dmStat = $HeadValue{'AODMSTAT'}; } else { $dmStat = "unk"; } if ( $NewObj ne $Object ) { $Comment = "New Object"; } elsif ( $NewFilt ne $Filter ) { $Comment = "New Filter"; } else { $RaDith = ($RaOff - $RaBase)*cos($Pi/180.*$Dec); $DecDith = $DecOff - $DecBase; # print "$RaDith, $DecDith\n"; if ( ($RaDith != 0.) || ($DecDith != 0.) ) { # $DitherSize = 3600.*sqrt(($RaDith*cos($Pi/180.*$Dec))**2 + $DecDith**2); # print "$RaDith, $DecDith\n"; # Setup the comment # Option 1 is raoff, decoff $Comment = "en " . sprintf("%7.3f", $RaDith) . " " . sprintf("%7.3f", $DecDith) . "\""; # Option 2 is the combined dither size and time it took # $Comment = "Dith\: " . sprintf("%.2f", $TimeDiff) . "s " . sprintf("%.2f", $DitherSize) . "\""; # $Comment = "Dither\: " . sprintf("%.2f", $TimeDiff); } else { # When no dither option 1 states "No Dither" $Comment = ""; # Option 2 also prints the time between images # $Comment = "No Dith\: " . sprintf("%.2f", $TimeDiff) . "s "; } } # set the comment field $HeadValue{$X::keyword[$#keyword]} = $Comment; # reset variables for next time thru $Object = $NewObj; $Filter = $NewFilt; $RaBase = $RaOff; $DecBase = $DecOff; $Time = $UTC; $Itime = $HeadValue{'ITIME'}; $Coadds = $HeadValue{'COADDS'}; # don't print out dm frame rate if loops open if ( $dmStat =~ /open/ && $ttStat =~ /open/ ) { $Rate = "open"; } elsif ( $dmStat =~ /open/ ) { $Rate = "T/T"; } else { $Rate = $HeadValue{'WSFRRT'}; } $HeadValue{$X::keyword[$#keyword-2]} = $Rate; # handle missing SSCALE header keyword... unless ( defined($HeadValue{'SSCALE'}) ) { $HeadValue{$X::keyword[$#keyword-7]} = $HeadValue{'SS1NAME'}; } # print results... for ( $i=0 ; $i<@X::keyword ; $i++ ) { if ( defined $HeadValue{$X::keyword[$i]} and $HeadValue{$X::keyword[$i]} ne $null ){ $HeadValue{$X::keyword[$i]} =~ s/^\s+//; # remove leading whitespace $HeadValue{$X::keyword[$i]} =~ s/\s+$//; # remove trailing whitespace printf $X::format[$i], $HeadValue{$X::keyword[$i]} } else { $X::format[$i] =~ m/^%-?(\d+)/; $n = $1; if ( not defined $HeadValue{$X::keyword[$i]}){ $buf = '?' } else { $buf = '' } printf "%-${n}s ", $buf; } } printf "\n"; } #----------------------------------------------------------------------- sub GetFitsHead { #----------------------------------------------------------------------- # get file name to read header from my $infile = shift; my( $excess, $comment); # reset output hashes to null my %HeadValue = (); my %HeadComment = (); # open the file with a shared lock to prevent it being modified # during reading... open TEST, "<$infile"; flock TEST, 1; # open input file using appropriate method... if ($infile =~ /\.gz$/i) { open INFITS, "gunzip --stdout $infile |"; $| = 1; # enable autoflush on gunzip output } else { open INFITS, $infile; } # initialize input variable to allow for end-of-header trapping $headline = " "; # loop thru FITS file 80 bytes at a time until end-of-header mark found until (substr($headline,0,3) eq "END") { read INFITS, $headline, 80 or die "unexpected end of file on read"; chomp($headline); # identify keyword name from first 8 bytes $name = substr($headline, 0, 8); $rest = substr($headline,9); # strip extra spaces off of keyword names $name =~ s/\s//g; # test if value is a string, handle single quotes if it is if (substr($rest,0,2) eq " '") { $lastquote = index($rest, "'", 2); $value = substr($rest,2,$lastquote-2); ($excess, $comment) = split (/\//, substr($rest, $lastquote)); } else { # otherwise split value from comment using / separator ($value, $comment) = split (/\//, $rest); $value =~ s/\s//g; } # add next value and comment to respective hashes unless ($name eq "END" or $name eq "") { $HeadValue{$name} = $value; $HeadComment{$name} = $comment; } } # close input FITS file close INFITS; close TEST; return %HeadValue; } #----------------------------------------------------------------------- sub AddColumn { #----------------------------------------------------------------------- my( $keyword, $title, $format) = @_; push( @X::keyword, $keyword); push( @X::title, $title); # push( @X::alt, $alt); push( @X::format, $format); } #----------------------------------------------------------------------- sub BlankIfUndef { #----------------------------------------------------------------------- my( $value) = @_; if( defined $value){ return $value } else { return '' } } #----------------------------------------------------------------------- sub ConvertTime { #----------------------------------------------------------------------- my( $value) = @_; if( defined $value){ @t = split /:/, $value, 3; # limit of 3 (h,m,s) $time = 3600.*$t[0] + 60.*$t[1] + $t[2]; return $time; } else { return 0.0; } } #----------------------------------------------------------------------- sub bysetnum { #----------------------------------------------------------------------- $dataset{$a} <=> $dataset{$b}; }