NAME
Astro::FITS::HdrTrans::CGS4 - Translate FITS headers into generic headers and back again
DESCRIPTION
Converts information contained in CGS4 FITS headers to and from generic headers. See Astro::FITS::HdrTrans for a list of generic headers.
REVISION
$Id: CGS4.pm,v 1.19 2003/09/16 02:51:11 bradc Exp $
METHODS
These methods provide an interface to the class, allowing the base class to determine if this class is the appropriate one to use for the given headers.
- valid_class
-
$valid = valid_class( \%headers );This method takes one argument: a reference to a hash containing the untranslated headers.
This method returns true (1) or false (0) depending on if the headers can be translated by this method.
For this class, the method will return true if the INSTRUME header exists, and its value matches the regular expression
/^cgs4/i, or if the INSTRUMENT header exists, and its value matches the regular expression/^cgs4$/i.
TRANSLATION METHODS
These methods provide many-to-one mappings between FITS headers and generic headers. An example of a method defined in this section would be one that converts UT date and UT hour FITS headers into one combined UT datetime generic header. These mappings can also use calculations, for example converting a zenith distance to airmass.
These methods are named backwards from the translate_from_FITS and translate_to_FITS methods in that we are translating to and from generic headers. As an example, a method to convert to a generic airmass header would be named to_AIRMASS.
The format of these methods is to_HEADER and from_HEADER. to_ methods accept a hash reference as an argument and return a scalar value (typically a string). from_ methods accept a hash reference as an argument and return a hash.
- to_INST_DHS
-
Sets the INST_DHS header.
- to_COORDINATE_TYPE
-
Converts the
EQUINOXFITS header into B1950 or J2000, depending on equinox value, and sets theCOORDINATE_TYPEgeneric header. - to_COORDINATE_UNITS
-
Sets the
COORDINATE_UNITSgeneric header to "degrees". - to_POLARIMETRY
-
Checks the
FILTERFITS header keyword for the existance of 'prism'. If 'prism' is found, then thePOLARIMETRYgeneric header is set to 1, otherwise 0. - to_SAMPLING
-
Converts FITS header values in
DETINCRandDETNINCRto a single descriptive string. - to_UTDATE
-
Converts FITS header values into
Time::Pieceobject. - from_UTDATE
-
Converts UT date in
Time::Pieceobject intoyyyymmddformat for IDATE header. - to_UTSTART
-
Converts FITS header UT date/time values for the start of the observation into a
Time::Pieceobject. - from_UTSTART
-
Converts a
Time::Pieceobject into two FITS headers for CGS4: IDATE (in the format YYYYMMDD) and RUTSTART (decimal hours). - to_UTEND
-
Converts FITS header UT date/time values for the end of the observation into a
Time::Pieceobject. - from_UTEND
-
Converts a
Time::Pieceobject into two FITS headers for CGS4: IDATE (in the format YYYYMMDD) and RUTEND (decimal hours). - to_RA_BASE
-
Converts the decimal hours in the FITS header
RABASEinto decimal degrees for the generic headerRA_BASE. - from_RA_BASE
-
Converts the decimal degrees in the generic header
RA_BASEinto decimal hours for the FITS headerRABASE.
VARIABLES
- %hdr
-
Contains one-to-one mappings between FITS headers and generic headers. Keys are generic headers, values are FITS headers.
AUTHOR
Brad Cavanagh <b.cavanagh@jach.hawaii.edu>
COPYRIGHT
Copyright (C) 2003 Particle Physics and Astronomy Research Council. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.