Reduction of observations

Quick start

The reduction of the observations is done by calling the command:

pylongslit_reduce PATH_TO_CONFIG_FILE

This procedure reads the raw observation files (science and/or standard star frames), and then applies the following steps:

  1. Bias subtraction.

  2. Dark current subtraction (if dark frames are provided).

  3. Flat-fielding.

The products are written to the ouput directory specified in the configuration file, with the names "reduced_science_ORIGINAL_NAME" or "reduced_standard_ORIGINAL_NAME", depending on the frame type. All further operations up to 1d spectrum extraction will from now on be performed on these frames, and the raw frames will not be used anymore. The reduced frames will be altered in place. This also means that if you in further steps do any operations on the reduced frames that you regret, you can always reset by running the reduction procedure again.

5 fits headers are added to the reduced frames. These are non-standard headers, and can be used only in the context of the PyLongslit software. The headers are:

"CRRREMOVD" - true if cosmic rays have been removed from the frame.

"BCGSUBBED" - true if A-B sky background subtraction has been performed on the frame.

"CROPY1" and "CROPY2" - the y-pixel range of the frame after cropping.

"SKYSUBBED" - true if the modelled sky background has been subtracted from the frame.

Quality Assesment

The reduced frames will be shown on the screen, and you can press h to normalize the frames. If you have detected no issues in the bias, dark and flat-frame procedures, you should not expect to see any issues in the reduced frames, assuming if your raw object data is healthy. The reduced frames at this point should resemble the raw frames very much to the naked eye. You should also check that the error image has reasonable values (in the order of \(\sqrt{counts}\)). This can be done by hoovering the mouse over the image, and the error value will be shown in the corner of the window (which corner can depends on your system).

Parameter options

The only aprameters that can alter the reduction routine are

"science" : {
    "skip_science": false, # true if you are only reducing standard star frames
},

"standard" : {
    "skip_standard": false, # true if you are only reducing science frames
},