IRFMap#
- class gammapy.irf.IRFMap(irf_map, exposure_map)[source]#
Bases:
object
IRF map base class for DL4 instrument response functions.
Attributes Summary
Mask safe for the map.
Methods Summary
copy
()Copy IRF map.
cutout
(position, width[, mode])Cutout IRF map.
downsample
(factor[, axis_name, weights])Downsample the spatial dimension by a given factor.
from_hdulist
(hdulist[, hdu, hdu_bands, ...])Create from
HDUList
.read
(filename[, format, hdu, checksum])Read an IRF_map from file and create corresponding object.
slice_by_idx
(slices)Slice sub dataset.
stack
(other[, weights, nan_to_num])Stack IRF map with another one in place.
to_hdulist
([format])Convert to
HDUList
.to_region_nd_map
(region)Extract IRFMap in a given region or position.
write
(filename[, overwrite, format, checksum])Write IRF map to fits.
Attributes Documentation
- mask_safe_image#
Mask safe for the map.
- required_axes#
- tag#
Methods Documentation
- cutout(position, width, mode='trim')[source]#
Cutout IRF map.
- Parameters
- position
SkyCoord
Center position of the cutout region.
- widthtuple of
Angle
Angular sizes of the region in (lon, lat) in that specific order. If only one value is passed, a square region is extracted.
- mode{‘trim’, ‘partial’, ‘strict’}, optional
Mode option for Cutout2D, for details see
Cutout2D
. Default is “trim”.
- position
- Returns
- cutout
IRFMap
Cutout IRF map.
- cutout
- downsample(factor, axis_name=None, weights=None)[source]#
Downsample the spatial dimension by a given factor.
- classmethod from_hdulist(hdulist, hdu=None, hdu_bands=None, exposure_hdu=None, exposure_hdu_bands=None, format='gadf')[source]#
Create from
HDUList
.- Parameters
- hdulist
HDUList
HDU list.
- hdustr, optional
Name or index of the HDU with the IRF map. Default is None.
- hdu_bandsstr, optional
Name or index of the HDU with the IRF map BANDS table. Default is None.
- exposure_hdustr, optional
Name or index of the HDU with the exposure map data. Default is None.
- exposure_hdu_bandsstr, optional
Name or index of the HDU with the exposure map BANDS table. Default is None.
- format{“gadf”, “gtpsf”}, optional
File format. Default is “gadf”.
- hdulist
- Returns
- irf_map
IRFMap
IRF map.
- irf_map
- classmethod read(filename, format='gadf', hdu=None, checksum=False)[source]#
Read an IRF_map from file and create corresponding object.
- Parameters
- filenamestr or
Path
File name.
- format{“gadf”, “gtpsf”}, optional
File format. Default is “gadf”.
- hdustr or int
HDU location. Default is None.
- checksumbool
If True checks both DATASUM and CHECKSUM cards in the file headers. Default is False.
- filenamestr or
- Returns
- irf_map
PSFMap
,EDispMap
orEDispKernelMap
IRF map.
- irf_map
- slice_by_idx(slices)[source]#
Slice sub dataset.
The slicing only applies to the maps that define the corresponding axes.
- Parameters
- slicesdict
Dictionary of axes names and integers or
slice
object pairs. Contains one element for each non-spatial dimension. For integer indexing the corresponding axes is dropped from the map. Axes not specified in the dictionary are kept unchanged.
- Returns
- map_out
IRFMap
Sliced IRF map object.
- map_out
- to_hdulist(format='gadf')[source]#
Convert to
HDUList
.- Parameters
- format{“gadf”, “gtpsf”}, optional
File format. Default is “gadf”.
- Returns
- hdu_list
HDUList
HDU list.
- hdu_list
- to_region_nd_map(region)[source]#
Extract IRFMap in a given region or position.
If a region is given a mean IRF is computed, if a position is given the IRF is interpolated.
- write(filename, overwrite=False, format='gadf', checksum=False)[source]#
Write IRF map to fits.
- Parameters
- filenamestr or
Path
Filename to write to.
- overwritebool, optional
Overwrite existing file. Default is False.
- format{“gadf”, “gtpsf”}, optional
File format. Default is “gadf”.
- checksumbool, optional
When True adds both DATASUM and CHECKSUM cards to the headers written to the file. Default is False.
- filenamestr or