Source code for gemini_instruments.graces.adclass

from astrodata import astro_data_tag, astro_data_descriptor, returns_list, TagSet
from ..gemini import AstroDataGemini
from .. import gmu

[docs] class AstroDataGraces(AstroDataGemini): __keyword_dict = dict(detector = 'DETECTOR', ) @staticmethod def _matches_data(source): return source[0].header.get('INSTRUME', '').upper() == 'GRACES' @astro_data_tag def _tag_instrument(self): return TagSet(['GRACES']) @astro_data_tag def _tag_spect(self): return TagSet(['SPECT']) @astro_data_tag def _tag_arc(self): if self.phu.get('OBSTYPE') == 'ARC': return TagSet(['ARC', 'CAL']) @astro_data_tag def _tag_flat(self): if self.phu.get('OBSTYPE') == 'FLAT': return TagSet(['FLAT', 'CAL']) @astro_data_tag def _tag_bias(self): if self.phu.get('OBSTYPE') == 'BIAS': return TagSet(['BIAS', 'CAL'])
[docs] @astro_data_descriptor @gmu.return_requested_units() def central_wavelength(self): """ Returns the central wavelength Returns ------- float The central wavelength setting """ return 700
[docs] @astro_data_descriptor def dec(self): """ Returns the Declination of the center of field in degrees. Since a fiber is used it coincides with the position of the target. For code re-used, use target_dec() if you really want the position of the target rather than the center of the field. Returns ------- float declination in degrees """ return self.target_dec()
[docs] @astro_data_descriptor def detector(self): return self.phu.get(self._keyword_for('detector'))
[docs] @astro_data_descriptor def disperser(self, stripID=False, pretty=False): """ Returns the name of the disperser. For GRACES, this is always "GRACES". Parameters ---------- stripID : bool Does nothing. pretty : bool Also does nothing. Returns ------- str The name of the disperser, "GRACES". """ return 'GRACES'
[docs] @astro_data_descriptor def ra(self): """ Returns the Right Ascension of the center of field in degrees. Since a fiber is used it coincides with the position of the target. For code re-used, use target_ra() if you really want the position of the target rather than the center of the field. Returns ------- float right ascension in degrees """ return self.target_ra()