SubaruTranslator

class astro_metadata_translator.SubaruTranslator(header)

Bases: astro_metadata_translator.FitsTranslator

Metadata translator for Subaru telescope headers.

Attributes Summary

supported_instrument
translators

Methods Summary

can_translate(header) Indicate whether this translation class can translate the supplied header.
cards_used() Cards used during metadata extraction.
determine_translator(header) Determine a translation class by examining the header
quantity_from_card(keywords, unit[, …]) Calculate a Astropy Quantity from a header card and a unit.
to_altaz_begin() Return value of altaz_begin from headers.
to_boresight_airmass() Return value of boresight_airmass from headers.
to_boresight_rotation_angle() Return value of boresight_rotation_angle from headers.
to_boresight_rotation_coord() Return value of boresight_rotation_coord from headers.
to_dark_time() Return value of dark_time from headers.
to_datetime_begin()
to_datetime_end()
to_detector_exposure_id() Return value of detector_exposure_id from headers.
to_detector_name() Return value of detector_name from headers.
to_detector_num() Return value of detector_num from headers.
to_exposure_id() Return value of exposure_id from headers.
to_exposure_time() Return value of exposure_time from headers.
to_instrument()
to_location()
to_object() Return value of object from headers.
to_observation_id() Return value of observation_id from headers.
to_observation_type() Return value of observation_type from headers.
to_physical_filter() Return value of physical_filter from headers.
to_pressure() Return value of pressure from headers.
to_relative_humidity() Return value of relative_humidity from headers.
to_science_program() Return value of science_program from headers.
to_telescope()
to_temperature() Return value of temperature from headers.
to_tracking_radec() Return value of tracking_radec from headers.
to_visit_id() Return value of visit_id from headers.
validate_value(value, default[, minimum, …]) Validate the supplied value, returning a new value if out of range

Attributes Documentation

supported_instrument = None
translators = {'DECam': <class 'astro_metadata_translator.translators.decam.DecamTranslator'>, 'HSC': <class 'astro_metadata_translator.translators.hsc.HscTranslator'>, 'MegaPrime': <class 'astro_metadata_translator.translators.megaprime.MegaPrimeTranslator'>, 'SuprimeCam': <class 'astro_metadata_translator.translators.suprimecam.SuprimeCamTranslator'>}

Methods Documentation

classmethod can_translate(header)

Indicate whether this translation class can translate the supplied header.

Checks the instrument value and compares with the supported instruments in the class

Parameters:
header : dict-like

Header to convert to standardized form.

Returns:
can : bool

True if the header is recognized by this class. False otherwise.

cards_used()

Cards used during metadata extraction.

Returns:
used : frozenset of str

Cards used when extracting metadata.

classmethod determine_translator(header)

Determine a translation class by examining the header

Parameters:
header : dict-like

Representation of a header.

Returns:
translator : MetadataTranslator

Translation class that knows how to extract metadata from the supplied header.

Raises:
ValueError

None of the registered translation classes understood the supplied header.

quantity_from_card(keywords, unit, default=None, minimum=None, maximum=None)

Calculate a Astropy Quantity from a header card and a unit.

Parameters:
keywords : str or list of str

Keyword to use from header. If a list each keyword will be tried in turn until one matches.

unit : astropy.units.UnitBase

Unit of the item in the header.

default : float, optional

Default value to use if the header value is invalid. Assumed to be in the same units as the value expected in the header. If None, no default value is used.

minimum : float

Minimum possible valid value, optional. If the calculated value is below this value, the default value will be used.

maximum : float

Maximum possible valid value, optional. If the calculated value is above this value, the default value will be used.

Returns:
q : astropy.units.Quantity

Quantity representing the header value.

Raises:
KeyError

The supplied header key is not present.

to_altaz_begin()

Return value of altaz_begin from headers.

Telescope boresight azimuth and elevation at start of observation.

Returns:
altaz_begin : astropy.coordinates.AltAz

The translated property.

to_boresight_airmass()

Return value of boresight_airmass from headers.

Airmass of the boresight of the telescope.

Returns:
boresight_airmass : float

The translated property.

to_boresight_rotation_angle()

Return value of boresight_rotation_angle from headers.

Angle of the instrument in boresight_rotation_coord frame.

Returns:
boresight_rotation_angle : astropy.coordinates.Angle

The translated property.

to_boresight_rotation_coord()

Return value of boresight_rotation_coord from headers.

Coordinate frame of the instrument rotation angle (options: sky, unknown).

Returns:
boresight_rotation_coord : str

The translated property.

to_dark_time()

Return value of dark_time from headers.

Duration of the exposure with shutter closed (seconds).

Returns:
dark_time : astropy.units.Quantity

The translated property.

to_datetime_begin()
to_datetime_end()
to_detector_exposure_id()

Return value of detector_exposure_id from headers.

Unique integer identifier for this detector in this exposure.

Returns:
detector_exposure_id : int

The translated property.

to_detector_name()

Return value of detector_name from headers.

Name of the detector within the instrument (might not be unique).

Returns:
detector_name : str

The translated property.

to_detector_num()

Return value of detector_num from headers.

Unique (for instrument) integer identifier for the sensor.

Returns:
detector_num : int

The translated property.

to_exposure_id()

Return value of exposure_id from headers.

Unique (with instrument) integer identifier for this observation.

Returns:
exposure_id : int

The translated property.

to_exposure_time()

Return value of exposure_time from headers.

Duration of the exposure with shutter open (seconds).

Returns:
exposure_time : astropy.units.Quantity

The translated property.

to_instrument()
to_location()
to_object()

Return value of object from headers.

Object of interest or field name.

Returns:
object : str

The translated property.

to_observation_id()

Return value of observation_id from headers.

Label uniquely identifying this observation (can be related to ‘exposure_id’).

Returns:
observation_id : str

The translated property.

to_observation_type()

Return value of observation_type from headers.

Type of observation (currently: science, dark, flat, bias, focus).

Returns:
observation_type : str

The translated property.

to_physical_filter()

Return value of physical_filter from headers.

The bandpass filter used for this observation.

Returns:
physical_filter : str

The translated property.

to_pressure()

Return value of pressure from headers.

Atmospheric pressure outside the dome.

Returns:
pressure : astropy.units.Quantity

The translated property.

to_relative_humidity()

Return value of relative_humidity from headers.

Relative humidity outside the dome.

Returns:
relative_humidity : float

The translated property.

to_science_program()

Return value of science_program from headers.

Observing program (survey or proposal) identifier.

Returns:
science_program : str

The translated property.

to_telescope()
to_temperature()

Return value of temperature from headers.

Temperature outside the dome.

Returns:
temperature : astropy.units.Quantity

The translated property.

to_tracking_radec()

Return value of tracking_radec from headers.

Requested RA/Dec to track.

Returns:
tracking_radec : astropy.coordinates.SkyCoord

The translated property.

to_visit_id()

Return value of visit_id from headers.

ID of the Visit this Exposure is associated with.

Science observations should essentially always be associated with a visit, but calibration observations may not be.

Returns:
visit_id : int

The translated property.

static validate_value(value, default, minimum=None, maximum=None)

Validate the supplied value, returning a new value if out of range

Parameters:
value : float

Value to be validated.

default : float

Default value to use if supplied value is invalid or out of range. Assumed to be in the same units as the value expected in the header.

minimum : float

Minimum possible valid value, optional. If the calculated value is below this value, the default value will be used.

maximum : float

Maximum possible valid value, optional. If the calculated value is above this value, the default value will be used.

Returns:
value : float

Either the supplied value, or a default value.