Introduction | Reduction | Conversions | Dates | Display Image | Headers | Image Load | Image Save | Photometry |
Table of Contents
This package contains functions for extracting information from FITS image headers.
Extracting header information
This loads the package
In[1]:=
A FITS image is needed
In[2]:=
In[3]:=
Out[3]=
Here are the entire contents of the above specified FITS image.
In[4]:=
Out[4]=
All of the contents of a FITS header, field names and values, are stored as strings.
Here is the value of a specific filed in the above header.
In[5]:=
Out[5]=
A few functions are available that attempt to process the string contents and return numerical results.
option name | default value | |
DateTimeParsingFunctions | {dateparser, timeparser} | a list containing pure functions for parsing the date and time fields, respectively. |
Options for parsing dates and times
Here is start time of the image acquisition.
In[6]:=
Out[6]=
option name | default values | |
ParsingFunction | RAParsingFunction | a function that parses the RA field of the FITS image object. |
DECParsingFunction | a function that parses the DEC field of the FITS image object. |
Option for parsing right ascension and declination
Here is right ascension parameter of the telescope for the above image.
In[7]:=
Out[7]=
Here is declination parameter of the telescope for the above image.
In[8]:=
Out[8]=
Created by Mathematica (October 24, 2004) |