FitsTranslator¶
-
class
astro_metadata_translator.
FitsTranslator
(header, filename=None)¶ Bases:
astro_metadata_translator.MetadataTranslator
Metadata translator for FITS standard headers.
Understands:
- DATE-OBS
- INSTRUME
- TELESCOP
- OBSGEO-[X,Y,Z]
Attributes Summary
supported_instrument
translators
Methods Summary
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. determine_translator
(header[, filename])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
()Calculate start time of observation. to_datetime_end
()Calculate end time of observation. to_detector_exposure_id
()Return value of detector_exposure_id from headers. to_detector_group
()Return value of detector_group from headers. to_detector_name
()Return value of detector_name from headers. to_detector_num
()Return value of detector_num from headers. to_detector_serial
()Return value of detector_serial from headers. to_exposure_id
()Return value of exposure_id from headers. to_exposure_time
()Return value of exposure_time from headers. to_instrument
()The instrument used to observe the exposure. to_location
()Calculate the observatory 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
()Full name of the 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, 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
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 :
-
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 :
-
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.
- altaz_begin :
-
to_boresight_airmass
()¶ Return value of boresight_airmass from headers.
Airmass of the boresight of the telescope.
Returns: - boresight_airmass :
float
The translated property.
- boresight_airmass :
-
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.
- boresight_rotation_angle :
-
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.
- boresight_rotation_coord :
-
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.
- dark_time :
-
to_datetime_begin
()¶ Calculate start time of observation.
Uses FITS standard
DATE-OBS
andTIMESYS
headers.Returns: - start_time :
astropy.time.Time
Time corresponding to the start of the observation.
- start_time :
-
to_datetime_end
()¶ Calculate end time of observation.
Uses FITS standard
DATE-END
andTIMESYS
headers.Returns: - start_time :
astropy.time.Time
Time corresponding to the end of the observation.
- start_time :
-
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.
- detector_exposure_id :
-
to_detector_group
()¶ Return value of detector_group from headers.
Collection name of which this detector is a part. Can be None if there are no detector groupings.
Returns: - detector_group :
str
The translated property.
- detector_group :
-
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.
- detector_name :
-
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.
- detector_num :
-
to_detector_serial
()¶ Return value of detector_serial from headers.
Serial number/string associated with this detector.
Returns: - detector_serial :
str
The translated property.
- detector_serial :
-
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.
- exposure_id :
-
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.
- exposure_time :
-
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.
Uses FITS standard
OBSGEO-
headers.Returns: - location :
astropy.coordinates.EarthLocation
An object representing the location of the telescope.
- location :
-
to_object
()¶ Return value of object from headers.
Object of interest or field name.
Returns: - object :
str
The translated property.
- object :
-
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.
- observation_id :
-
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.
- observation_type :
-
to_physical_filter
()¶ Return value of physical_filter from headers.
The bandpass filter used for this observation.
Returns: - physical_filter :
str
The translated property.
- physical_filter :
-
to_pressure
()¶ Return value of pressure from headers.
Atmospheric pressure outside the dome.
Returns: - pressure :
astropy.units.Quantity
The translated property.
- pressure :
-
to_relative_humidity
()¶ Return value of relative_humidity from headers.
Relative humidity outside the dome.
Returns: - relative_humidity :
float
The translated property.
- relative_humidity :
-
to_science_program
()¶ Return value of science_program from headers.
Observing program (survey or proposal) identifier.
Returns: - science_program :
str
The translated property.
- science_program :
-
to_telescope
()¶ Full name of the telescope.
Returns: - translation :
str
Translated value derived from the header.
- translation :
-
to_temperature
()¶ Return value of temperature from headers.
Temperature outside the dome.
Returns: - temperature :
astropy.units.Quantity
The translated property.
- temperature :
-
to_tracking_radec
()¶ Return value of tracking_radec from headers.
Requested RA/Dec to track.
Returns: - tracking_radec :
astropy.coordinates.SkyCoord
The translated property.
- tracking_radec :
-
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.
- visit_id :
-
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 :