package Astro::FITS::Header::NDF; =head1 NAME Astro::FITS::Header::NDF - Manipulate FITS headers from NDF files =head1 SYNOPSIS use Astro::FITS::Header::NDF; $hdr = new Astro::FITS::Header::NDF( Cards => \@cards ); $hdr = new Astro::FITS::Header::NDF( Items => \@items ); $hdr = new Astro::FITS::Header::NDF( ndfID => $indf ); $hdr = new Astro::FITS::Header::NDF( File => $file ); $hdr->writehdr( $indf ); $hdr->writehdr( File => $file ); =head1 DESCRIPTION This module makes use of the Starlink L module to read and write to an NDF FITS extension or to a C<.HEADER> block in an HDS container file. If the file is found to be an HDS container containing multiple NDFs at the top level, either the .HEADER NDF or the first NDF containing a FITS header is deemed to be the primary header, and all other headers a subsidiary headers indexed by the name of the NDF in the container. It stores information about a FITS header block in an object. Takes an hash as an argument, with either an array reference pointing to an array of FITS header cards, array of C objects, or a filename, or (alternatively) an NDF identifier. Currently, subheader support is readonly. =cut use strict; use Carp; use File::Spec; use NDF qw/ :ndf :dat :err :hds :msg /; use base qw/ Astro::FITS::Header /; use vars qw/ $VERSION /; $VERSION = 3.01; =head1 METHODS =over 4 =item B Reads a FITS header from an NDF. $hdr->configure( Cards => \@cards ); $hdr->configure( ndfID => $indf ); $hdr->configure( File => $filename ); Accepts an NDF identifier or a filename. If both C and C keys exist, C key takes priority. If the file is actually an HDS container, an attempt will be made to read a ".HEADER" NDF inside that container (this is the standard layout of UKIRT (and some JCMT) data files). If an extension is specified explicitly (that is not ".sdf") that path is treated as an explicit path to an NDF. If an explicit path is specified no attempt is made to locate other NDFs in the HDS container. If the NDF can be opened successfully but there is no .MORE.FITS extension, an empty header is returned rather than throwing an error. =cut sub configure { my $self = shift; my %args = @_; my ($indf, $started); my $task = ref($self); return $self->SUPER::configure(%args) if exists $args{Cards} or exists $args{Items}; # Store the definition of good locally my $status = &NDF::SAI__OK; my $good = $status; # Start error system (this may be the first time we hit # starlink) err_begin( $status ); # did we start NDF my $ndfstarted; my $FileName = ""; # Read the args hash if (exists $args{ndfID}) { $indf = $args{ndfID}; # Need to work out the file name ndf_msg( "NDF", $indf ); msg_load( " ", "^NDF", $FileName, my $len, $status ); } elsif (exists $args{File}) { # Remove trailing .sdf my $file = $args{File}; $FileName = $file; $file =~ s/\.sdf$//; # NDF currently (c.2008) has troubles with spaces in paths # we work around this by changing to the directory before # opening the file my ($vol, $dir, $root) = File::Spec->splitpath( $file ); my $cwd; if ($dir =~ /\s/) { # only bother if there is a space $cwd = File::Spec->rel2abs( File::Spec->curdir ); # if the chdir fails we will try to open the file # with NDF anyway using the path. Otherwise we change the # filename to be the root if (chdir($dir)) { $file = $root; } } # Start NDF ndf_begin(); $ndfstarted = 1; # First we need to find whether we have an HDS container or a # straight NDF. Rather than simply trying an ndf_find on both # (which causes leaks in the NDF system circa 2001) we explicitly # open it using HDS unless it has a "." in it. if ($file =~ /\./) { # an NDF ndf_find(&NDF::DAT__ROOT(), $file, $indf, $status); } else { # Try HDS hds_open( $file, 'READ', my $hdsloc, $status); # Find its type dat_type( $hdsloc, my $type, $status); if ($status == $good) { # If we have an NDF we can simply reopen it # Additionally if we have no description of the component # at all we assume NDF. This overcomes a bug in the acquisition # for SCUBA where a blank type field is used. my $ndffile; if ($type =~ /NDF/i || $type !~ /\w/) { $ndffile = $file; } else { # For now simply assume we can find a .HEADER # in future we could tweak this to default to first NDF # it finds if no .HEADER $ndffile = $file . ".HEADER"; $FileName .= ".HEADER"; } # Close the HDS file dat_annul( $hdsloc, $status); # Open the NDF ndf_find(&NDF::DAT__ROOT(), $ndffile, $indf, $status); # reset the directory if (defined $cwd) { chdir($cwd) or carp "Could not return to current working directory"; } } } } else { $status = &NDF::SAI__ERROR; err_rep(' ', "$task: Argument hash does not contain ndfID, File or Cards", $status); } if ($status == $good) { # See if the extension exists ndf_xstat( $indf, "FITS", my $there, $status); if ($status == $good && $there) { # Find the FITS extension ndf_xloc($indf, 'FITS', 'READ', my $xloc, $status); if ($status == $good) { # Variables... my (@dim, $ndim, $nfits, $maxdim); # Get the dimensions of the FITS array # Should only be one-dimensional $maxdim = 7; dat_shape($xloc, $maxdim, @dim, $ndim, $status); if ($status == $good) { if ($ndim != 1) { $status = &SAI__ERROR; err_rep(' ',"$task: Dimensionality of FITS array should be 1 but is $ndim", $status); } } # Set the FITS array to empty my @fits = (); # Note that @fits only exists in this block # Read the FITS extension dat_get1c($xloc, $dim[0], @fits, $nfits, $status); # Annul the locator dat_annul($xloc, $status); # Check status and read into hash if ($status == $good) { # Parse the FITS array $self->SUPER::configure( Cards => \@fits ); } else { err_rep(' ',"$task: Error reading FITS array", $status); } } else { # Add my own message to status err_rep(' ', "$task: Error locating FITS extension", $status); } } elsif ($status != $good) { err_rep(' ', "$task: Error determining presence of FITS extension", $status); } else { # simply is not there but file is okay } # Close the NDF identifier (if we opened it) ndf_annul($indf, $status) if exists $args{File}; } # Shutdown ndf_end($status) if $ndfstarted; # Handle errors if ($status != $good) { my ( $oplen, @errs ); do { err_load( my $param, my $parlen, my $opstr, $oplen, $status ); push @errs, $opstr; } until ( $oplen == 1 ); err_annul($status); err_end( $status ); croak "Error during header read from NDF $FileName:\n" . join "\n", @errs; } err_end($status); # It is possible to annul the errors before exiting if we want # or to flush them out. return; } =item B Write a FITS header to an NDF. $hdr->writehdr( ndfID => $indf ); $hdr->writehdr( File => $file ); Accepts an NDF identifier or a filename. If both C and C keys exist, C key takes priority. Throws an exception (croaks) on error. =cut sub writehdr { my $self = shift; my %args = @_; # Store the definition of good locally my $status = &NDF::SAI__OK; my $good = $status; # Start error system (this may be the first time we hit # starlink) err_begin( $status ); # Indicate whether we have started an NDF context or not my $ndfstarted; # Look in the args hash and open the output file if needed my $ndfid; if (exists $args{ndfID}) { $ndfid = $args{ndfID}; } elsif (exists $args{File}) { my $file = $args{File}; $file =~ s/\.sdf//; # Start NDF ndf_begin(); $ndfstarted = 1; ndf_open(&NDF::DAT__ROOT(), $file, 'UPDATE', 'UNKNOWN', $ndfid, my $place, $status); # If status is bad, try assuming it is a HDS container # with UKIRT style .HEADER component if ($status != $good or $ndfid == 0) { # dont want to contaminate existing status my $lstat = $good; my $hdsfile = $file . ".HEADER"; my $useheader; err_mark(); ndf_open(&NDF::DAT__ROOT(), $hdsfile, 'UPDATE', 'UNKNOWN', $ndfid, $place, $lstat); if ($lstat != $good) { err_annul( $lstat ); } else { $useheader = 1; } err_rlse(); # flush bad global status if we succeeded err_annul($status) if $useheader; } # KLUGE : need to get NDF__NOID from the NDF module at some point if ($ndfid == 0 && $status == $good) { # could create it :-) $status = &NDF::SAI__ERROR; err_rep(' ',"File '$file' does not exist to receive the header", $status); } } else { err_end( $status ); croak "Missing argument to writehdr. Must include either ndfID or File key"; } # Now need to find out whether we have a FITS header in the # file already ndf_xstat( $ndfid, 'FITS', my $there, $status); # delete it ndf_xdel($ndfid, 'FITS', $status) if $there; # Get the fits array my @cards = $self->cards; # Write the FITS extension if ($#cards > -1) { # Write it out my @fitsdim = (scalar(@cards)); ndf_xnew($ndfid, 'FITS', '_CHAR*80', 1, @fitsdim, my $fitsloc, $status); dat_put1c($fitsloc, scalar(@cards), @cards, $status); dat_annul($fitsloc, $status); } # Shutdown ndf_end($status) if $ndfstarted; # Handle errors if ($status != $good) { my @errs; my $oplen; do { err_load( my $param, my $parlen, my $opstr, $oplen, $status ); push @errs, $opstr; } until ( $oplen == 1 ); err_annul($status); err_end($status); croak "Error during header write to NDF:\n" . join "\n", @errs; } err_end($status); return; } =back =head1 NOTES This module requires the Starlink L module. =head1 SEE ALSO L, L, L L =head1 AUTHORS Tim Jenness Et.jenness@jach.hawaii.eduE, Alasdair Allan Eaa@astro.ex.ac.ukE, Brad Cavanagh Eb.cavanagh@jach.hawaii.eduE =head1 COPYRIGHT Copyright (C) 2008-2009 Science & Technology Facilities Council. Copyright (C) 2001-2005 Particle Physics and Astronomy Research Council. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place,Suite 330, Boston, MA 02111-1307, USA =cut 1;