pypeit.spectrographs.gemini_gmos module
Module for Gemini GMOS specific methods.
- class pypeit.spectrographs.gemini_gmos.GeminiGMOSMosaicLookUp[source]
Bases:
objectProvides the geometry required to mosaic Gemini GMOS data.
This is purposely a direct copy of the data provided by v3.0.0 of the Gemini DRAGONS software package. Specifically, if you have DRAGONS installed,
pypeit.spectrographs.gemini_gmos.GeminiGMOSMosaicLookUp.geometryshould be identical to:from geminidr.gmos.lookups.geometry_conf import geometry
Updating to any changes made to the DRAGONS version requires by-hand editing of the PypeIt code.
- geometry = {'BI11-41-4k-2,BI13-19-4k-3,BI12-34-4k-1': {'default_shape': (2048, 4224), (0, 0): {'rotation': 0.0, 'shift': (-2112.5, -1.1)}, (2048, 0): {}, (4096, 0): {'rotation': 0.0, 'shift': (2110.8, 1.05)}}, 'BI13-20-4k-1,BI12-09-4k-2,BI13-18-4k-2': {'default_shape': (2048, 4224), (0, 0): {'rotation': -0.004, 'shift': (-2115.95, -0.21739)}, (2048, 0): {}, (4096, 0): {'rotation': -0.00537, 'shift': (2115.48, 0.1727)}}, 'BI5-36-4k-2,BI11-33-4k-1,BI12-34-4k-1': {'default_shape': (2048, 4224), (0, 0): {'rotation': 0.0, 'shift': (-2110.2, 0.71)}, (2048, 0): {}, (4096, 0): {'rotation': 0.0, 'shift': (2109.0, -0.73)}}, 'EEV2037-06-03EEV8194-19-04EEV8261-07-04': {'default_shape': (2048, 4608), (0, 0): {'rotation': 0.011, 'shift': (-2086.49, -0.22)}, (2048, 0): {}, (4096, 0): {'rotation': 0.012, 'shift': (2089.31, 2.04)}}, 'EEV8056-20-03EEV8194-19-04EEV8261-07-04': {'default_shape': (2048, 4608), (0, 0): {'rotation': -0.01, 'shift': (-2086.44, 5.46)}, (2048, 0): {}, (4096, 0): {'rotation': 0.02, 'shift': (2092.53, 9.57)}}, 'EEV9273-16-03EEV9273-20-04EEV9273-20-03': {'default_shape': (2048, 4608), (0, 0): {'rotation': -0.004, 'shift': (-2087.5, -1.58)}, (2048, 0): {}, (4096, 0): {'rotation': -0.046, 'shift': (2088.8723, -1.86)}}, 'e2v 10031-23-05,10031-01-03,10031-18-04': {'default_shape': (2048, 4608), (0, 0): {'rotation': -0.009, 'shift': (-2087.7, -0.749)}, (2048, 0): {}, (4096, 0): {'rotation': -0.003, 'shift': (2087.8014, 2.05)}}}
- class pypeit.spectrographs.gemini_gmos.GeminiGMOSNE2VSpectrograph[source]
Bases:
GeminiGMOSNSpectrographChild to handle Gemini/GMOS-N instrument with E2V detector Used until February 2017
- comment = 'E2V detector; see :doc:`gemini_gmos`'
A brief comment or description regarding PypeIt usage with this spectrograph.
- config_specific_par(inp, inp_par=None)[source]
Modify the PypeIt parameters to hard-wired values used for specific instrument configurations.
- Parameters:
inp (
str,list, Path, astropy.io.fits.Header, astropy.table.Table) – Input filename, an astropy.io.fits.Header object, or a list of astropy.io.fits.Header objects. Or a row from the metadata table.inp_par (
ParSet, optional) – Parameter set used for the full run of PypeIt. If None, usedefault_pypeit_par().
- Returns:
The PypeIt parameter set adjusted for configuration specific parameter values.
- Return type:
- get_detector_par(det, hdu=None)[source]
Return metadata for the selected detector.
- Parameters:
det (
int) – 1-indexed detector number.hdu (astropy.io.fits.HDUList, optional) – The open fits file with the raw image of interest. If not provided, frame-dependent parameters are set to a default.
- Returns:
Object with the detector metadata.
- Return type:
- get_mosaic_par(mosaic, hdu=None, msc_ord=0)[source]
Return the hard-coded parameters needed to construct detector mosaics from unbinned images.
The parameters expect the images to be trimmed and oriented to follow the PypeIt shape convention of
(nspec,nspat). For returned lists, the length of the list is the same as the number of detectors in the mosaic, and they are ordered by the detector number.- Parameters:
mosaic (
tuple) – Tuple of detector numbers used to construct the mosaic. Must be one among the list of possible mosaics as hard-coded by theallowed_mosaics()function.hdu (astropy.io.fits.HDUList, optional) – The open fits file with the raw image of interest. If not provided, frame-dependent detector parameters are set to a default. BEWARE: If
hduis not provided, the binning is assumed to be 1,1, which will cause faults if applied to binned images!msc_ord (
int, optional) – Order of the interpolation used to construct the mosaic.
- Returns:
Object with the mosaic and detector parameters.
- Return type:
- hdu_read_order()[source]
Return the order in which to read HDU extension for each detector.
- Returns:
A tuple of three iterables that provide the order of the HDU extensions for reading the data from this instrument.
- Return type:
- name = 'gemini_gmos_north_e2v'
The name of the spectrograph. See Spectrographs for the currently supported spectrographs.
- supported = True
Flag that PypeIt code base has been sufficiently tested with data from this spectrograph that it is officially supported by the development team.
- class pypeit.spectrographs.gemini_gmos.GeminiGMOSNHamNSSpectrograph[source]
Bases:
GeminiGMOSNHamSpectrographChild to handle Gemini/GMOS-N instrument with Hamamatsu detector and Nod+Shuffle in an not-really NS manner (for now)
- comment = 'Same as gemini_gmos_north_ham when used in nod-and-shuffle mode; see :doc:`gemini_gmos`'
A brief comment or description regarding PypeIt usage with this spectrograph.
- config_specific_par(inp, inp_par=None)[source]
Modify the PypeIt parameters to hard-wired values used for specific instrument configurations.
In this case, simply slurp the NOD&Shuffle value for use elsewhere in this class.
- Parameters:
inp (
str,list, Path, astropy.io.fits.Header, astropy.table.Table) – Input filename, an astropy.io.fits.Header object, or a list of astropy.io.fits.Header objects. Or a row from the metadata table.inp_par (
ParSet, optional) – Parameter set used for the full run of PypeIt. If None, usedefault_pypeit_par().
- Returns:
The PypeIt parameter set adjusted for configuration specific parameter values.
- Return type:
- get_rawimage(raw_file, det)[source]
Read raw images and generate a few other bits and pieces that are key for image processing.
- Parameters:
- Returns:
detector_par (
DetectorContainer,Mosaic) – Detector metadata parameters for one or more detectors.raw_img (numpy.ndarray) – Raw image for this detector.
hdu (astropy.io.fits.HDUList) – Opened fits file
exptime (
float) – Exposure time read from the file headerrawdatasec_img (numpy.ndarray) – Data (Science) section of the detector as provided by setting the (1-indexed) number of the amplifier used to read each detector pixel. Pixels unassociated with any amplifier are set to 0.
oscansec_img (numpy.ndarray) – Overscan section of the detector as provided by setting the (1-indexed) number of the amplifier used to read each detector pixel. Pixels unassociated with any amplifier are set to 0.
- name = 'gemini_gmos_north_ham_ns'
The name of the spectrograph. See Spectrographs for the currently supported spectrographs.
- pypeit_file_keys()[source]
Define the list of keys to be output into a standard
PypeItfile.- Returns:
The list of keywords in the relevant
PypeItMetaDatainstance to print to the PypeIt Reduction File.- Return type:
- raw_header_cards()[source]
Return additional raw header cards to be propagated in downstream output files for configuration identification.
The list of raw data FITS keywords should be those used to populate the
configuration_keys()or are used inconfig_specific_par()for a particular spectrograph, if different from the name of the PypeIt metadata keyword.This list is used by
subheader_for_spec()to include additional FITS keywords in downstream output files.- Returns:
List of keywords from the raw data files that should be propagated in output files.
- Return type:
- supported = True
Flag that PypeIt code base has been sufficiently tested with data from this spectrograph that it is officially supported by the development team.
- class pypeit.spectrographs.gemini_gmos.GeminiGMOSNHamSpectrograph[source]
Bases:
GeminiGMOSNSpectrographChild to handle Gemini/GMOS-N instrument with Hamamatsu detector Used since February 2017
- comment = 'Hamamatsu detector (R150, R400, B600, R831); Used since Feb 2017; see :doc:`gemini_gmos`'
A brief comment or description regarding PypeIt usage with this spectrograph.
- config_specific_par(inp, inp_par=None)[source]
Modify the PypeIt parameters to hard-wired values used for specific instrument configurations.
- Parameters:
inp (
str,list, Path, astropy.io.fits.Header, astropy.table.Table) – Input filename, an astropy.io.fits.Header object, or a list of astropy.io.fits.Header objects. Or a row from the metadata table.inp_par (
ParSet, optional) – Parameter set used for the full run of PypeIt. If None, usedefault_pypeit_par().
- Returns:
The PypeIt parameter set adjusted for configuration specific parameter values.
- Return type:
- get_detector_par(det, hdu=None)[source]
Return metadata for the selected detector. Values of gain and ronoise are taken from DRAGONS. https://github.com/GeminiDRSoftware/DRAGONS/blob/master/gemini_instruments/gmos/lookup.py
- Parameters:
det (
int) – 1-indexed detector number.hdu (astropy.io.fits.HDUList, optional) – The open fits file with the raw image of interest. If not provided, frame-dependent parameters are set to a default.
- Returns:
Object with the detector metadata.
- Return type:
- get_mosaic_par(mosaic, hdu=None, msc_ord=0)[source]
Return the hard-coded parameters needed to construct detector mosaics from unbinned images.
The parameters expect the images to be trimmed and oriented to follow the PypeIt shape convention of
(nspec,nspat). For returned lists, the length of the list is the same as the number of detectors in the mosaic, and they are ordered by the detector number.- Parameters:
mosaic (
tuple) – Tuple of detector numbers used to construct the mosaic. Must be one among the list of possible mosaics as hard-coded by theallowed_mosaics()function.hdu (astropy.io.fits.HDUList, optional) – The open fits file with the raw image of interest. If not provided, frame-dependent detector parameters are set to a default. BEWARE: If
hduis not provided, the binning is assumed to be 1,1, which will cause faults if applied to binned images!msc_ord (
int, optional) – Order of the interpolation used to construct the mosaic.
- Returns:
Object with the mosaic and detector parameters.
- Return type:
- hdu_read_order()[source]
Return the order in which to read HDU extensions for this instrument.
- Returns:
A tuple of three iterables that provide the order of the HDU extensions for reading the data from this instrument.
- Return type:
- name = 'gemini_gmos_north_ham'
The name of the spectrograph. See Spectrographs for the currently supported spectrographs.
- supported = True
Flag that PypeIt code base has been sufficiently tested with data from this spectrograph that it is officially supported by the development team.
- class pypeit.spectrographs.gemini_gmos.GeminiGMOSNSpectrograph[source]
Bases:
GeminiGMOSSpectrographChild to handle Gemini/GMOS-N instrument
- allowed_extensions = ['.fits', '.fits.bz2', '.fits.gz']
Defines the allowed extensions for the input fits files.
- camera = 'GMOS-N'
Name of the spectrograph camera or arm. This is used by specdb, so use that naming convention
- header_name = 'GMOS-N'
Name of the spectrograph camera or arm from the Header. Usually the INSTRUME card.
- telescope = Parameter Value Default Type Callable --------------------------------------------------------------- name GEMINI-N KECK str False longitude -155.4690467527778 None int, float False latitude 19.823801447222227 None int, float False elevation 4213.000000001549 None int, float False fratio None None int, float False diameter 8.1 None int, float False eff_aperture None None int, float False
Instance of
TelescopeParproviding telescope-specific metadata.
- class pypeit.spectrographs.gemini_gmos.GeminiGMOSSHamSpectrograph[source]
Bases:
GeminiGMOSSpectrographChild to handle Gemini/GMOS-S instrument with Hamamatsu detector
- bpm(filename, det, shape=None, msbias=None)[source]
Generate a default bad-pixel mask.
Even though they are both optional, either the precise shape for the image (
shape) or an example file that can be read to get the shape (filenameusingget_image_shape()) must be provided.- Parameters:
filename (
str) – An example file to use to get the image shape. Cannot be None.det (
int,tuple) – 1-indexed detector(s) to read. An image mosaic is selected using atuplewith the detectors in the mosaic, which must be one of the allowed mosaics returned byallowed_mosaics().shape (
tuple, optional) – Processed image shape. Iffilenameis None, this must be provided; otherwise, this is ignored.msbias (
PypeItImage, optional) – Processed bias frame. If provided, it is used bybpm_frombias()to identify bad pixels.
- Returns:
An integer array with a masked value set to 1 and an unmasked value set to 0.
- Return type:
- camera = 'GMOS-S'
Name of the spectrograph camera or arm. This is used by specdb, so use that naming convention
- comment = 'Hamamatsu detector (R150, R400, B480, B600, R831); see :doc:`gemini_gmos`'
A brief comment or description regarding PypeIt usage with this spectrograph.
- config_specific_par(inp, inp_par=None)[source]
Modify the PypeIt parameters to hard-wired values used for specific instrument configurations.
- Parameters:
inp (
str,list, Path, astropy.io.fits.Header, astropy.table.Table) – Input filename, an astropy.io.fits.Header object, or a list of astropy.io.fits.Header objects. Or a row from the metadata table.inp_par (
ParSet, optional) – Parameter set used for the full run of PypeIt. If None, usedefault_pypeit_par().
- Returns:
The PypeIt parameter set adjusted for configuration specific parameter values.
- Return type:
- classmethod default_pypeit_par()[source]
Return the default parameters to use for this instrument.
- Returns:
Parameters required by all of PypeIt methods.
- Return type:
- get_detector_par(det, hdu=None)[source]
Return metadata for the selected detector. Values of gain and ronoise are taken from DRAGONS. https://github.com/GeminiDRSoftware/DRAGONS/blob/master/gemini_instruments/gmos/lookup.py
- Parameters:
det (
int) – 1-indexed detector number.hdu (astropy.io.fits.HDUList, optional) – The open fits file with the raw image of interest. If not provided, frame-dependent parameters are set to a default.
- Returns:
Object with the detector metadata.
- Return type:
- get_mosaic_par(mosaic, hdu=None, msc_ord=0)[source]
Return the hard-coded parameters needed to construct detector mosaics from unbinned images.
The parameters expect the images to be trimmed and oriented to follow the PypeIt shape convention of
(nspec,nspat). For returned lists, the length of the list is the same as the number of detectors in the mosaic, and they are ordered by the detector number.- Parameters:
mosaic (
tuple) – Tuple of detector numbers used to construct the mosaic. Must be one among the list of possible mosaics as hard-coded by theallowed_mosaics()function.hdu (astropy.io.fits.HDUList, optional) – The open fits file with the raw image of interest. If not provided, frame-dependent detector parameters are set to a default. BEWARE: If
hduis not provided, the binning is assumed to be 1,1, which will cause faults if applied to binned images!msc_ord (
int, optional) – Order of the interpolation used to construct the mosaic.
- Returns:
Object with the mosaic and detector parameters.
- Return type:
- hdu_read_order()[source]
Return the order in which to read HDU extensions for this instrument.
- Returns:
A tuple of three iterables that provide the order of the HDU extensions for reading the data from this instrument.
- Return type:
- header_name = 'GMOS-S'
Name of the spectrograph camera or arm from the Header. Usually the INSTRUME card.
- name = 'gemini_gmos_south_ham'
The name of the spectrograph. See Spectrographs for the currently supported spectrographs.
- supported = True
Flag that PypeIt code base has been sufficiently tested with data from this spectrograph that it is officially supported by the development team.
- telescope = Parameter Value Default Type Callable ---------------------------------------------------------------- name GEMINI-S KECK str False longitude -70.7366833333333 None int, float False latitude -30.240741666666672 None int, float False elevation 2749.999999999238 None int, float False fratio None None int, float False diameter 8.1 None int, float False eff_aperture None None int, float False
Instance of
TelescopeParproviding telescope-specific metadata.
- class pypeit.spectrographs.gemini_gmos.GeminiGMOSSpectrograph[source]
Bases:
SpectrographChild to handle Gemini/GMOS specific code. This is a base class that should not be instantiated.
- allowed_extensions = ['.fits', '.fits.bz2', '.fits.gz']
Defines the allowed extensions for the input fits files.
- property allowed_mosaics
Return the list of allowed detector mosaics.
Gemini GMOS only allows for mosaicing all three detectors.
- Returns:
List of tuples, where each tuple provides the 1-indexed detector numbers that can be combined into a mosaic and processed by PypeIt.
- Return type:
- check_frame_type(ftype, fitstbl, exprng=None)[source]
Check for frames of the provided type.
- Parameters:
ftype (
str) – Type of frame to check. Must be a valid frame type; see frame-type Definitions.fitstbl (astropy.table.Table) – The table with the metadata for one or more frames to check.
exprng (
list, optional) – Range in the allowed exposure time for a frame of typeftype. Seepypeit.core.framematch.check_frame_exptime().
- Returns:
Boolean array with the flags selecting the exposures in
fitstblthat areftypetype frames.- Return type:
- compound_meta(headarr, meta_key)[source]
Methods to generate metadata requiring interpretation of the header data, instead of simply reading the value of a header card.
- Parameters:
headarr (
list) – List of astropy.io.fits.Header objects.meta_key (
str) – Metadata keyword to construct.
- Returns:
Metadata value read from the header(s).
- Return type:
- config_independent_frames()[source]
Define frame types that are independent of the fully defined instrument configuration.
This method returns a dictionary where the keys of the dictionary are the list of configuration-independent frame types. The value of each dictionary element can be set to one or more metadata keys that can be used to assign each frame type to a given configuration group. See
set_configurations()and how it interprets the dictionary values, which can be None.- Returns:
Dictionary where the keys are the frame types that are configuration-independent and the values are the metadata keywords that can be used to assign the frames to a configuration group.
- Return type:
- config_specific_par(inp, inp_par=None)[source]
Modify the PypeIt parameters to hard-wired values used for specific instrument configurations.
- Parameters:
inp (
str,list, Path, astropy.io.fits.Header, astropy.table.Table) – Input filename, an astropy.io.fits.Header object, or a list of astropy.io.fits.Header objects. Or a row from the metadata table.inp_par (
ParSet, optional) – Parameter set used for the full run of PypeIt. If None, usedefault_pypeit_par().
- Returns:
The PypeIt parameter set adjusted for configuration specific parameter values.
- Return type:
- configuration_keys()[source]
Return the metadata keys that define a unique instrument configuration.
This list is used by
PypeItMetaDatato identify the unique configurations among the list of frames read for a given reduction.- Returns:
List of keywords of data pulled from file headers and used to constuct the
PypeItMetaDataobject.- Return type:
- property default_mosaic
Return the default detector mosaic.
For instruments with no allowed detector mosaics, this must be returned as None.
- classmethod default_pypeit_par()[source]
Return the default parameters to use for this instrument.
- Returns:
Parameters required by all of PypeIt methods.
- Return type:
- get_maskdef_slitedges(filename=None, det=None, debug=None, binning=None, trc_path=None)[source]
Provides the slit edges positions predicted by the slitmask design.
For Gemini/GMOS, we take advantage of the WCS solution from the input
wcs_file, which should be an alignment image from the observations.- Parameters:
filename (
str,list, optional:) – Name of the file holding the mask design info or the maskfile and wcs_file in that orderdet (
int, optional) – Detector number. Ignored by Gemini/GMOS.debug (
bool, optional) – Flag to run in debugging modetrc_path (str, optional) – Path to the first trace file used to generate the trace flat
binning (str, optional) – String with the comma-separated number of pixels binned in each dimension of the flat-field image. Order must be spectral then spatial.
- Returns:
top_edges (
numpy.ndarray) – Predicted locations of the top edges of the slits in spatial pixel coordinates.bot_edges (
numpy.ndarray) – Predicted locations of the bottom edges of the slits in spatial pixel coordinates.sortindx (
numpy.ndarray) – Indices of the slits in the providedslitmaskobject that orders the slits from left to right, in the PypeIt orientation.slitmask (
SlitMask) – Slit mask metadata read from the provided input file(s).
- get_mosaic_par(mosaic, hdu=None, msc_ord=0)[source]
Return the hard-coded parameters needed to construct detector mosaics from unbinned images.
The parameters expect the images to be trimmed and oriented to follow the PypeIt shape convention of
(nspec,nspat). For returned lists, the length of the list is the same as the number of detectors in the mosaic, and they are ordered by the detector number.- Parameters:
mosaic (
tuple) – Tuple of detector numbers used to construct the mosaic. Must be one among the list of possible mosaics as hard-coded by theallowed_mosaics()function.hdu (astropy.io.fits.HDUList, optional) – The open fits file with the raw image of interest. If not provided, frame-dependent detector parameters are set to a default. BEWARE: If
hduis not provided, the binning is assumed to be 1,1, which will cause faults if applied to binned images!msc_ord (
int, optional) – Order of the interpolation used to construct the mosaic.
- Returns:
Object with the mosaic and detector parameters.
- Return type:
- get_rawimage(raw_file, det)[source]
Read raw images and generate a few other bits and pieces that are key for image processing.
- Parameters:
raw_file (
str) – File to readdet (
int,tuple) – 1-indexed detector(s) to read. An image mosaic is selected using atuplewith the detectors in the mosaic, which must be one of the allowed mosaics returned byallowed_mosaics().
- Returns:
detector_par (
DetectorContainer,Mosaic) – Detector metadata parameters for one or more detectors.raw_img (numpy.ndarray) – Raw image for this detector.
hdu (astropy.io.fits.HDUList) – Opened fits file
exptime (
float) – Exposure time read from the file headerrawdatasec_img (numpy.ndarray) – Data (Science) section of the detector as provided by setting the (1-indexed) number of the amplifier used to read each detector pixel. Pixels unassociated with any amplifier are set to 0.
oscansec_img (numpy.ndarray) – Overscan section of the detector as provided by setting the (1-indexed) number of the amplifier used to read each detector pixel. Pixels unassociated with any amplifier are set to 0.
- get_slitmask(filename, det=1)[source]
Parse the slitmask data from a raw file into
slitmask, aSlitMaskobject.
- init_meta()[source]
Define how metadata are derived from the spectrograph files.
That is, this associates the PypeIt-specific metadata keywords with the instrument-specific header cards using
meta.
- maskdef_spec_minmax(maskfile=None, maskdef_ids=None, nspec=None, binning=None, shift=150)[source]
Get the spectral min and max values of each slit from the mask definition file.
- Parameters:
maskfile (
str, optional) – The mask file to read the maskdef spec minmax from.maskdef_ids (
list, optional) – The list of maskdef IDs to match to the maskfile values.nspec (
int, optional) – The number of spectral pixels in the image.binning (str, optional) – The binning of the trace image in the format ‘spec,spat’.
shift (
int, optional) – The shift to apply to the spec minmax. Default is 150. This is used to shift the spec minmax to account for the uncertainty in the maskdef spec minmax values.
- Returns:
A tuple of two numpy.ndarray with the spec min and max values. If the maskfile, maskdef_ids, or nspec are not provided, None is returned for both min and max.
- Return type:
- ndet = 3
Number of detectors for this instrument.
- pypeit_file_keys()[source]
Define the list of keys to be output into a standard
PypeItfile.- Returns:
The list of keywords in the relevant
PypeItMetaDatainstance to print to the PypeIt Reduction File.- Return type:
- raw_header_cards()[source]
Return additional raw header cards to be propagated in downstream output files for configuration identification.
The list of raw data FITS keywords should be those used to populate the
configuration_keys()or are used inconfig_specific_par()for a particular spectrograph, if different from the name of the PypeIt metadata keyword.This list is used by
subheader_for_spec()to include additional FITS keywords in downstream output files.- Returns:
List of keywords from the raw data files that should be propagated in output files.
- Return type:
- url = 'http://www.gemini.edu/instrumentation/gmos'
Reference url
- pypeit.spectrographs.gemini_gmos.gemini_read_amp(inp, ext)[source]
Read one amplifier of an Gemini GMOS multi-extension FITS image
- Parameters:
inp (
str, astropy.io.fits.HDUList) – The file name of a fits file with the data or the already opened astropy.io.fits.HDUList object.ext (
str,int) – The name or index of the extension in the list of HDUs with the relevant data.
- Returns:
data (numpy.ndarray) – 2D array with the science region of the raw image.
overscan (numpy.ndarray) – 2D array with the overscan region of the raw image.
datasec (
str) – String representation of the section in the raw image with the science data.baissec (
str) – String representation of the section in the raw image with the overscan.x1 (
int) – Starting pixel along the first axis with the science data in the raw image.y1 (
int) – Starting pixel along the second axis with the science data in the raw image.