Bases: object
Telescope instrument with simple properties.
Parameters: | name : str
fits_names : list of str
rows : int
columns : int
overscan_start : int
overscan_axis : one of (1, 2)
|
---|
Examples
Consider an image whose dimensions as given in its FITS header are NAXIS1 = 3085 and NAXIS2 = 2048 with an overscan region that begins at position 3073 along axis 1. The correct overscan settings for this instrument are:
overscan_start = 3073
overscan_axis = 1
Methods Summary
has_overscan(image_dimensions) | Determine whether an image taken by this instrument has overscan :Parameters: image_dimensions : list-like with two elements Shape of the image; can be any type as long as it has two elements. |
Methods Documentation