casacore
|
#include <FITSKeywordUtil.h>
Static Public Member Functions | |
static FitsKeywordList | makeKeywordList (Bool primHead=True, Bool binImage=True) |
Make an initial FitsKeywordList for either a FITS primary header or a FITS extension header (image or table). More... | |
static Bool | addKeywords (FitsKeywordList &out, const RecordInterface &in) |
Add the fields from in to the out FitsKeywordList as keywords. More... | |
static Bool | getKeywords (RecordInterface &out, ConstFitsKeywordList &in, const Vector< String > &ignore, Bool ignoreHistory=True) |
Extract keywords from in and define them in out. More... | |
static void | removeKeywords (RecordInterface &out, const Vector< String > &ignore) |
Remove some keywords from a record. More... | |
static Bool | fromTDIM (IPosition &shape, const String &tdim) |
Convert a TDIMnnn keyword value into an IPosition. More... | |
static Bool | toTDIM (String &tdim, const IPosition &shape) |
Convert an IPosition to a String appropriate for use as the value of a TDIMnnn keyword. More... | |
static void | addComment (RecordInterface &header, const String &comment) |
Add a comment/history to the supplied record. More... | |
static void | addHistory (RecordInterface &header, const String &history) |
A class with static functions to help deal with FITS Keywords.
Public interface
This is a collection of static utility functions for use with FITS keywords.
This class provides functions to conveniently interconvert between Casacore types and a FitsKeywordList which is needed by the native FITS classes. It is more convenient to maintain the list within Casacore as a Record, so we only need methods to turn a FitsKeywordList into a Record, and vice versa.
Note that it is not necessary to construct a FITSKeywordUtil object since you can use its static functions directly.
This example shows how you put values from a Record into a FItsKeywordList.
This example shows how you extract fits keywords into a Record.
The FitsKeywordList class can be somewhat tedious to use, as it deals with, e.g., char* pointers rather than Strings. This class makes it easy to interconvert between FITS keywords and Casacore types.
Definition at line 128 of file FITSKeywordUtil.h.
|
static |
Add a comment/history to the supplied record.
It will automatically figure out a unique name and add it to the end. If the comment contains embedded newlines this function will break the string across multiple FITS comment entries. At present it will not however make sure that the strings are short enough (i.e. <= 72 characters per line).
Note that while you can add history anywhere into header, in the actual keyword list they will always appear after the END keyword.
Note however that you will generally manipulate History keywords with the class FITSHistoryUtil.
|
static |
|
static |
Add the fields from in to the out FitsKeywordList as keywords.
Upcases field names, turns arrays into indexed keywords, tries to interleave e.g. crval, crpix, etc. COMMENT* are standalone comments, and HISTORY* are history cards. (COMMENT and HISTORY may be of any capitalization). Note however that you will generally add History keywords with the class FITSHistoryUtil. Returns False in the following instances:
Convert a TDIMnnn keyword value into an IPosition.
This returns False if the tdim string has an invalid format.
|
static |
Extract keywords from in and define them in out.
Output field names are downcased. Keywords matching the names in ignore (which are treated as regular expressions) are not created in out. This test happens after the field names have been downcased. All indexed keywords will be ignored if the root name is in the ignore vector (e.g. NAXIS implies NAXIS4 and other indexed NAXIS keywords are ignored). By default history keywords are ignored, since they should be handled in class FITSHistoryUtil. This always returns True.
|
static |
Make an initial FitsKeywordList for either a FITS primary header or a FITS extension header (image or table).
A primary header requires "SIMPLE = T", an extension header "XTENSION = IMAGE " or "XTENSION = BINTABLE " for image or table, respectively. This is required of any FITS keyword list. This is provided as a convenience so that you do not have to know anything about the class FitsKeywordList.
|
static |
Remove some keywords from a record.
This can be useful if, e.g., you first need to construct a coordinate system from the header, but you later want to remove CROTA etc. The strings in the ignore vector are treated as regular expressions.
Convert an IPosition to a String appropriate for use as the value of a TDIMnnn keyword.
This returns False if the converted string has more than 71 characters (making it impossible to be used as a string keyword value).
Referenced by casacore::VariableArrayFITSFieldCopier< recordType, fitsType >::copyToFITS().