FixedPointingInfo¶
-
class
gammapy.data.FixedPointingInfo(meta)[source]¶ Bases:
objectIACT array pointing info.
Data format specification: POINTING
Parameters: - meta :
meta Meta header info from Table on pointing
Examples
>>> from gammapy.data import PointingInfo >>> path = '$GAMMAPY_DATA/tests/hess_event_list.fits' >>> pointing_info = PointingInfo.read(path) >>> print(pointing_info)
Attributes Summary
altazALT/AZ pointing position computed from RA/DEC ( SkyCoord).altaz_frameALT / AZ frame ( AltAz).durationPointing duration ( TimeDelta).locationObservatory location ( EarthLocation).obstimeAverage observation time for the observation ( Time).radecRA/DEC pointing position from table ( SkyCoord).time_refTime reference ( Time).time_startStart time ( Time).time_stopStop time ( Time).Methods Summary
read(filename[, hdu])Read pointing information table from file to obtain the metadata. Attributes Documentation
-
location¶ Observatory location (
EarthLocation).
Methods Documentation
-
classmethod
read(filename, hdu='EVENTS')[source]¶ Read pointing information table from file to obtain the metadata.
Parameters: - filename : str
File name
- hdu : int or str
HDU number or name
Returns: - pointing_info :
PointingInfo Pointing info object
- meta :