MegaPrimeTranslator¶
-
class
astro_metadata_translator.
MegaPrimeTranslator
(header, filename=None)¶ Bases:
astro_metadata_translator.FitsTranslator
Metadata translator for CFHT MegaPrime standard headers.
Attributes Summary
default_search_path
Default search path to use to locate header correction files. name
Name of this translation class supported_instrument
Supports the MegaPrime instrument. translators
Methods Summary
are_keys_ok
(keywords)Are the supplied keys all present and defined? can_translate
(header[, filename])Indicate whether this translation class can translate the supplied header. can_translate_with_options
(header, options)Helper method for can_translate
allowing options.cards_used
()Cards used during metadata extraction. defined_in_this_class
(name)Report if the specified class attribute is defined specifically in this class. determine_translator
(header[, filename])Determine a translation class by examining the header is_key_ok
(keyword)Return True
if the value associated with the named keyword is present in this header and defined.is_keyword_defined
(header, keyword)Return True
if the value associated with the named keyword is present in the supplied header and defined.quantity_from_card
(keywords, unit[, …])Calculate a Astropy Quantity from a header card and a unit. search_paths
()Search paths to use when searching for header fix up correction files. to_altaz_begin
()to_boresight_airmass
()Airmass of the boresight of the telescope. to_boresight_rotation_angle
()Angle of the instrument in boresight_rotation_coord frame. to_boresight_rotation_coord
()Coordinate frame of the instrument rotation angle (options: sky, unknown). to_dark_time
()Duration of the exposure with shutter closed (seconds). to_datetime_begin
()to_datetime_end
()to_detector_exposure_id
()to_detector_group
()Collection name of which this detector is a part. to_detector_name
()to_detector_num
()to_detector_serial
()Serial number/string associated with this detector. to_detector_unique_name
()Return a unique name for the detector. to_exposure_id
()Unique (with instrument) integer identifier for this observation. to_exposure_time
()Duration of the exposure with shutter open (seconds). to_instrument
()The instrument used to observe the exposure. to_location
()Calculate the observatory location. to_object
()Object of interest or field name. to_observation_id
()Label uniquely identifying this observation (can be related to ‘exposure_id’). to_observation_type
()Calculate the observation type. to_physical_filter
()The bandpass filter used for this observation. to_pressure
()to_relative_humidity
()Relative humidity outside the dome. to_science_program
()Observing program (survey or proposal) identifier. to_telescope
()Full name of the telescope. to_temperature
()Temperature outside the dome. to_tracking_radec
()Calculate the tracking RA/Dec for this observation. to_visit_id
()ID of the Visit this Exposure is associated with. validate_value
(value, default[, minimum, …])Validate the supplied value, returning a new value if out of range Attributes Documentation
-
default_search_path
= '/home/travis/build/lsst/astro_metadata_translator/corrections/CFHT'¶ Default search path to use to locate header correction files.
-
name
= 'MegaPrime'¶ Name of this translation class
-
supported_instrument
= 'MegaPrime'¶ Supports the MegaPrime instrument.
-
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
-
are_keys_ok
(keywords)¶ Are the supplied keys all present and defined?
Parameters: - keywords : iterable of
str
Keywords to test.
Returns: - keywords : iterable of
-
classmethod
can_translate
(header, filename=None)¶ Indicate whether this translation class can translate the supplied header.
Checks the instrument value and compares with the supported instruments in the class
Parameters: Returns:
-
classmethod
can_translate_with_options
(header, options, filename=None)¶ Helper method for
can_translate
allowing options.Parameters: - header :
dict
-like Header to convert to standardized form.
- options :
dict
Headers to try to determine whether this header can be translated by this class. If a card is found it will be compared with the expected value and will return that comparison. Each card will be tried in turn until one is found.
- filename :
str
, optional Name of file being translated.
Returns: Notes
Intended to be used from within
can_translate
implementations for specific translators. Is not intended to be called directly fromdetermine_translator
.- header :
-
cards_used
()¶ Cards used during metadata extraction.
Returns:
-
classmethod
defined_in_this_class
(name)¶ Report if the specified class attribute is defined specifically in this class.
Parameters: - name :
str
Name of the attribute to test.
Returns: - in_class :
bool
True
if there is a attribute of that name defined in this specific subclass.False
if the method is not defined in this specific subclass but is defined in a parent class. ReturnsNone
if the attribute is not defined anywhere in the class hierarchy (which can happen if translators have typos in their mapping tables).
Notes
Retrieves the attribute associated with the given name. Then looks in all the parent classes to determine whether that attribute comes from a parent class or from the current class. Attributes are compared using
id()
.- name :
-
classmethod
determine_translator
(header, filename=None)¶ Determine a translation class by examining the header
Parameters: 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.
- translator :
-
is_key_ok
(keyword)¶ Return
True
if the value associated with the named keyword is present in this header and defined.Parameters: - keyword :
str
Keyword to check against header.
Returns: - keyword :
-
static
is_keyword_defined
(header, keyword)¶ Return
True
if the value associated with the named keyword is present in the supplied header and defined.Parameters: Returns:
-
quantity_from_card
(keywords, unit, default=None, minimum=None, maximum=None, checker=None)¶ Calculate a Astropy Quantity from a header card and a unit.
Parameters: - keywords :
str
orlist
ofstr
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
, optional Minimum possible valid value, optional. If the calculated value is below this value, the default value will be used.
- maximum :
float
, optional Maximum possible valid value, optional. If the calculated value is above this value, the default value will be used.
- checker :
function
, optional Callback function to be used by the translator method in case the keyword is not present. Function will be executed as if it is a method of the translator class. Running without raising an exception will allow the default to be used. Should usually raise
KeyError
.
Returns: - q :
astropy.units.Quantity
Quantity representing the header value.
Raises: - KeyError
The supplied header key is not present.
- keywords :
-
search_paths
()¶ Search paths to use when searching for header fix up correction files.
Returns: - paths :
list
Directory paths to search. Can be an empty list if no special directories are defined.
Notes
Uses the classes
default_search_path
property if defined.- paths :
-
to_altaz_begin
()¶
-
to_boresight_airmass
()¶ Airmass of the boresight of the telescope.
Returns: - translation :
float
Translated value derived from the header.
- translation :
-
to_boresight_rotation_angle
()¶ Angle of the instrument in boresight_rotation_coord frame.
Returns: - translation :
astropy.coordinates.Angle
Translated property.
- translation :
-
to_boresight_rotation_coord
()¶ Coordinate frame of the instrument rotation angle (options: sky, unknown).
Returns: - translation :
str
Translated property.
- translation :
-
to_dark_time
()¶ Duration of the exposure with shutter closed (seconds).
Returns: - translation :
astropy.units.Quantity
Translated value derived from the header.
- translation :
-
to_datetime_begin
()¶
-
to_datetime_end
()¶
-
to_detector_exposure_id
()¶
-
to_detector_group
()¶ Collection name of which this detector is a part. Can be None if there are no detector groupings.
Returns: - translation :
str
Translated property.
- translation :
-
to_detector_name
()¶
-
to_detector_num
()¶
-
to_detector_serial
()¶ Serial number/string associated with this detector.
Returns: - translation :
str
Translated value derived from the header.
- translation :
-
to_detector_unique_name
()¶ Return a unique name for the detector.
Base class implementation attempts to combine
detector_name
withdetector_group
. Group is only used if notNone
.Can be over-ridden by specialist translator class.
Returns: - name :
str
detector_group``_``detector_name
ifdetector_group
is defined, else thedetector_name
is assumed to be unique. If neither return a valid value an exception is raised.
Raises: - NotImplementedError
Raised if neither detector_name nor detector_group is defined.
- name :
-
to_exposure_id
()¶ Unique (with instrument) integer identifier for this observation.
Returns: - translation :
int
Translated value derived from the header.
- translation :
-
to_exposure_time
()¶ Duration of the exposure with shutter open (seconds).
Returns: - translation :
astropy.units.Quantity
Translated value derived from the header.
- translation :
-
to_instrument
()¶ The instrument used to observe the exposure.
Returns: - translation :
str
Translated value derived from the header.
- translation :
-
to_location
()¶ Calculate the observatory location.
Returns: - location :
astropy.coordinates.EarthLocation
An object representing the location of the telescope.
- location :
-
to_object
()¶ Object of interest or field name.
Returns: - translation :
str
Translated value derived from the header.
- translation :
-
to_observation_id
()¶ Label uniquely identifying this observation (can be related to ‘exposure_id’).
Returns: - translation :
str
Translated value derived from the header.
- translation :
-
to_observation_type
()¶ Calculate the observation type.
Returns: - typ :
str
Observation type. Normalized to standard set.
- typ :
-
to_physical_filter
()¶ The bandpass filter used for this observation.
Returns: - translation :
str
Translated value derived from the header.
- translation :
-
to_pressure
()¶
-
to_relative_humidity
()¶ Relative humidity outside the dome.
Returns: - translation :
float
Translated value derived from the header.
- translation :
-
to_science_program
()¶ Observing program (survey or proposal) identifier.
Returns: - translation :
str
Translated value derived from the header.
- translation :
-
to_telescope
()¶ Full name of the telescope.
Returns: - translation :
str
Translated value derived from the header.
- translation :
-
to_temperature
()¶ Temperature outside the dome.
Returns: - translation :
astropy.units.Quantity
Translated value derived from the header.
- translation :
-
to_tracking_radec
()¶ Calculate the tracking RA/Dec for this observation.
Currently will be
None
for geocentric apparent coordinates. Additionally, can beNone
for non-science observations.The method supports multiple versions of header defining tracking coordinates.
Returns: - coords :
astropy.coordinates.SkyCoord
The tracking coordinates.
- coords :
-
to_visit_id
()¶ 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: - translation :
int
Translated value derived from the header.
- translation :
-
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.
- value :
-