repository_name
stringlengths
7
55
func_path_in_repository
stringlengths
4
223
func_name
stringlengths
1
134
whole_func_string
stringlengths
75
104k
language
stringclasses
1 value
func_code_string
stringlengths
75
104k
func_code_tokens
listlengths
19
28.4k
func_documentation_string
stringlengths
1
46.9k
func_documentation_tokens
listlengths
1
1.97k
split_name
stringclasses
1 value
func_code_url
stringlengths
87
315
fermiPy/fermipy
fermipy/skymap.py
Map.get_pixel_indices
def get_pixel_indices(self, lons, lats, ibin=None): """Return the indices in the flat array corresponding to a set of coordinates Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin...
python
def get_pixel_indices(self, lons, lats, ibin=None): """Return the indices in the flat array corresponding to a set of coordinates Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin...
[ "def", "get_pixel_indices", "(", "self", ",", "lons", ",", "lats", ",", "ibin", "=", "None", ")", ":", "lons", "=", "np", ".", "array", "(", "lons", ",", "ndmin", "=", "1", ")", "lats", "=", "np", ".", "array", "(", "lats", ",", "ndmin", "=", "...
Return the indices in the flat array corresponding to a set of coordinates Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin : int or array-like Extract data only for a given e...
[ "Return", "the", "indices", "in", "the", "flat", "array", "corresponding", "to", "a", "set", "of", "coordinates" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L306-L349
fermiPy/fermipy
fermipy/skymap.py
Map.get_map_values
def get_map_values(self, lons, lats, ibin=None): """Return the map values corresponding to a set of coordinates. Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin : int or array-l...
python
def get_map_values(self, lons, lats, ibin=None): """Return the map values corresponding to a set of coordinates. Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin : int or array-l...
[ "def", "get_map_values", "(", "self", ",", "lons", ",", "lats", ",", "ibin", "=", "None", ")", ":", "pix_idxs", "=", "self", ".", "get_pixel_indices", "(", "lons", ",", "lats", ",", "ibin", ")", "idxs", "=", "copy", ".", "copy", "(", "pix_idxs", ")",...
Return the map values corresponding to a set of coordinates. Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin : int or array-like Extract data only for a given energy bin. No...
[ "Return", "the", "map", "values", "corresponding", "to", "a", "set", "of", "coordinates", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L351-L382
fermiPy/fermipy
fermipy/skymap.py
HpxMap.create_from_hdu
def create_from_hdu(cls, hdu, ebins): """ Creates and returns an HpxMap object from a FITS HDU. hdu : The FITS ebins : Energy bin edges [optional] """ hpx = HPX.create_from_hdu(hdu, ebins) colnames = hdu.columns.names cnames = [] if hpx.conv.convname ...
python
def create_from_hdu(cls, hdu, ebins): """ Creates and returns an HpxMap object from a FITS HDU. hdu : The FITS ebins : Energy bin edges [optional] """ hpx = HPX.create_from_hdu(hdu, ebins) colnames = hdu.columns.names cnames = [] if hpx.conv.convname ...
[ "def", "create_from_hdu", "(", "cls", ",", "hdu", ",", "ebins", ")", ":", "hpx", "=", "HPX", ".", "create_from_hdu", "(", "hdu", ",", "ebins", ")", "colnames", "=", "hdu", ".", "columns", ".", "names", "cnames", "=", "[", "]", "if", "hpx", ".", "co...
Creates and returns an HpxMap object from a FITS HDU. hdu : The FITS ebins : Energy bin edges [optional]
[ "Creates", "and", "returns", "an", "HpxMap", "object", "from", "a", "FITS", "HDU", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L430-L456
fermiPy/fermipy
fermipy/skymap.py
HpxMap.create_from_hdulist
def create_from_hdulist(cls, hdulist, **kwargs): """ Creates and returns an HpxMap object from a FITS HDUList extname : The name of the HDU with the map data ebounds : The name of the HDU with the energy bin data """ extname = kwargs.get('hdu', hdulist[1].name) ebins = f...
python
def create_from_hdulist(cls, hdulist, **kwargs): """ Creates and returns an HpxMap object from a FITS HDUList extname : The name of the HDU with the map data ebounds : The name of the HDU with the energy bin data """ extname = kwargs.get('hdu', hdulist[1].name) ebins = f...
[ "def", "create_from_hdulist", "(", "cls", ",", "hdulist", ",", "*", "*", "kwargs", ")", ":", "extname", "=", "kwargs", ".", "get", "(", "'hdu'", ",", "hdulist", "[", "1", "]", ".", "name", ")", "ebins", "=", "fits_utils", ".", "find_and_read_ebins", "(...
Creates and returns an HpxMap object from a FITS HDUList extname : The name of the HDU with the map data ebounds : The name of the HDU with the energy bin data
[ "Creates", "and", "returns", "an", "HpxMap", "object", "from", "a", "FITS", "HDUList" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L459-L467
fermiPy/fermipy
fermipy/skymap.py
HpxMap.make_wcs_from_hpx
def make_wcs_from_hpx(self, sum_ebins=False, proj='CAR', oversample=2, normalize=True): """Make a WCS object and convert HEALPix data into WCS projection NOTE: this re-calculates the mapping, if you have already calculated the mapping it is much faster to use c...
python
def make_wcs_from_hpx(self, sum_ebins=False, proj='CAR', oversample=2, normalize=True): """Make a WCS object and convert HEALPix data into WCS projection NOTE: this re-calculates the mapping, if you have already calculated the mapping it is much faster to use c...
[ "def", "make_wcs_from_hpx", "(", "self", ",", "sum_ebins", "=", "False", ",", "proj", "=", "'CAR'", ",", "oversample", "=", "2", ",", "normalize", "=", "True", ")", ":", "self", ".", "_wcs_proj", "=", "proj", "self", ".", "_wcs_oversample", "=", "oversam...
Make a WCS object and convert HEALPix data into WCS projection NOTE: this re-calculates the mapping, if you have already calculated the mapping it is much faster to use convert_to_cached_wcs() instead Parameters ---------- sum_ebins : bool sum energy bins ov...
[ "Make", "a", "WCS", "object", "and", "convert", "HEALPix", "data", "into", "WCS", "projection" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L478-L509
fermiPy/fermipy
fermipy/skymap.py
HpxMap.convert_to_cached_wcs
def convert_to_cached_wcs(self, hpx_in, sum_ebins=False, normalize=True): """ Make a WCS object and convert HEALPix data into WCS projection Parameters ---------- hpx_in : `~numpy.ndarray` HEALPix input data sum_ebins : bool sum energy bins over energy...
python
def convert_to_cached_wcs(self, hpx_in, sum_ebins=False, normalize=True): """ Make a WCS object and convert HEALPix data into WCS projection Parameters ---------- hpx_in : `~numpy.ndarray` HEALPix input data sum_ebins : bool sum energy bins over energy...
[ "def", "convert_to_cached_wcs", "(", "self", ",", "hpx_in", ",", "sum_ebins", "=", "False", ",", "normalize", "=", "True", ")", ":", "if", "self", ".", "_hpx2wcs", "is", "None", ":", "raise", "Exception", "(", "'HpxMap.convert_to_cached_wcs() called '", "'before...
Make a WCS object and convert HEALPix data into WCS projection Parameters ---------- hpx_in : `~numpy.ndarray` HEALPix input data sum_ebins : bool sum energy bins over energy bins before reprojecting normalize : bool True -> perserve integr...
[ "Make", "a", "WCS", "object", "and", "convert", "HEALPix", "data", "into", "WCS", "projection" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L511-L565
fermiPy/fermipy
fermipy/skymap.py
HpxMap.get_pixel_skydirs
def get_pixel_skydirs(self): """Get a list of sky coordinates for the centers of every pixel. """ sky_coords = self._hpx.get_sky_coords() if self.hpx.coordsys == 'GAL': return SkyCoord(l=sky_coords.T[0], b=sky_coords.T[1], unit='deg', frame='galactic') else: retur...
python
def get_pixel_skydirs(self): """Get a list of sky coordinates for the centers of every pixel. """ sky_coords = self._hpx.get_sky_coords() if self.hpx.coordsys == 'GAL': return SkyCoord(l=sky_coords.T[0], b=sky_coords.T[1], unit='deg', frame='galactic') else: retur...
[ "def", "get_pixel_skydirs", "(", "self", ")", ":", "sky_coords", "=", "self", ".", "_hpx", ".", "get_sky_coords", "(", ")", "if", "self", ".", "hpx", ".", "coordsys", "==", "'GAL'", ":", "return", "SkyCoord", "(", "l", "=", "sky_coords", ".", "T", "[",...
Get a list of sky coordinates for the centers of every pixel.
[ "Get", "a", "list", "of", "sky", "coordinates", "for", "the", "centers", "of", "every", "pixel", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L567-L573
fermiPy/fermipy
fermipy/skymap.py
HpxMap.sum_over_energy
def sum_over_energy(self): """ Reduce a counts cube to a counts map """ # We sum over axis 0 in the array, and drop the energy binning in the # hpx object return HpxMap(np.sum(self.counts, axis=0), self.hpx.copy_and_drop_energy())
python
def sum_over_energy(self): """ Reduce a counts cube to a counts map """ # We sum over axis 0 in the array, and drop the energy binning in the # hpx object return HpxMap(np.sum(self.counts, axis=0), self.hpx.copy_and_drop_energy())
[ "def", "sum_over_energy", "(", "self", ")", ":", "# We sum over axis 0 in the array, and drop the energy binning in the", "# hpx object", "return", "HpxMap", "(", "np", ".", "sum", "(", "self", ".", "counts", ",", "axis", "=", "0", ")", ",", "self", ".", "hpx", ...
Reduce a counts cube to a counts map
[ "Reduce", "a", "counts", "cube", "to", "a", "counts", "map" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L579-L583
fermiPy/fermipy
fermipy/skymap.py
HpxMap.get_map_values
def get_map_values(self, lons, lats, ibin=None): """Return the indices in the flat array corresponding to a set of coordinates Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin : ...
python
def get_map_values(self, lons, lats, ibin=None): """Return the indices in the flat array corresponding to a set of coordinates Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin : ...
[ "def", "get_map_values", "(", "self", ",", "lons", ",", "lats", ",", "ibin", "=", "None", ")", ":", "theta", "=", "np", ".", "pi", "/", "2.", "-", "np", ".", "radians", "(", "lats", ")", "phi", "=", "np", ".", "radians", "(", "lons", ")", "pix"...
Return the indices in the flat array corresponding to a set of coordinates Parameters ---------- lons : array-like 'Longitudes' (RA or GLON) lats : array-like 'Latitidues' (DEC or GLAT) ibin : int or array-like Extract data only for a given e...
[ "Return", "the", "indices", "in", "the", "flat", "array", "corresponding", "to", "a", "set", "of", "coordinates" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L585-L613
fermiPy/fermipy
fermipy/skymap.py
HpxMap.interpolate
def interpolate(self, lon, lat, egy=None, interp_log=True): """Interpolate map values. Parameters ---------- interp_log : bool Interpolate the z-coordinate in logspace. """ if self.data.ndim == 1: theta = np.pi / 2. - np.radians(lat) ...
python
def interpolate(self, lon, lat, egy=None, interp_log=True): """Interpolate map values. Parameters ---------- interp_log : bool Interpolate the z-coordinate in logspace. """ if self.data.ndim == 1: theta = np.pi / 2. - np.radians(lat) ...
[ "def", "interpolate", "(", "self", ",", "lon", ",", "lat", ",", "egy", "=", "None", ",", "interp_log", "=", "True", ")", ":", "if", "self", ".", "data", ".", "ndim", "==", "1", ":", "theta", "=", "np", ".", "pi", "/", "2.", "-", "np", ".", "r...
Interpolate map values. Parameters ---------- interp_log : bool Interpolate the z-coordinate in logspace.
[ "Interpolate", "map", "values", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L615-L631
fermiPy/fermipy
fermipy/skymap.py
HpxMap._interpolate_cube
def _interpolate_cube(self, lon, lat, egy=None, interp_log=True): """Perform interpolation on a healpix cube. If egy is None then interpolation will be performed on the existing energy planes. """ shape = np.broadcast(lon, lat, egy).shape lon = lon * np.ones(shape) ...
python
def _interpolate_cube(self, lon, lat, egy=None, interp_log=True): """Perform interpolation on a healpix cube. If egy is None then interpolation will be performed on the existing energy planes. """ shape = np.broadcast(lon, lat, egy).shape lon = lon * np.ones(shape) ...
[ "def", "_interpolate_cube", "(", "self", ",", "lon", ",", "lat", ",", "egy", "=", "None", ",", "interp_log", "=", "True", ")", ":", "shape", "=", "np", ".", "broadcast", "(", "lon", ",", "lat", ",", "egy", ")", ".", "shape", "lon", "=", "lon", "*...
Perform interpolation on a healpix cube. If egy is None then interpolation will be performed on the existing energy planes.
[ "Perform", "interpolation", "on", "a", "healpix", "cube", ".", "If", "egy", "is", "None", "then", "interpolation", "will", "be", "performed", "on", "the", "existing", "energy", "planes", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L633-L667
fermiPy/fermipy
fermipy/skymap.py
HpxMap.expanded_counts_map
def expanded_counts_map(self): """ return the full counts map """ if self.hpx._ipix is None: return self.counts output = np.zeros( (self.counts.shape[0], self.hpx._maxpix), self.counts.dtype) for i in range(self.counts.shape[0]): output[i][self.hpx._i...
python
def expanded_counts_map(self): """ return the full counts map """ if self.hpx._ipix is None: return self.counts output = np.zeros( (self.counts.shape[0], self.hpx._maxpix), self.counts.dtype) for i in range(self.counts.shape[0]): output[i][self.hpx._i...
[ "def", "expanded_counts_map", "(", "self", ")", ":", "if", "self", ".", "hpx", ".", "_ipix", "is", "None", ":", "return", "self", ".", "counts", "output", "=", "np", ".", "zeros", "(", "(", "self", ".", "counts", ".", "shape", "[", "0", "]", ",", ...
return the full counts map
[ "return", "the", "full", "counts", "map" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L687-L696
fermiPy/fermipy
fermipy/skymap.py
HpxMap.explicit_counts_map
def explicit_counts_map(self, pixels=None): """ return a counts map with explicit index scheme Parameters ---------- pixels : `np.ndarray` or None If set, grab only those pixels. If none, grab only non-zero pixels """ # No pixel index, so build ...
python
def explicit_counts_map(self, pixels=None): """ return a counts map with explicit index scheme Parameters ---------- pixels : `np.ndarray` or None If set, grab only those pixels. If none, grab only non-zero pixels """ # No pixel index, so build ...
[ "def", "explicit_counts_map", "(", "self", ",", "pixels", "=", "None", ")", ":", "# No pixel index, so build one", "if", "self", ".", "hpx", ".", "_ipix", "is", "None", ":", "if", "self", ".", "data", ".", "ndim", "==", "2", ":", "summed", "=", "self", ...
return a counts map with explicit index scheme Parameters ---------- pixels : `np.ndarray` or None If set, grab only those pixels. If none, grab only non-zero pixels
[ "return", "a", "counts", "map", "with", "explicit", "index", "scheme" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L698-L729
fermiPy/fermipy
fermipy/skymap.py
HpxMap.sparse_counts_map
def sparse_counts_map(self): """ return a counts map with sparse index scheme """ if self.hpx._ipix is None: flatarray = self.data.flattern() else: flatarray = self.expanded_counts_map() nz = flatarray.nonzero()[0] data_out = flatarray[nz] ...
python
def sparse_counts_map(self): """ return a counts map with sparse index scheme """ if self.hpx._ipix is None: flatarray = self.data.flattern() else: flatarray = self.expanded_counts_map() nz = flatarray.nonzero()[0] data_out = flatarray[nz] ...
[ "def", "sparse_counts_map", "(", "self", ")", ":", "if", "self", ".", "hpx", ".", "_ipix", "is", "None", ":", "flatarray", "=", "self", ".", "data", ".", "flattern", "(", ")", "else", ":", "flatarray", "=", "self", ".", "expanded_counts_map", "(", ")",...
return a counts map with sparse index scheme
[ "return", "a", "counts", "map", "with", "sparse", "index", "scheme" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/skymap.py#L731-L740
fermiPy/fermipy
fermipy/sensitivity.py
SensitivityCalc.compute_counts
def compute_counts(self, skydir, fn, ebins=None): """Compute signal and background counts for a point source at position ``skydir`` with spectral parameterization ``fn``. Parameters ---------- skydir : `~astropy.coordinates.SkyCoord` ebins : `~numpy.ndarray` Re...
python
def compute_counts(self, skydir, fn, ebins=None): """Compute signal and background counts for a point source at position ``skydir`` with spectral parameterization ``fn``. Parameters ---------- skydir : `~astropy.coordinates.SkyCoord` ebins : `~numpy.ndarray` Re...
[ "def", "compute_counts", "(", "self", ",", "skydir", ",", "fn", ",", "ebins", "=", "None", ")", ":", "if", "ebins", "is", "None", ":", "ebins", "=", "self", ".", "ebins", "ectr", "=", "self", ".", "ectr", "else", ":", "ectr", "=", "np", ".", "exp...
Compute signal and background counts for a point source at position ``skydir`` with spectral parameterization ``fn``. Parameters ---------- skydir : `~astropy.coordinates.SkyCoord` ebins : `~numpy.ndarray` Returns ------- sig : `~numpy.ndarray` ...
[ "Compute", "signal", "and", "background", "counts", "for", "a", "point", "source", "at", "position", "skydir", "with", "spectral", "parameterization", "fn", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/sensitivity.py#L95-L192
fermiPy/fermipy
fermipy/sensitivity.py
SensitivityCalc.diff_flux_threshold
def diff_flux_threshold(self, skydir, fn, ts_thresh, min_counts): """Compute the differential flux threshold for a point source at position ``skydir`` with spectral parameterization ``fn``. Parameters ---------- skydir : `~astropy.coordinates.SkyCoord` Sky coordinate...
python
def diff_flux_threshold(self, skydir, fn, ts_thresh, min_counts): """Compute the differential flux threshold for a point source at position ``skydir`` with spectral parameterization ``fn``. Parameters ---------- skydir : `~astropy.coordinates.SkyCoord` Sky coordinate...
[ "def", "diff_flux_threshold", "(", "self", ",", "skydir", ",", "fn", ",", "ts_thresh", ",", "min_counts", ")", ":", "sig", ",", "bkg", ",", "bkg_fit", "=", "self", ".", "compute_counts", "(", "skydir", ",", "fn", ")", "norms", "=", "irfs", ".", "comput...
Compute the differential flux threshold for a point source at position ``skydir`` with spectral parameterization ``fn``. Parameters ---------- skydir : `~astropy.coordinates.SkyCoord` Sky coordinates at which the sensitivity will be evaluated. fn : `~fermipy.spectru...
[ "Compute", "the", "differential", "flux", "threshold", "for", "a", "point", "source", "at", "position", "skydir", "with", "spectral", "parameterization", "fn", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/sensitivity.py#L194-L230
fermiPy/fermipy
fermipy/sensitivity.py
SensitivityCalc.int_flux_threshold
def int_flux_threshold(self, skydir, fn, ts_thresh, min_counts): """Compute the integral flux threshold for a point source at position ``skydir`` with spectral parameterization ``fn``. """ ebins = 10**np.linspace(np.log10(self.ebins[0]), np.log10(self.eb...
python
def int_flux_threshold(self, skydir, fn, ts_thresh, min_counts): """Compute the integral flux threshold for a point source at position ``skydir`` with spectral parameterization ``fn``. """ ebins = 10**np.linspace(np.log10(self.ebins[0]), np.log10(self.eb...
[ "def", "int_flux_threshold", "(", "self", ",", "skydir", ",", "fn", ",", "ts_thresh", ",", "min_counts", ")", ":", "ebins", "=", "10", "**", "np", ".", "linspace", "(", "np", ".", "log10", "(", "self", ".", "ebins", "[", "0", "]", ")", ",", "np", ...
Compute the integral flux threshold for a point source at position ``skydir`` with spectral parameterization ``fn``.
[ "Compute", "the", "integral", "flux", "threshold", "for", "a", "point", "source", "at", "position", "skydir", "with", "spectral", "parameterization", "fn", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/sensitivity.py#L232-L279
fermiPy/fermipy
fermipy/hpx_utils.py
coords_to_vec
def coords_to_vec(lon, lat): """ Converts longitute and latitude coordinates to a unit 3-vector return array(3,n) with v_x[i],v_y[i],v_z[i] = directional cosines """ phi = np.radians(lon) theta = (np.pi / 2) - np.radians(lat) sin_t = np.sin(theta) cos_t = np.cos(theta) xVals = sin_t * ...
python
def coords_to_vec(lon, lat): """ Converts longitute and latitude coordinates to a unit 3-vector return array(3,n) with v_x[i],v_y[i],v_z[i] = directional cosines """ phi = np.radians(lon) theta = (np.pi / 2) - np.radians(lat) sin_t = np.sin(theta) cos_t = np.cos(theta) xVals = sin_t * ...
[ "def", "coords_to_vec", "(", "lon", ",", "lat", ")", ":", "phi", "=", "np", ".", "radians", "(", "lon", ")", "theta", "=", "(", "np", ".", "pi", "/", "2", ")", "-", "np", ".", "radians", "(", "lat", ")", "sin_t", "=", "np", ".", "sin", "(", ...
Converts longitute and latitude coordinates to a unit 3-vector return array(3,n) with v_x[i],v_y[i],v_z[i] = directional cosines
[ "Converts", "longitute", "and", "latitude", "coordinates", "to", "a", "unit", "3", "-", "vector" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L57-L73
fermiPy/fermipy
fermipy/hpx_utils.py
get_pixel_size_from_nside
def get_pixel_size_from_nside(nside): """ Returns an estimate of the pixel size from the HEALPix nside coordinate This just uses a lookup table to provide a nice round number for each HEALPix order. """ order = int(np.log2(nside)) if order < 0 or order > 13: raise ValueError('HEALPix o...
python
def get_pixel_size_from_nside(nside): """ Returns an estimate of the pixel size from the HEALPix nside coordinate This just uses a lookup table to provide a nice round number for each HEALPix order. """ order = int(np.log2(nside)) if order < 0 or order > 13: raise ValueError('HEALPix o...
[ "def", "get_pixel_size_from_nside", "(", "nside", ")", ":", "order", "=", "int", "(", "np", ".", "log2", "(", "nside", ")", ")", "if", "order", "<", "0", "or", "order", ">", "13", ":", "raise", "ValueError", "(", "'HEALPix order must be between 0 to 13 %i'",...
Returns an estimate of the pixel size from the HEALPix nside coordinate This just uses a lookup table to provide a nice round number for each HEALPix order.
[ "Returns", "an", "estimate", "of", "the", "pixel", "size", "from", "the", "HEALPix", "nside", "coordinate" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L76-L86
fermiPy/fermipy
fermipy/hpx_utils.py
hpx_to_axes
def hpx_to_axes(h, npix): """ Generate a sequence of bin edge vectors corresponding to the axes of a HPX object.""" x = h.ebins z = np.arange(npix[-1] + 1) return x, z
python
def hpx_to_axes(h, npix): """ Generate a sequence of bin edge vectors corresponding to the axes of a HPX object.""" x = h.ebins z = np.arange(npix[-1] + 1) return x, z
[ "def", "hpx_to_axes", "(", "h", ",", "npix", ")", ":", "x", "=", "h", ".", "ebins", "z", "=", "np", ".", "arange", "(", "npix", "[", "-", "1", "]", "+", "1", ")", "return", "x", ",", "z" ]
Generate a sequence of bin edge vectors corresponding to the axes of a HPX object.
[ "Generate", "a", "sequence", "of", "bin", "edge", "vectors", "corresponding", "to", "the", "axes", "of", "a", "HPX", "object", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L89-L95
fermiPy/fermipy
fermipy/hpx_utils.py
hpx_to_coords
def hpx_to_coords(h, shape): """ Generate an N x D list of pixel center coordinates where N is the number of pixels and D is the dimensionality of the map.""" x, z = hpx_to_axes(h, shape) x = np.sqrt(x[0:-1] * x[1:]) z = z[:-1] + 0.5 x = np.ravel(np.ones(shape) * x[:, np.newaxis]) z = np....
python
def hpx_to_coords(h, shape): """ Generate an N x D list of pixel center coordinates where N is the number of pixels and D is the dimensionality of the map.""" x, z = hpx_to_axes(h, shape) x = np.sqrt(x[0:-1] * x[1:]) z = z[:-1] + 0.5 x = np.ravel(np.ones(shape) * x[:, np.newaxis]) z = np....
[ "def", "hpx_to_coords", "(", "h", ",", "shape", ")", ":", "x", ",", "z", "=", "hpx_to_axes", "(", "h", ",", "shape", ")", "x", "=", "np", ".", "sqrt", "(", "x", "[", "0", ":", "-", "1", "]", "*", "x", "[", "1", ":", "]", ")", "z", "=", ...
Generate an N x D list of pixel center coordinates where N is the number of pixels and D is the dimensionality of the map.
[ "Generate", "an", "N", "x", "D", "list", "of", "pixel", "center", "coordinates", "where", "N", "is", "the", "number", "of", "pixels", "and", "D", "is", "the", "dimensionality", "of", "the", "map", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L98-L110
fermiPy/fermipy
fermipy/hpx_utils.py
make_hpx_to_wcs_mapping_centers
def make_hpx_to_wcs_mapping_centers(hpx, wcs): """ Make the mapping data needed to from from HPX pixelization to a WCS-based array Parameters ---------- hpx : `~fermipy.hpx_utils.HPX` The healpix mapping (an HPX object) wcs : `~astropy.wcs.WCS` The wcs mapping (a pywcs.wc...
python
def make_hpx_to_wcs_mapping_centers(hpx, wcs): """ Make the mapping data needed to from from HPX pixelization to a WCS-based array Parameters ---------- hpx : `~fermipy.hpx_utils.HPX` The healpix mapping (an HPX object) wcs : `~astropy.wcs.WCS` The wcs mapping (a pywcs.wc...
[ "def", "make_hpx_to_wcs_mapping_centers", "(", "hpx", ",", "wcs", ")", ":", "npix", "=", "(", "int", "(", "wcs", ".", "wcs", ".", "crpix", "[", "0", "]", "*", "2", ")", ",", "int", "(", "wcs", ".", "wcs", ".", "crpix", "[", "1", "]", "*", "2", ...
Make the mapping data needed to from from HPX pixelization to a WCS-based array Parameters ---------- hpx : `~fermipy.hpx_utils.HPX` The healpix mapping (an HPX object) wcs : `~astropy.wcs.WCS` The wcs mapping (a pywcs.wcs object) Returns ------- ipixs : ar...
[ "Make", "the", "mapping", "data", "needed", "to", "from", "from", "HPX", "pixelization", "to", "a", "WCS", "-", "based", "array" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L122-L155
fermiPy/fermipy
fermipy/hpx_utils.py
make_hpx_to_wcs_mapping
def make_hpx_to_wcs_mapping(hpx, wcs): """Make the mapping data needed to from from HPX pixelization to a WCS-based array Parameters ---------- hpx : `~fermipy.hpx_utils.HPX` The healpix mapping (an HPX object) wcs : `~astropy.wcs.WCS` The wcs mapping (a pywcs.wcs object)...
python
def make_hpx_to_wcs_mapping(hpx, wcs): """Make the mapping data needed to from from HPX pixelization to a WCS-based array Parameters ---------- hpx : `~fermipy.hpx_utils.HPX` The healpix mapping (an HPX object) wcs : `~astropy.wcs.WCS` The wcs mapping (a pywcs.wcs object)...
[ "def", "make_hpx_to_wcs_mapping", "(", "hpx", ",", "wcs", ")", ":", "npix", "=", "(", "int", "(", "wcs", ".", "wcs", ".", "crpix", "[", "0", "]", "*", "2", ")", ",", "int", "(", "wcs", ".", "wcs", ".", "crpix", "[", "1", "]", "*", "2", ")", ...
Make the mapping data needed to from from HPX pixelization to a WCS-based array Parameters ---------- hpx : `~fermipy.hpx_utils.HPX` The healpix mapping (an HPX object) wcs : `~astropy.wcs.WCS` The wcs mapping (a pywcs.wcs object) Returns ------- ipixs : ar...
[ "Make", "the", "mapping", "data", "needed", "to", "from", "from", "HPX", "pixelization", "to", "a", "WCS", "-", "based", "array" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L158-L214
fermiPy/fermipy
fermipy/hpx_utils.py
parse_hpxregion
def parse_hpxregion(region): """Parse the HPX_REG header keyword into a list of tokens.""" m = re.match(r'([A-Za-z\_]*?)\((.*?)\)', region) if m is None: raise Exception('Failed to parse hpx region string.') if not m.group(1): return re.split(',', m.group(2)) else: return [...
python
def parse_hpxregion(region): """Parse the HPX_REG header keyword into a list of tokens.""" m = re.match(r'([A-Za-z\_]*?)\((.*?)\)', region) if m is None: raise Exception('Failed to parse hpx region string.') if not m.group(1): return re.split(',', m.group(2)) else: return [...
[ "def", "parse_hpxregion", "(", "region", ")", ":", "m", "=", "re", ".", "match", "(", "r'([A-Za-z\\_]*?)\\((.*?)\\)'", ",", "region", ")", "if", "m", "is", "None", ":", "raise", "Exception", "(", "'Failed to parse hpx region string.'", ")", "if", "not", "m", ...
Parse the HPX_REG header keyword into a list of tokens.
[ "Parse", "the", "HPX_REG", "header", "keyword", "into", "a", "list", "of", "tokens", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L226-L236
fermiPy/fermipy
fermipy/hpx_utils.py
upix_to_pix
def upix_to_pix(upix): """Get the nside from a unique pixel number.""" nside = np.power(2, np.floor(np.log2(upix / 4)) / 2).astype(int) pix = upix - 4 * np.power(nside, 2) return pix, nside
python
def upix_to_pix(upix): """Get the nside from a unique pixel number.""" nside = np.power(2, np.floor(np.log2(upix / 4)) / 2).astype(int) pix = upix - 4 * np.power(nside, 2) return pix, nside
[ "def", "upix_to_pix", "(", "upix", ")", ":", "nside", "=", "np", ".", "power", "(", "2", ",", "np", ".", "floor", "(", "np", ".", "log2", "(", "upix", "/", "4", ")", ")", "/", "2", ")", ".", "astype", "(", "int", ")", "pix", "=", "upix", "-...
Get the nside from a unique pixel number.
[ "Get", "the", "nside", "from", "a", "unique", "pixel", "number", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L244-L248
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.create_hpx
def create_hpx(cls, nside, nest, coordsys='CEL', order=-1, ebins=None, region=None, conv=HPX_Conv('FGST_CCUBE'), pixels=None): """Create a HPX object. Parameters ---------- nside : int HEALPix nside paramter nest : bool True for H...
python
def create_hpx(cls, nside, nest, coordsys='CEL', order=-1, ebins=None, region=None, conv=HPX_Conv('FGST_CCUBE'), pixels=None): """Create a HPX object. Parameters ---------- nside : int HEALPix nside paramter nest : bool True for H...
[ "def", "create_hpx", "(", "cls", ",", "nside", ",", "nest", ",", "coordsys", "=", "'CEL'", ",", "order", "=", "-", "1", ",", "ebins", "=", "None", ",", "region", "=", "None", ",", "conv", "=", "HPX_Conv", "(", "'FGST_CCUBE'", ")", ",", "pixels", "=...
Create a HPX object. Parameters ---------- nside : int HEALPix nside paramter nest : bool True for HEALPix "NESTED" indexing scheme, False for "RING" scheme. coordsys : str "CEL" or "GAL" order : int nside = 2**ord...
[ "Create", "a", "HPX", "object", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L423-L454
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.identify_HPX_convention
def identify_HPX_convention(header): """ Identify the convention used to write this file """ # Hopefully the file contains the HPX_CONV keyword specifying # the convention used try: return header['HPX_CONV'] except KeyError: pass indxschm = header...
python
def identify_HPX_convention(header): """ Identify the convention used to write this file """ # Hopefully the file contains the HPX_CONV keyword specifying # the convention used try: return header['HPX_CONV'] except KeyError: pass indxschm = header...
[ "def", "identify_HPX_convention", "(", "header", ")", ":", "# Hopefully the file contains the HPX_CONV keyword specifying", "# the convention used", "try", ":", "return", "header", "[", "'HPX_CONV'", "]", "except", "KeyError", ":", "pass", "indxschm", "=", "header", ".", ...
Identify the convention used to write this file
[ "Identify", "the", "convention", "used", "to", "write", "this", "file" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L457-L501
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.create_from_header
def create_from_header(cls, header, ebins=None, pixels=None): """ Creates an HPX object from a FITS header. header : The FITS header ebins : Energy bin edges [optional] """ convname = HPX.identify_HPX_convention(header) conv = HPX_FITS_CONVENTIONS[convname] if ...
python
def create_from_header(cls, header, ebins=None, pixels=None): """ Creates an HPX object from a FITS header. header : The FITS header ebins : Energy bin edges [optional] """ convname = HPX.identify_HPX_convention(header) conv = HPX_FITS_CONVENTIONS[convname] if ...
[ "def", "create_from_header", "(", "cls", ",", "header", ",", "ebins", "=", "None", ",", "pixels", "=", "None", ")", ":", "convname", "=", "HPX", ".", "identify_HPX_convention", "(", "header", ")", "conv", "=", "HPX_FITS_CONVENTIONS", "[", "convname", "]", ...
Creates an HPX object from a FITS header. header : The FITS header ebins : Energy bin edges [optional]
[ "Creates", "an", "HPX", "object", "from", "a", "FITS", "header", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L504-L556
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.create_from_hdu
def create_from_hdu(cls, hdu, ebins=None): """ Creates an HPX object from a FITS header. hdu : The FITS hdu ebins : Energy bin edges [optional] """ convname = HPX.identify_HPX_convention(hdu.header) conv = HPX_FITS_CONVENTIONS[convname] try: pixel...
python
def create_from_hdu(cls, hdu, ebins=None): """ Creates an HPX object from a FITS header. hdu : The FITS hdu ebins : Energy bin edges [optional] """ convname = HPX.identify_HPX_convention(hdu.header) conv = HPX_FITS_CONVENTIONS[convname] try: pixel...
[ "def", "create_from_hdu", "(", "cls", ",", "hdu", ",", "ebins", "=", "None", ")", ":", "convname", "=", "HPX", ".", "identify_HPX_convention", "(", "hdu", ".", "header", ")", "conv", "=", "HPX_FITS_CONVENTIONS", "[", "convname", "]", "try", ":", "pixels", ...
Creates an HPX object from a FITS header. hdu : The FITS hdu ebins : Energy bin edges [optional]
[ "Creates", "an", "HPX", "object", "from", "a", "FITS", "header", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L559-L571
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.make_header
def make_header(self): """ Builds and returns FITS header for this HEALPix map """ cards = [fits.Card("TELESCOP", "GLAST"), fits.Card("INSTRUME", "LAT"), fits.Card(self._conv.coordsys, self._coordsys), fits.Card("PIXTYPE", "HEALPIX"), f...
python
def make_header(self): """ Builds and returns FITS header for this HEALPix map """ cards = [fits.Card("TELESCOP", "GLAST"), fits.Card("INSTRUME", "LAT"), fits.Card(self._conv.coordsys, self._coordsys), fits.Card("PIXTYPE", "HEALPIX"), f...
[ "def", "make_header", "(", "self", ")", ":", "cards", "=", "[", "fits", ".", "Card", "(", "\"TELESCOP\"", ",", "\"GLAST\"", ")", ",", "fits", ".", "Card", "(", "\"INSTRUME\"", ",", "\"LAT\"", ")", ",", "fits", ".", "Card", "(", "self", ".", "_conv", ...
Builds and returns FITS header for this HEALPix map
[ "Builds", "and", "returns", "FITS", "header", "for", "this", "HEALPix", "map" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L574-L603
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.make_hdu
def make_hdu(self, data, **kwargs): """ Builds and returns a FITs HDU with input data data : The data begin stored Keyword arguments ------------------- extname : The HDU extension name colbase : The prefix for column names """ shape = d...
python
def make_hdu(self, data, **kwargs): """ Builds and returns a FITs HDU with input data data : The data begin stored Keyword arguments ------------------- extname : The HDU extension name colbase : The prefix for column names """ shape = d...
[ "def", "make_hdu", "(", "self", ",", "data", ",", "*", "*", "kwargs", ")", ":", "shape", "=", "data", ".", "shape", "extname", "=", "kwargs", ".", "get", "(", "'extname'", ",", "self", ".", "conv", ".", "extname", ")", "if", "shape", "[", "-", "1...
Builds and returns a FITs HDU with input data data : The data begin stored Keyword arguments ------------------- extname : The HDU extension name colbase : The prefix for column names
[ "Builds", "and", "returns", "a", "FITs", "HDU", "with", "input", "data" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L606-L656
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.make_energy_bounds_hdu
def make_energy_bounds_hdu(self, extname="EBOUNDS"): """ Builds and returns a FITs HDU with the energy bin boundries extname : The HDU extension name """ if self._ebins is None: return None cols = [fits.Column("CHANNEL", "I", array=np.arange(1, len(self...
python
def make_energy_bounds_hdu(self, extname="EBOUNDS"): """ Builds and returns a FITs HDU with the energy bin boundries extname : The HDU extension name """ if self._ebins is None: return None cols = [fits.Column("CHANNEL", "I", array=np.arange(1, len(self...
[ "def", "make_energy_bounds_hdu", "(", "self", ",", "extname", "=", "\"EBOUNDS\"", ")", ":", "if", "self", ".", "_ebins", "is", "None", ":", "return", "None", "cols", "=", "[", "fits", ".", "Column", "(", "\"CHANNEL\"", ",", "\"I\"", ",", "array", "=", ...
Builds and returns a FITs HDU with the energy bin boundries extname : The HDU extension name
[ "Builds", "and", "returns", "a", "FITs", "HDU", "with", "the", "energy", "bin", "boundries" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L658-L671
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.make_energies_hdu
def make_energies_hdu(self, extname="ENERGIES"): """ Builds and returns a FITs HDU with the energy bin boundries extname : The HDU extension name """ if self._evals is None: return None cols = [fits.Column("ENERGY", "1E", unit='MeV', ...
python
def make_energies_hdu(self, extname="ENERGIES"): """ Builds and returns a FITs HDU with the energy bin boundries extname : The HDU extension name """ if self._evals is None: return None cols = [fits.Column("ENERGY", "1E", unit='MeV', ...
[ "def", "make_energies_hdu", "(", "self", ",", "extname", "=", "\"ENERGIES\"", ")", ":", "if", "self", ".", "_evals", "is", "None", ":", "return", "None", "cols", "=", "[", "fits", ".", "Column", "(", "\"ENERGY\"", ",", "\"1E\"", ",", "unit", "=", "'MeV...
Builds and returns a FITs HDU with the energy bin boundries extname : The HDU extension name
[ "Builds", "and", "returns", "a", "FITs", "HDU", "with", "the", "energy", "bin", "boundries" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L673-L684
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.write_fits
def write_fits(self, data, outfile, extname="SKYMAP", clobber=True): """ Write input data to a FITS file data : The data begin stored outfile : The name of the output file extname : The HDU extension name clobber : True -> overwrite existing files """ ...
python
def write_fits(self, data, outfile, extname="SKYMAP", clobber=True): """ Write input data to a FITS file data : The data begin stored outfile : The name of the output file extname : The HDU extension name clobber : True -> overwrite existing files """ ...
[ "def", "write_fits", "(", "self", ",", "data", ",", "outfile", ",", "extname", "=", "\"SKYMAP\"", ",", "clobber", "=", "True", ")", ":", "hdu_prim", "=", "fits", ".", "PrimaryHDU", "(", ")", "hdu_hpx", "=", "self", ".", "make_hdu", "(", "data", ",", ...
Write input data to a FITS file data : The data begin stored outfile : The name of the output file extname : The HDU extension name clobber : True -> overwrite existing files
[ "Write", "input", "data", "to", "a", "FITS", "file" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L686-L704
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.get_index_list
def get_index_list(nside, nest, region): """ Returns the list of pixels indices for all the pixels in a region nside : HEALPix nside parameter nest : True for 'NESTED', False = 'RING' region : HEALPix region string """ tokens = parse_hpxregion(region) i...
python
def get_index_list(nside, nest, region): """ Returns the list of pixels indices for all the pixels in a region nside : HEALPix nside parameter nest : True for 'NESTED', False = 'RING' region : HEALPix region string """ tokens = parse_hpxregion(region) i...
[ "def", "get_index_list", "(", "nside", ",", "nest", ",", "region", ")", ":", "tokens", "=", "parse_hpxregion", "(", "region", ")", "if", "tokens", "[", "0", "]", "==", "'DISK'", ":", "vec", "=", "coords_to_vec", "(", "float", "(", "tokens", "[", "1", ...
Returns the list of pixels indices for all the pixels in a region nside : HEALPix nside parameter nest : True for 'NESTED', False = 'RING' region : HEALPix region string
[ "Returns", "the", "list", "of", "pixels", "indices", "for", "all", "the", "pixels", "in", "a", "region" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L707-L738
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.get_ref_dir
def get_ref_dir(region, coordsys): """ Finds and returns the reference direction for a given HEALPix region string. region : a string describing a HEALPix region coordsys : coordinate system, GAL | CEL """ if region is None: if coordsys == "GAL": ...
python
def get_ref_dir(region, coordsys): """ Finds and returns the reference direction for a given HEALPix region string. region : a string describing a HEALPix region coordsys : coordinate system, GAL | CEL """ if region is None: if coordsys == "GAL": ...
[ "def", "get_ref_dir", "(", "region", ",", "coordsys", ")", ":", "if", "region", "is", "None", ":", "if", "coordsys", "==", "\"GAL\"", ":", "c", "=", "SkyCoord", "(", "0.", ",", "0.", ",", "frame", "=", "Galactic", ",", "unit", "=", "\"deg\"", ")", ...
Finds and returns the reference direction for a given HEALPix region string. region : a string describing a HEALPix region coordsys : coordinate system, GAL | CEL
[ "Finds", "and", "returns", "the", "reference", "direction", "for", "a", "given", "HEALPix", "region", "string", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L741-L785
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.get_region_size
def get_region_size(region): """ Finds and returns the approximate size of region (in degrees) from a HEALPix region string. """ if region is None: return 180. tokens = parse_hpxregion(region) if tokens[0] in ['DISK', 'DISK_INC']: return float...
python
def get_region_size(region): """ Finds and returns the approximate size of region (in degrees) from a HEALPix region string. """ if region is None: return 180. tokens = parse_hpxregion(region) if tokens[0] in ['DISK', 'DISK_INC']: return float...
[ "def", "get_region_size", "(", "region", ")", ":", "if", "region", "is", "None", ":", "return", "180.", "tokens", "=", "parse_hpxregion", "(", "region", ")", "if", "tokens", "[", "0", "]", "in", "[", "'DISK'", ",", "'DISK_INC'", "]", ":", "return", "fl...
Finds and returns the approximate size of region (in degrees) from a HEALPix region string.
[ "Finds", "and", "returns", "the", "approximate", "size", "of", "region", "(", "in", "degrees", ")", "from", "a", "HEALPix", "region", "string", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L788-L803
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.make_wcs
def make_wcs(self, naxis=2, proj='CAR', energies=None, oversample=2): """ Make a WCS projection appropirate for this HPX pixelization """ w = WCS(naxis=naxis) skydir = self.get_ref_dir(self._region, self.coordsys) if self.coordsys == 'CEL': w.wcs.ctype[0] = 'RA---%s'...
python
def make_wcs(self, naxis=2, proj='CAR', energies=None, oversample=2): """ Make a WCS projection appropirate for this HPX pixelization """ w = WCS(naxis=naxis) skydir = self.get_ref_dir(self._region, self.coordsys) if self.coordsys == 'CEL': w.wcs.ctype[0] = 'RA---%s'...
[ "def", "make_wcs", "(", "self", ",", "naxis", "=", "2", ",", "proj", "=", "'CAR'", ",", "energies", "=", "None", ",", "oversample", "=", "2", ")", ":", "w", "=", "WCS", "(", "naxis", "=", "naxis", ")", "skydir", "=", "self", ".", "get_ref_dir", "...
Make a WCS projection appropirate for this HPX pixelization
[ "Make", "a", "WCS", "projection", "appropirate", "for", "this", "HPX", "pixelization" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L805-L854
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.get_sky_coords
def get_sky_coords(self): """ Get the sky coordinates of all the pixels in this pixelization """ if self._ipix is None: theta, phi = hp.pix2ang( self._nside, list(range(self._npix)), self._nest) else: theta, phi = hp.pix2ang(self._nside, self._ipix, self._...
python
def get_sky_coords(self): """ Get the sky coordinates of all the pixels in this pixelization """ if self._ipix is None: theta, phi = hp.pix2ang( self._nside, list(range(self._npix)), self._nest) else: theta, phi = hp.pix2ang(self._nside, self._ipix, self._...
[ "def", "get_sky_coords", "(", "self", ")", ":", "if", "self", ".", "_ipix", "is", "None", ":", "theta", ",", "phi", "=", "hp", ".", "pix2ang", "(", "self", ".", "_nside", ",", "list", "(", "range", "(", "self", ".", "_npix", ")", ")", ",", "self"...
Get the sky coordinates of all the pixels in this pixelization
[ "Get", "the", "sky", "coordinates", "of", "all", "the", "pixels", "in", "this", "pixelization" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L856-L866
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.get_pixel_indices
def get_pixel_indices(self, lats, lons): """ "Return the indices in the flat array corresponding to a set of coordinates """ theta = np.radians(90. - lats) phi = np.radians(lons) return hp.ang2pix(self.nside, theta, phi, self.nest)
python
def get_pixel_indices(self, lats, lons): """ "Return the indices in the flat array corresponding to a set of coordinates """ theta = np.radians(90. - lats) phi = np.radians(lons) return hp.ang2pix(self.nside, theta, phi, self.nest)
[ "def", "get_pixel_indices", "(", "self", ",", "lats", ",", "lons", ")", ":", "theta", "=", "np", ".", "radians", "(", "90.", "-", "lats", ")", "phi", "=", "np", ".", "radians", "(", "lons", ")", "return", "hp", ".", "ang2pix", "(", "self", ".", "...
"Return the indices in the flat array corresponding to a set of coordinates
[ "Return", "the", "indices", "in", "the", "flat", "array", "corresponding", "to", "a", "set", "of", "coordinates" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L876-L880
fermiPy/fermipy
fermipy/hpx_utils.py
HPX.skydir_to_pixel
def skydir_to_pixel(self, skydir): """Return the pixel index of a SkyCoord object.""" if self.coordsys in ['CEL', 'EQU']: skydir = skydir.transform_to('icrs') lon = skydir.ra.deg lat = skydir.dec.deg else: skydir = skydir.transform_to('galactic') ...
python
def skydir_to_pixel(self, skydir): """Return the pixel index of a SkyCoord object.""" if self.coordsys in ['CEL', 'EQU']: skydir = skydir.transform_to('icrs') lon = skydir.ra.deg lat = skydir.dec.deg else: skydir = skydir.transform_to('galactic') ...
[ "def", "skydir_to_pixel", "(", "self", ",", "skydir", ")", ":", "if", "self", ".", "coordsys", "in", "[", "'CEL'", ",", "'EQU'", "]", ":", "skydir", "=", "skydir", ".", "transform_to", "(", "'icrs'", ")", "lon", "=", "skydir", ".", "ra", ".", "deg", ...
Return the pixel index of a SkyCoord object.
[ "Return", "the", "pixel", "index", "of", "a", "SkyCoord", "object", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L882-L893
fermiPy/fermipy
fermipy/hpx_utils.py
HpxToWcsMapping.write_to_fitsfile
def write_to_fitsfile(self, fitsfile, clobber=True): """Write this mapping to a FITS file, to avoid having to recompute it """ from fermipy.skymap import Map hpx_header = self._hpx.make_header() index_map = Map(self.ipixs, self.wcs) mult_map = Map(self.mult_val, self.wcs)...
python
def write_to_fitsfile(self, fitsfile, clobber=True): """Write this mapping to a FITS file, to avoid having to recompute it """ from fermipy.skymap import Map hpx_header = self._hpx.make_header() index_map = Map(self.ipixs, self.wcs) mult_map = Map(self.mult_val, self.wcs)...
[ "def", "write_to_fitsfile", "(", "self", ",", "fitsfile", ",", "clobber", "=", "True", ")", ":", "from", "fermipy", ".", "skymap", "import", "Map", "hpx_header", "=", "self", ".", "_hpx", ".", "make_header", "(", ")", "index_map", "=", "Map", "(", "self"...
Write this mapping to a FITS file, to avoid having to recompute it
[ "Write", "this", "mapping", "to", "a", "FITS", "file", "to", "avoid", "having", "to", "recompute", "it" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L953-L969
fermiPy/fermipy
fermipy/hpx_utils.py
HpxToWcsMapping.create_from_fitsfile
def create_from_fitsfile(cls, fitsfile): """ Read a fits file and use it to make a mapping """ from fermipy.skymap import Map index_map = Map.create_from_fits(fitsfile) mult_map = Map.create_from_fits(fitsfile, hdu=1) ff = fits.open(fitsfile) hpx = HPX.create_from...
python
def create_from_fitsfile(cls, fitsfile): """ Read a fits file and use it to make a mapping """ from fermipy.skymap import Map index_map = Map.create_from_fits(fitsfile) mult_map = Map.create_from_fits(fitsfile, hdu=1) ff = fits.open(fitsfile) hpx = HPX.create_from...
[ "def", "create_from_fitsfile", "(", "cls", ",", "fitsfile", ")", ":", "from", "fermipy", ".", "skymap", "import", "Map", "index_map", "=", "Map", ".", "create_from_fits", "(", "fitsfile", ")", "mult_map", "=", "Map", ".", "create_from_fits", "(", "fitsfile", ...
Read a fits file and use it to make a mapping
[ "Read", "a", "fits", "file", "and", "use", "it", "to", "make", "a", "mapping" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L972-L983
fermiPy/fermipy
fermipy/hpx_utils.py
HpxToWcsMapping.fill_wcs_map_from_hpx_data
def fill_wcs_map_from_hpx_data(self, hpx_data, wcs_data, normalize=True): """Fills the wcs map from the hpx data using the pre-calculated mappings hpx_data : the input HEALPix data wcs_data : the data array being filled normalize : True -> perserve integral by splitting HEALPi...
python
def fill_wcs_map_from_hpx_data(self, hpx_data, wcs_data, normalize=True): """Fills the wcs map from the hpx data using the pre-calculated mappings hpx_data : the input HEALPix data wcs_data : the data array being filled normalize : True -> perserve integral by splitting HEALPi...
[ "def", "fill_wcs_map_from_hpx_data", "(", "self", ",", "hpx_data", ",", "wcs_data", ",", "normalize", "=", "True", ")", ":", "# FIXME, there really ought to be a better way to do this", "hpx_naxis", "=", "len", "(", "hpx_data", ".", "shape", ")", "wcs_naxis", "=", "...
Fills the wcs map from the hpx data using the pre-calculated mappings hpx_data : the input HEALPix data wcs_data : the data array being filled normalize : True -> perserve integral by splitting HEALPix values between bins
[ "Fills", "the", "wcs", "map", "from", "the", "hpx", "data", "using", "the", "pre", "-", "calculated", "mappings" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L985-L1020
fermiPy/fermipy
fermipy/hpx_utils.py
HpxToWcsMapping.make_wcs_data_from_hpx_data
def make_wcs_data_from_hpx_data(self, hpx_data, wcs, normalize=True): """ Creates and fills a wcs map from the hpx data using the pre-calculated mappings hpx_data : the input HEALPix data wcs : the WCS object normalize : True -> perserve integral by splitting HEALPix valu...
python
def make_wcs_data_from_hpx_data(self, hpx_data, wcs, normalize=True): """ Creates and fills a wcs map from the hpx data using the pre-calculated mappings hpx_data : the input HEALPix data wcs : the WCS object normalize : True -> perserve integral by splitting HEALPix valu...
[ "def", "make_wcs_data_from_hpx_data", "(", "self", ",", "hpx_data", ",", "wcs", ",", "normalize", "=", "True", ")", ":", "wcs_data", "=", "np", ".", "zeros", "(", "wcs", ".", "npix", ")", "self", ".", "fill_wcs_map_from_hpx_data", "(", "hpx_data", ",", "wc...
Creates and fills a wcs map from the hpx data using the pre-calculated mappings hpx_data : the input HEALPix data wcs : the WCS object normalize : True -> perserve integral by splitting HEALPix values between bins
[ "Creates", "and", "fills", "a", "wcs", "map", "from", "the", "hpx", "data", "using", "the", "pre", "-", "calculated", "mappings" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/hpx_utils.py#L1022-L1032
fermiPy/fermipy
fermipy/jobs/target_collect.py
_get_enum_bins
def _get_enum_bins(configfile): """Get the number of energy bin in the SED Parameters ---------- configfile : str Fermipy configuration file. Returns ------- nbins : int The number of energy bins """ config = yaml.safe_load(open(configfile)) emin = config['s...
python
def _get_enum_bins(configfile): """Get the number of energy bin in the SED Parameters ---------- configfile : str Fermipy configuration file. Returns ------- nbins : int The number of energy bins """ config = yaml.safe_load(open(configfile)) emin = config['s...
[ "def", "_get_enum_bins", "(", "configfile", ")", ":", "config", "=", "yaml", ".", "safe_load", "(", "open", "(", "configfile", ")", ")", "emin", "=", "config", "[", "'selection'", "]", "[", "'emin'", "]", "emax", "=", "config", "[", "'selection'", "]", ...
Get the number of energy bin in the SED Parameters ---------- configfile : str Fermipy configuration file. Returns ------- nbins : int The number of energy bins
[ "Get", "the", "number", "of", "energy", "bin", "in", "the", "SED" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/target_collect.py#L33-L59
fermiPy/fermipy
fermipy/jobs/target_collect.py
fill_output_table
def fill_output_table(filelist, hdu, collist, nbins): """Fill the arrays from the files in filelist Parameters ---------- filelist : list List of the files to get data from. hdu : str Name of the HDU containing the table with the input data. colllist : list List of th...
python
def fill_output_table(filelist, hdu, collist, nbins): """Fill the arrays from the files in filelist Parameters ---------- filelist : list List of the files to get data from. hdu : str Name of the HDU containing the table with the input data. colllist : list List of th...
[ "def", "fill_output_table", "(", "filelist", ",", "hdu", ",", "collist", ",", "nbins", ")", ":", "nfiles", "=", "len", "(", "filelist", ")", "shape", "=", "(", "nbins", ",", "nfiles", ")", "outdict", "=", "{", "}", "for", "c", "in", "collist", ":", ...
Fill the arrays from the files in filelist Parameters ---------- filelist : list List of the files to get data from. hdu : str Name of the HDU containing the table with the input data. colllist : list List of the column names nbins : int Number of bins in the...
[ "Fill", "the", "arrays", "from", "the", "files", "in", "filelist" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/target_collect.py#L63-L115
fermiPy/fermipy
fermipy/jobs/target_collect.py
vstack_tables
def vstack_tables(filelist, hdus): """vstack a set of HDUs from a set of files Parameters ---------- filelist : list List of the files to get data from. hdus : list Names of the HDU containing the table with the input data. Returns ------- out_tables : list A...
python
def vstack_tables(filelist, hdus): """vstack a set of HDUs from a set of files Parameters ---------- filelist : list List of the files to get data from. hdus : list Names of the HDU containing the table with the input data. Returns ------- out_tables : list A...
[ "def", "vstack_tables", "(", "filelist", ",", "hdus", ")", ":", "nfiles", "=", "len", "(", "filelist", ")", "out_tables", "=", "[", "]", "out_names", "=", "[", "]", "for", "hdu", "in", "hdus", ":", "sys", ".", "stdout", ".", "write", "(", "'Working o...
vstack a set of HDUs from a set of files Parameters ---------- filelist : list List of the files to get data from. hdus : list Names of the HDU containing the table with the input data. Returns ------- out_tables : list A list with the table with all the requeste...
[ "vstack", "a", "set", "of", "HDUs", "from", "a", "set", "of", "files" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/target_collect.py#L118-L160
fermiPy/fermipy
fermipy/jobs/target_collect.py
collect_summary_stats
def collect_summary_stats(data): """Collect summary statisitics from an array This creates a dictionry of output arrays of summary statistics, with the input array dimension reducted by one. Parameters ---------- data : `numpy.ndarray` Array with the collected input data Returns...
python
def collect_summary_stats(data): """Collect summary statisitics from an array This creates a dictionry of output arrays of summary statistics, with the input array dimension reducted by one. Parameters ---------- data : `numpy.ndarray` Array with the collected input data Returns...
[ "def", "collect_summary_stats", "(", "data", ")", ":", "mean", "=", "np", ".", "mean", "(", "data", ",", "axis", "=", "0", ")", "std", "=", "np", ".", "std", "(", "data", ",", "axis", "=", "0", ")", "median", "=", "np", ".", "median", "(", "dat...
Collect summary statisitics from an array This creates a dictionry of output arrays of summary statistics, with the input array dimension reducted by one. Parameters ---------- data : `numpy.ndarray` Array with the collected input data Returns ------- output : dict ...
[ "Collect", "summary", "statisitics", "from", "an", "array" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/target_collect.py#L163-L197
fermiPy/fermipy
fermipy/jobs/target_collect.py
add_summary_stats_to_table
def add_summary_stats_to_table(table_in, table_out, colnames): """Collect summary statisitics from an input table and add them to an output table Parameters ---------- table_in : `astropy.table.Table` Table with the input data. table_out : `astropy.table.Table` Table with the out...
python
def add_summary_stats_to_table(table_in, table_out, colnames): """Collect summary statisitics from an input table and add them to an output table Parameters ---------- table_in : `astropy.table.Table` Table with the input data. table_out : `astropy.table.Table` Table with the out...
[ "def", "add_summary_stats_to_table", "(", "table_in", ",", "table_out", ",", "colnames", ")", ":", "for", "col", "in", "colnames", ":", "col_in", "=", "table_in", "[", "col", "]", "stats", "=", "collect_summary_stats", "(", "col_in", ".", "data", ")", "for",...
Collect summary statisitics from an input table and add them to an output table Parameters ---------- table_in : `astropy.table.Table` Table with the input data. table_out : `astropy.table.Table` Table with the output data. colnames : list List of the column names to get...
[ "Collect", "summary", "statisitics", "from", "an", "input", "table", "and", "add", "them", "to", "an", "output", "table" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/target_collect.py#L200-L223
fermiPy/fermipy
fermipy/jobs/target_collect.py
summarize_sed_results
def summarize_sed_results(sed_table): """Build a stats summary table for a table that has all the SED results """ del_cols = ['dnde', 'dnde_err', 'dnde_errp', 'dnde_errn', 'dnde_ul', 'e2dnde', 'e2dnde_err', 'e2dnde_errp', 'e2dnde_errn', 'e2dnde_ul', 'norm', 'norm_err', 'norm_errp...
python
def summarize_sed_results(sed_table): """Build a stats summary table for a table that has all the SED results """ del_cols = ['dnde', 'dnde_err', 'dnde_errp', 'dnde_errn', 'dnde_ul', 'e2dnde', 'e2dnde_err', 'e2dnde_errp', 'e2dnde_errn', 'e2dnde_ul', 'norm', 'norm_err', 'norm_errp...
[ "def", "summarize_sed_results", "(", "sed_table", ")", ":", "del_cols", "=", "[", "'dnde'", ",", "'dnde_err'", ",", "'dnde_errp'", ",", "'dnde_errn'", ",", "'dnde_ul'", ",", "'e2dnde'", ",", "'e2dnde_err'", ",", "'e2dnde_errp'", ",", "'e2dnde_errn'", ",", "'e2dn...
Build a stats summary table for a table that has all the SED results
[ "Build", "a", "stats", "summary", "table", "for", "a", "table", "that", "has", "all", "the", "SED", "results" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/target_collect.py#L226-L239
fermiPy/fermipy
fermipy/jobs/target_collect.py
CollectSED.run_analysis
def run_analysis(self, argv): """Run this analysis""" args = self._parser.parse_args(argv) sedfile = args.sed_file if is_not_null(args.config): configfile = os.path.join(os.path.dirname(sedfile), args.config) else: configfile = os.path.join(os.path.dirn...
python
def run_analysis(self, argv): """Run this analysis""" args = self._parser.parse_args(argv) sedfile = args.sed_file if is_not_null(args.config): configfile = os.path.join(os.path.dirname(sedfile), args.config) else: configfile = os.path.join(os.path.dirn...
[ "def", "run_analysis", "(", "self", ",", "argv", ")", ":", "args", "=", "self", ".", "_parser", ".", "parse_args", "(", "argv", ")", "sedfile", "=", "args", ".", "sed_file", "if", "is_not_null", "(", "args", ".", "config", ")", ":", "configfile", "=", ...
Run this analysis
[ "Run", "this", "analysis" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/target_collect.py#L288-L318
fermiPy/fermipy
fermipy/jobs/target_collect.py
CollectSED_SG.build_job_configs
def build_job_configs(self, args): """Hook to build job configurations """ job_configs = {} ttype = args['ttype'] (targets_yaml, sim) = NAME_FACTORY.resolve_targetfile( args, require_sim_name=True) if targets_yaml is None: return job_configs ...
python
def build_job_configs(self, args): """Hook to build job configurations """ job_configs = {} ttype = args['ttype'] (targets_yaml, sim) = NAME_FACTORY.resolve_targetfile( args, require_sim_name=True) if targets_yaml is None: return job_configs ...
[ "def", "build_job_configs", "(", "self", ",", "args", ")", ":", "job_configs", "=", "{", "}", "ttype", "=", "args", "[", "'ttype'", "]", "(", "targets_yaml", ",", "sim", ")", "=", "NAME_FACTORY", ".", "resolve_targetfile", "(", "args", ",", "require_sim_na...
Hook to build job configurations
[ "Hook", "to", "build", "job", "configurations" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/target_collect.py#L344-L389
fermiPy/fermipy
fermipy/jobs/name_policy.py
NameFactory.update_base_dict
def update_base_dict(self, yamlfile): """Update the values in baseline dictionary used to resolve names """ self.base_dict.update(**yaml.safe_load(open(yamlfile)))
python
def update_base_dict(self, yamlfile): """Update the values in baseline dictionary used to resolve names """ self.base_dict.update(**yaml.safe_load(open(yamlfile)))
[ "def", "update_base_dict", "(", "self", ",", "yamlfile", ")", ":", "self", ".", "base_dict", ".", "update", "(", "*", "*", "yaml", ".", "safe_load", "(", "open", "(", "yamlfile", ")", ")", ")" ]
Update the values in baseline dictionary used to resolve names
[ "Update", "the", "values", "in", "baseline", "dictionary", "used", "to", "resolve", "names" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/name_policy.py#L59-L62
fermiPy/fermipy
fermipy/jobs/name_policy.py
NameFactory._format_from_dict
def _format_from_dict(self, format_string, **kwargs): """Return a formatted file name dictionary components """ kwargs_copy = self.base_dict.copy() kwargs_copy.update(**kwargs) localpath = format_string.format(**kwargs_copy) if kwargs.get('fullpath', False): return se...
python
def _format_from_dict(self, format_string, **kwargs): """Return a formatted file name dictionary components """ kwargs_copy = self.base_dict.copy() kwargs_copy.update(**kwargs) localpath = format_string.format(**kwargs_copy) if kwargs.get('fullpath', False): return se...
[ "def", "_format_from_dict", "(", "self", ",", "format_string", ",", "*", "*", "kwargs", ")", ":", "kwargs_copy", "=", "self", ".", "base_dict", ".", "copy", "(", ")", "kwargs_copy", ".", "update", "(", "*", "*", "kwargs", ")", "localpath", "=", "format_s...
Return a formatted file name dictionary components
[ "Return", "a", "formatted", "file", "name", "dictionary", "components" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/name_policy.py#L64-L71
fermiPy/fermipy
fermipy/jobs/name_policy.py
NameFactory.sim_sedfile
def sim_sedfile(self, **kwargs): """Return the name for the simulated SED file for a particular target """ if 'seed' not in kwargs: kwargs['seed'] = 'SEED' return self._format_from_dict(NameFactory.sim_sedfile_format, **kwargs)
python
def sim_sedfile(self, **kwargs): """Return the name for the simulated SED file for a particular target """ if 'seed' not in kwargs: kwargs['seed'] = 'SEED' return self._format_from_dict(NameFactory.sim_sedfile_format, **kwargs)
[ "def", "sim_sedfile", "(", "self", ",", "*", "*", "kwargs", ")", ":", "if", "'seed'", "not", "in", "kwargs", ":", "kwargs", "[", "'seed'", "]", "=", "'SEED'", "return", "self", ".", "_format_from_dict", "(", "NameFactory", ".", "sim_sedfile_format", ",", ...
Return the name for the simulated SED file for a particular target
[ "Return", "the", "name", "for", "the", "simulated", "SED", "file", "for", "a", "particular", "target" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/name_policy.py#L118-L123
fermiPy/fermipy
fermipy/jobs/name_policy.py
NameFactory.stamp
def stamp(self, **kwargs): """Return the path for a stamp file for a scatter gather job""" kwargs_copy = self.base_dict.copy() kwargs_copy.update(**kwargs) return NameFactory.stamp_format.format(**kwargs_copy)
python
def stamp(self, **kwargs): """Return the path for a stamp file for a scatter gather job""" kwargs_copy = self.base_dict.copy() kwargs_copy.update(**kwargs) return NameFactory.stamp_format.format(**kwargs_copy)
[ "def", "stamp", "(", "self", ",", "*", "*", "kwargs", ")", ":", "kwargs_copy", "=", "self", ".", "base_dict", ".", "copy", "(", ")", "kwargs_copy", ".", "update", "(", "*", "*", "kwargs", ")", "return", "NameFactory", ".", "stamp_format", ".", "format"...
Return the path for a stamp file for a scatter gather job
[ "Return", "the", "path", "for", "a", "stamp", "file", "for", "a", "scatter", "gather", "job" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/name_policy.py#L125-L129
fermiPy/fermipy
fermipy/jobs/name_policy.py
NameFactory.resolve_targetfile
def resolve_targetfile(self, args, require_sim_name=False): # x """Get the name of the targetfile based on the job arguments""" ttype = args.get('ttype') if is_null(ttype): sys.stderr.write('Target type must be specified') return (None, None) sim = args.get('sim...
python
def resolve_targetfile(self, args, require_sim_name=False): # x """Get the name of the targetfile based on the job arguments""" ttype = args.get('ttype') if is_null(ttype): sys.stderr.write('Target type must be specified') return (None, None) sim = args.get('sim...
[ "def", "resolve_targetfile", "(", "self", ",", "args", ",", "require_sim_name", "=", "False", ")", ":", "# x", "ttype", "=", "args", ".", "get", "(", "'ttype'", ")", "if", "is_null", "(", "ttype", ")", ":", "sys", ".", "stderr", ".", "write", "(", "'...
Get the name of the targetfile based on the job arguments
[ "Get", "the", "name", "of", "the", "targetfile", "based", "on", "the", "job", "arguments" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/name_policy.py#L138-L166
fermiPy/fermipy
fermipy/jobs/name_policy.py
NameFactory.resolve_randconfig
def resolve_randconfig(self, args): """Get the name of the specturm file based on the job arguments""" ttype = args.get('ttype') if is_null(ttype): sys.stderr.write('Target type must be specified') return None name_keys = dict(target_type=ttype, ...
python
def resolve_randconfig(self, args): """Get the name of the specturm file based on the job arguments""" ttype = args.get('ttype') if is_null(ttype): sys.stderr.write('Target type must be specified') return None name_keys = dict(target_type=ttype, ...
[ "def", "resolve_randconfig", "(", "self", ",", "args", ")", ":", "ttype", "=", "args", ".", "get", "(", "'ttype'", ")", "if", "is_null", "(", "ttype", ")", ":", "sys", ".", "stderr", ".", "write", "(", "'Target type must be specified'", ")", "return", "N...
Get the name of the specturm file based on the job arguments
[ "Get", "the", "name", "of", "the", "specturm", "file", "based", "on", "the", "job", "arguments" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/jobs/name_policy.py#L168-L180
fermiPy/fermipy
fermipy/scripts/make_ltcube.py
main
def main(): usage = "usage: %(prog)s [options] " description = "Run gtselect and gtmktime on one or more FT1 files. " "Note that gtmktime will be skipped if no FT2 file is provided." parser = argparse.ArgumentParser(usage=usage, description=description) add_lsf_args(parser) parser.add_argumen...
python
def main(): usage = "usage: %(prog)s [options] " description = "Run gtselect and gtmktime on one or more FT1 files. " "Note that gtmktime will be skipped if no FT2 file is provided." parser = argparse.ArgumentParser(usage=usage, description=description) add_lsf_args(parser) parser.add_argumen...
[ "def", "main", "(", ")", ":", "usage", "=", "\"usage: %(prog)s [options] \"", "description", "=", "\"Run gtselect and gtmktime on one or more FT1 files. \"", "parser", "=", "argparse", ".", "ArgumentParser", "(", "usage", "=", "usage", ",", "description", "=", "descrip...
Note that gtmktime will be skipped if no FT2 file is provided.
[ "Note", "that", "gtmktime", "will", "be", "skipped", "if", "no", "FT2", "file", "is", "provided", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/make_ltcube.py#L26-L102
fermiPy/fermipy
fermipy/castro.py
convert_sed_cols
def convert_sed_cols(tab): """Cast SED column names to lowercase.""" # Update Column names for colname in list(tab.columns.keys()): newname = colname.lower() newname = newname.replace('dfde', 'dnde') if tab.columns[colname].name == newname: continue tab.columns...
python
def convert_sed_cols(tab): """Cast SED column names to lowercase.""" # Update Column names for colname in list(tab.columns.keys()): newname = colname.lower() newname = newname.replace('dfde', 'dnde') if tab.columns[colname].name == newname: continue tab.columns...
[ "def", "convert_sed_cols", "(", "tab", ")", ":", "# Update Column names", "for", "colname", "in", "list", "(", "tab", ".", "columns", ".", "keys", "(", ")", ")", ":", "newname", "=", "colname", ".", "lower", "(", ")", "newname", "=", "newname", ".", "r...
Cast SED column names to lowercase.
[ "Cast", "SED", "column", "names", "to", "lowercase", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L38-L51
fermiPy/fermipy
fermipy/castro.py
Interpolator.derivative
def derivative(self, x, der=1): """ return the derivative a an array of input values x : the inputs der : the order of derivative """ from scipy.interpolate import splev return splev(x, self._sp, der=der)
python
def derivative(self, x, der=1): """ return the derivative a an array of input values x : the inputs der : the order of derivative """ from scipy.interpolate import splev return splev(x, self._sp, der=der)
[ "def", "derivative", "(", "self", ",", "x", ",", "der", "=", "1", ")", ":", "from", "scipy", ".", "interpolate", "import", "splev", "return", "splev", "(", "x", ",", "self", ".", "_sp", ",", "der", "=", "der", ")" ]
return the derivative a an array of input values x : the inputs der : the order of derivative
[ "return", "the", "derivative", "a", "an", "array", "of", "input", "values" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L112-L119
fermiPy/fermipy
fermipy/castro.py
LnLFn._compute_mle
def _compute_mle(self): """Compute the maximum likelihood estimate. Calls `scipy.optimize.brentq` to find the roots of the derivative. """ min_y = np.min(self._interp.y) if self._interp.y[0] == min_y: self._mle = self._interp.x[0] elif self._interp.y[-1] == m...
python
def _compute_mle(self): """Compute the maximum likelihood estimate. Calls `scipy.optimize.brentq` to find the roots of the derivative. """ min_y = np.min(self._interp.y) if self._interp.y[0] == min_y: self._mle = self._interp.x[0] elif self._interp.y[-1] == m...
[ "def", "_compute_mle", "(", "self", ")", ":", "min_y", "=", "np", ".", "min", "(", "self", ".", "_interp", ".", "y", ")", "if", "self", ".", "_interp", ".", "y", "[", "0", "]", "==", "min_y", ":", "self", ".", "_mle", "=", "self", ".", "_interp...
Compute the maximum likelihood estimate. Calls `scipy.optimize.brentq` to find the roots of the derivative.
[ "Compute", "the", "maximum", "likelihood", "estimate", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L193-L216
fermiPy/fermipy
fermipy/castro.py
LnLFn.getDeltaLogLike
def getDeltaLogLike(self, dlnl, upper=True): """Find the point at which the log-likelihood changes by a given value with respect to its value at the MLE.""" mle_val = self.mle() # A little bit of paranoia to avoid zeros if mle_val <= 0.: mle_val = self._interp.xmin ...
python
def getDeltaLogLike(self, dlnl, upper=True): """Find the point at which the log-likelihood changes by a given value with respect to its value at the MLE.""" mle_val = self.mle() # A little bit of paranoia to avoid zeros if mle_val <= 0.: mle_val = self._interp.xmin ...
[ "def", "getDeltaLogLike", "(", "self", ",", "dlnl", ",", "upper", "=", "True", ")", ":", "mle_val", "=", "self", ".", "mle", "(", ")", "# A little bit of paranoia to avoid zeros", "if", "mle_val", "<=", "0.", ":", "mle_val", "=", "self", ".", "_interp", "....
Find the point at which the log-likelihood changes by a given value with respect to its value at the MLE.
[ "Find", "the", "point", "at", "which", "the", "log", "-", "likelihood", "changes", "by", "a", "given", "value", "with", "respect", "to", "its", "value", "at", "the", "MLE", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L235-L270
fermiPy/fermipy
fermipy/castro.py
LnLFn.getLimit
def getLimit(self, alpha, upper=True): """ Evaluate the limits corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : limit confidence level. upper : upper or lower limits. """ dlnl = onesided_cl_to_dlnl(1.0 - alpha) return self.getDeltaLo...
python
def getLimit(self, alpha, upper=True): """ Evaluate the limits corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : limit confidence level. upper : upper or lower limits. """ dlnl = onesided_cl_to_dlnl(1.0 - alpha) return self.getDeltaLo...
[ "def", "getLimit", "(", "self", ",", "alpha", ",", "upper", "=", "True", ")", ":", "dlnl", "=", "onesided_cl_to_dlnl", "(", "1.0", "-", "alpha", ")", "return", "self", ".", "getDeltaLogLike", "(", "dlnl", ",", "upper", "=", "upper", ")" ]
Evaluate the limits corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : limit confidence level. upper : upper or lower limits.
[ "Evaluate", "the", "limits", "corresponding", "to", "a", "C", ".", "L", ".", "of", "(", "1", "-", "alpha", ")", "%", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L272-L281
fermiPy/fermipy
fermipy/castro.py
LnLFn.getInterval
def getInterval(self, alpha): """ Evaluate the interval corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : limit confidence level. """ dlnl = twosided_cl_to_dlnl(1.0 - alpha) lo_lim = self.getDeltaLogLike(dlnl, upper=False) hi_lim = self...
python
def getInterval(self, alpha): """ Evaluate the interval corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : limit confidence level. """ dlnl = twosided_cl_to_dlnl(1.0 - alpha) lo_lim = self.getDeltaLogLike(dlnl, upper=False) hi_lim = self...
[ "def", "getInterval", "(", "self", ",", "alpha", ")", ":", "dlnl", "=", "twosided_cl_to_dlnl", "(", "1.0", "-", "alpha", ")", "lo_lim", "=", "self", ".", "getDeltaLogLike", "(", "dlnl", ",", "upper", "=", "False", ")", "hi_lim", "=", "self", ".", "getD...
Evaluate the interval corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : limit confidence level.
[ "Evaluate", "the", "interval", "corresponding", "to", "a", "C", ".", "L", ".", "of", "(", "1", "-", "alpha", ")", "%", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L283-L293
fermiPy/fermipy
fermipy/castro.py
ReferenceSpec.create_from_table
def create_from_table(cls, tab_e): """ Parameters ---------- tab_e : `~astropy.table.Table` EBOUNDS table. """ convert_sed_cols(tab_e) try: emin = np.array(tab_e['e_min'].to(u.MeV)) emax = np.array(tab_e['e_max'].to(u.M...
python
def create_from_table(cls, tab_e): """ Parameters ---------- tab_e : `~astropy.table.Table` EBOUNDS table. """ convert_sed_cols(tab_e) try: emin = np.array(tab_e['e_min'].to(u.MeV)) emax = np.array(tab_e['e_max'].to(u.M...
[ "def", "create_from_table", "(", "cls", ",", "tab_e", ")", ":", "convert_sed_cols", "(", "tab_e", ")", "try", ":", "emin", "=", "np", ".", "array", "(", "tab_e", "[", "'e_min'", "]", ".", "to", "(", "u", ".", "MeV", ")", ")", "emax", "=", "np", "...
Parameters ---------- tab_e : `~astropy.table.Table` EBOUNDS table.
[ "Parameters", "----------", "tab_e", ":", "~astropy", ".", "table", ".", "Table", "EBOUNDS", "table", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L404-L441
fermiPy/fermipy
fermipy/castro.py
ReferenceSpec.build_ebound_table
def build_ebound_table(self): """ Build and return an EBOUNDS table with the encapsulated data. """ cols = [ Column(name="E_MIN", dtype=float, data=self._emin, unit='MeV'), Column(name="E_MAX", dtype=float, data=self._emax, unit='MeV'), Column(name="E_REF", dt...
python
def build_ebound_table(self): """ Build and return an EBOUNDS table with the encapsulated data. """ cols = [ Column(name="E_MIN", dtype=float, data=self._emin, unit='MeV'), Column(name="E_MAX", dtype=float, data=self._emax, unit='MeV'), Column(name="E_REF", dt...
[ "def", "build_ebound_table", "(", "self", ")", ":", "cols", "=", "[", "Column", "(", "name", "=", "\"E_MIN\"", ",", "dtype", "=", "float", ",", "data", "=", "self", ".", "_emin", ",", "unit", "=", "'MeV'", ")", ",", "Column", "(", "name", "=", "\"E...
Build and return an EBOUNDS table with the encapsulated data.
[ "Build", "and", "return", "an", "EBOUNDS", "table", "with", "the", "encapsulated", "data", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L443-L460
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.derivative
def derivative(self, x, der=1): """Return the derivate of the log-like summed over the energy bins Parameters ---------- x : `~numpy.ndarray` Array of N x M values der : int Order of the derivate Returns ------- der_val :...
python
def derivative(self, x, der=1): """Return the derivate of the log-like summed over the energy bins Parameters ---------- x : `~numpy.ndarray` Array of N x M values der : int Order of the derivate Returns ------- der_val :...
[ "def", "derivative", "(", "self", ",", "x", ",", "der", "=", "1", ")", ":", "if", "len", "(", "x", ".", "shape", ")", "==", "1", ":", "der_val", "=", "np", ".", "zeros", "(", "(", "1", ")", ")", "else", ":", "der_val", "=", "np", ".", "zero...
Return the derivate of the log-like summed over the energy bins Parameters ---------- x : `~numpy.ndarray` Array of N x M values der : int Order of the derivate Returns ------- der_val : `~numpy.ndarray` Array of negat...
[ "Return", "the", "derivate", "of", "the", "log", "-", "like", "summed", "over", "the", "energy", "bins" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L721-L745
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.mles
def mles(self): """ return the maximum likelihood estimates for each of the energy bins """ mle_vals = np.ndarray((self._nx)) for i in range(self._nx): mle_vals[i] = self._loglikes[i].mle() return mle_vals
python
def mles(self): """ return the maximum likelihood estimates for each of the energy bins """ mle_vals = np.ndarray((self._nx)) for i in range(self._nx): mle_vals[i] = self._loglikes[i].mle() return mle_vals
[ "def", "mles", "(", "self", ")", ":", "mle_vals", "=", "np", ".", "ndarray", "(", "(", "self", ".", "_nx", ")", ")", "for", "i", "in", "range", "(", "self", ".", "_nx", ")", ":", "mle_vals", "[", "i", "]", "=", "self", ".", "_loglikes", "[", ...
return the maximum likelihood estimates for each of the energy bins
[ "return", "the", "maximum", "likelihood", "estimates", "for", "each", "of", "the", "energy", "bins" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L747-L753
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.ts_vals
def ts_vals(self): """ returns test statistic values for each energy bin """ ts_vals = np.ndarray((self._nx)) for i in range(self._nx): ts_vals[i] = self._loglikes[i].TS() return ts_vals
python
def ts_vals(self): """ returns test statistic values for each energy bin """ ts_vals = np.ndarray((self._nx)) for i in range(self._nx): ts_vals[i] = self._loglikes[i].TS() return ts_vals
[ "def", "ts_vals", "(", "self", ")", ":", "ts_vals", "=", "np", ".", "ndarray", "(", "(", "self", ".", "_nx", ")", ")", "for", "i", "in", "range", "(", "self", ".", "_nx", ")", ":", "ts_vals", "[", "i", "]", "=", "self", ".", "_loglikes", "[", ...
returns test statistic values for each energy bin
[ "returns", "test", "statistic", "values", "for", "each", "energy", "bin" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L764-L771
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.chi2_vals
def chi2_vals(self, x): """Compute the difference in the log-likelihood between the MLE in each energy bin and the normalization predicted by a global best-fit model. This array can be summed to get a goodness-of-fit chi2 for the model. Parameters ---------- x :...
python
def chi2_vals(self, x): """Compute the difference in the log-likelihood between the MLE in each energy bin and the normalization predicted by a global best-fit model. This array can be summed to get a goodness-of-fit chi2 for the model. Parameters ---------- x :...
[ "def", "chi2_vals", "(", "self", ",", "x", ")", ":", "chi2_vals", "=", "np", ".", "ndarray", "(", "(", "self", ".", "_nx", ")", ")", "for", "i", "in", "range", "(", "self", ".", "_nx", ")", ":", "mle", "=", "self", ".", "_loglikes", "[", "i", ...
Compute the difference in the log-likelihood between the MLE in each energy bin and the normalization predicted by a global best-fit model. This array can be summed to get a goodness-of-fit chi2 for the model. Parameters ---------- x : `~numpy.ndarray` ...
[ "Compute", "the", "difference", "in", "the", "log", "-", "likelihood", "between", "the", "MLE", "in", "each", "energy", "bin", "and", "the", "normalization", "predicted", "by", "a", "global", "best", "-", "fit", "model", ".", "This", "array", "can", "be", ...
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L773-L799
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.getLimits
def getLimits(self, alpha, upper=True): """ Evaluate the limits corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : float limit confidence level. upper : bool upper or lower limits. returns an array of values, one for each energy...
python
def getLimits(self, alpha, upper=True): """ Evaluate the limits corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : float limit confidence level. upper : bool upper or lower limits. returns an array of values, one for each energy...
[ "def", "getLimits", "(", "self", ",", "alpha", ",", "upper", "=", "True", ")", ":", "limit_vals", "=", "np", ".", "ndarray", "(", "(", "self", ".", "_nx", ")", ")", "for", "i", "in", "range", "(", "self", ".", "_nx", ")", ":", "limit_vals", "[", ...
Evaluate the limits corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : float limit confidence level. upper : bool upper or lower limits. returns an array of values, one for each energy bin
[ "Evaluate", "the", "limits", "corresponding", "to", "a", "C", ".", "L", ".", "of", "(", "1", "-", "alpha", ")", "%", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L801-L818
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.getIntervals
def getIntervals(self, alpha): """ Evaluate the two-sided intervals corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : float limit confidence level. Returns ------- limit_vals_hi : `~numpy.ndarray` An array of lo...
python
def getIntervals(self, alpha): """ Evaluate the two-sided intervals corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : float limit confidence level. Returns ------- limit_vals_hi : `~numpy.ndarray` An array of lo...
[ "def", "getIntervals", "(", "self", ",", "alpha", ")", ":", "limit_vals_lo", "=", "np", ".", "ndarray", "(", "(", "self", ".", "_nx", ")", ")", "limit_vals_hi", "=", "np", ".", "ndarray", "(", "(", "self", ".", "_nx", ")", ")", "for", "i", "in", ...
Evaluate the two-sided intervals corresponding to a C.L. of (1-alpha)%. Parameters ---------- alpha : float limit confidence level. Returns ------- limit_vals_hi : `~numpy.ndarray` An array of lower limit values. limit_vals_lo : ...
[ "Evaluate", "the", "two", "-", "sided", "intervals", "corresponding", "to", "a", "C", ".", "L", ".", "of", "(", "1", "-", "alpha", ")", "%", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L820-L845
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.fitNormalization
def fitNormalization(self, specVals, xlims): """Fit the normalization given a set of spectral values that define a spectral shape This version is faster, and solves for the root of the derivatvie Parameters ---------- specVals : an array of (nebin values that define a ...
python
def fitNormalization(self, specVals, xlims): """Fit the normalization given a set of spectral values that define a spectral shape This version is faster, and solves for the root of the derivatvie Parameters ---------- specVals : an array of (nebin values that define a ...
[ "def", "fitNormalization", "(", "self", ",", "specVals", ",", "xlims", ")", ":", "from", "scipy", ".", "optimize", "import", "brentq", "def", "fDeriv", "(", "x", ")", ":", "return", "self", ".", "norm_derivative", "(", "specVals", ",", "x", ")", "try", ...
Fit the normalization given a set of spectral values that define a spectral shape This version is faster, and solves for the root of the derivatvie Parameters ---------- specVals : an array of (nebin values that define a spectral shape xlims : fit limits ...
[ "Fit", "the", "normalization", "given", "a", "set", "of", "spectral", "values", "that", "define", "a", "spectral", "shape" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L847-L872
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.fitNorm_v2
def fitNorm_v2(self, specVals): """Fit the normalization given a set of spectral values that define a spectral shape. This version uses `scipy.optimize.fmin`. Parameters ---------- specVals : an array of (nebin values that define a spectral shape xlims : f...
python
def fitNorm_v2(self, specVals): """Fit the normalization given a set of spectral values that define a spectral shape. This version uses `scipy.optimize.fmin`. Parameters ---------- specVals : an array of (nebin values that define a spectral shape xlims : f...
[ "def", "fitNorm_v2", "(", "self", ",", "specVals", ")", ":", "from", "scipy", ".", "optimize", "import", "fmin", "def", "fToMin", "(", "x", ")", ":", "return", "self", ".", "__call__", "(", "specVals", "*", "x", ")", "result", "=", "fmin", "(", "fToM...
Fit the normalization given a set of spectral values that define a spectral shape. This version uses `scipy.optimize.fmin`. Parameters ---------- specVals : an array of (nebin values that define a spectral shape xlims : fit limits Returns ---...
[ "Fit", "the", "normalization", "given", "a", "set", "of", "spectral", "values", "that", "define", "a", "spectral", "shape", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L874-L894
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.fit_spectrum
def fit_spectrum(self, specFunc, initPars, freePars=None): """ Fit for the free parameters of a spectral function Parameters ---------- specFunc : `~fermipy.spectrum.SpectralFunction` The Spectral Function initPars : `~numpy.ndarray` The initial values o...
python
def fit_spectrum(self, specFunc, initPars, freePars=None): """ Fit for the free parameters of a spectral function Parameters ---------- specFunc : `~fermipy.spectrum.SpectralFunction` The Spectral Function initPars : `~numpy.ndarray` The initial values o...
[ "def", "fit_spectrum", "(", "self", ",", "specFunc", ",", "initPars", ",", "freePars", "=", "None", ")", ":", "if", "not", "isinstance", "(", "specFunc", ",", "SEDFunctor", ")", ":", "specFunc", "=", "self", ".", "create_functor", "(", "specFunc", ",", "...
Fit for the free parameters of a spectral function Parameters ---------- specFunc : `~fermipy.spectrum.SpectralFunction` The Spectral Function initPars : `~numpy.ndarray` The initial values of the parameters freePars : `~numpy.ndarray` ...
[ "Fit", "for", "the", "free", "parameters", "of", "a", "spectral", "function" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L896-L968
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.build_scandata_table
def build_scandata_table(self): """Build an `astropy.table.Table` object from these data. """ shape = self._norm_vals.shape col_norm = Column(name="norm", dtype=float) col_normv = Column(name="norm_scan", dtype=float, shape=shape) col_dll = Colu...
python
def build_scandata_table(self): """Build an `astropy.table.Table` object from these data. """ shape = self._norm_vals.shape col_norm = Column(name="norm", dtype=float) col_normv = Column(name="norm_scan", dtype=float, shape=shape) col_dll = Colu...
[ "def", "build_scandata_table", "(", "self", ")", ":", "shape", "=", "self", ".", "_norm_vals", ".", "shape", "col_norm", "=", "Column", "(", "name", "=", "\"norm\"", ",", "dtype", "=", "float", ")", "col_normv", "=", "Column", "(", "name", "=", "\"norm_s...
Build an `astropy.table.Table` object from these data.
[ "Build", "an", "astropy", ".", "table", ".", "Table", "object", "from", "these", "data", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L975-L988
fermiPy/fermipy
fermipy/castro.py
CastroData_Base.stack_nll
def stack_nll(shape, components, ylims, weights=None): """Combine the log-likelihoods from a number of components. Parameters ---------- shape : tuple The shape of the return array components : `~fermipy.castro.CastroData_Base` The components to be sta...
python
def stack_nll(shape, components, ylims, weights=None): """Combine the log-likelihoods from a number of components. Parameters ---------- shape : tuple The shape of the return array components : `~fermipy.castro.CastroData_Base` The components to be sta...
[ "def", "stack_nll", "(", "shape", ",", "components", ",", "ylims", ",", "weights", "=", "None", ")", ":", "n_bins", "=", "shape", "[", "0", "]", "n_vals", "=", "shape", "[", "1", "]", "if", "weights", "is", "None", ":", "weights", "=", "np", ".", ...
Combine the log-likelihoods from a number of components. Parameters ---------- shape : tuple The shape of the return array components : `~fermipy.castro.CastroData_Base` The components to be stacked weights : array-like Returns ------...
[ "Combine", "the", "log", "-", "likelihoods", "from", "a", "number", "of", "components", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L991-L1039
fermiPy/fermipy
fermipy/castro.py
CastroData.create_from_yamlfile
def create_from_yamlfile(cls, yamlfile): """Create a Castro data object from a yaml file contains the likelihood data.""" data = load_yaml(yamlfile) nebins = len(data) emin = np.array([data[i]['emin'] for i in range(nebins)]) emax = np.array([data[i]['emax'] for i in rang...
python
def create_from_yamlfile(cls, yamlfile): """Create a Castro data object from a yaml file contains the likelihood data.""" data = load_yaml(yamlfile) nebins = len(data) emin = np.array([data[i]['emin'] for i in range(nebins)]) emax = np.array([data[i]['emax'] for i in rang...
[ "def", "create_from_yamlfile", "(", "cls", ",", "yamlfile", ")", ":", "data", "=", "load_yaml", "(", "yamlfile", ")", "nebins", "=", "len", "(", "data", ")", "emin", "=", "np", ".", "array", "(", "[", "data", "[", "i", "]", "[", "'emin'", "]", "for...
Create a Castro data object from a yaml file contains the likelihood data.
[ "Create", "a", "Castro", "data", "object", "from", "a", "yaml", "file", "contains", "the", "likelihood", "data", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1095-L1112
fermiPy/fermipy
fermipy/castro.py
CastroData.create_from_flux_points
def create_from_flux_points(cls, txtfile): """Create a Castro data object from a text file containing a sequence of differential flux points.""" tab = Table.read(txtfile, format='ascii.ecsv') dnde_unit = u.ph / (u.MeV * u.cm ** 2 * u.s) loge = np.log10(np.array(tab['e_ref'].to(u...
python
def create_from_flux_points(cls, txtfile): """Create a Castro data object from a text file containing a sequence of differential flux points.""" tab = Table.read(txtfile, format='ascii.ecsv') dnde_unit = u.ph / (u.MeV * u.cm ** 2 * u.s) loge = np.log10(np.array(tab['e_ref'].to(u...
[ "def", "create_from_flux_points", "(", "cls", ",", "txtfile", ")", ":", "tab", "=", "Table", ".", "read", "(", "txtfile", ",", "format", "=", "'ascii.ecsv'", ")", "dnde_unit", "=", "u", ".", "ph", "/", "(", "u", ".", "MeV", "*", "u", ".", "cm", "**...
Create a Castro data object from a text file containing a sequence of differential flux points.
[ "Create", "a", "Castro", "data", "object", "from", "a", "text", "file", "containing", "a", "sequence", "of", "differential", "flux", "points", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1115-L1159
fermiPy/fermipy
fermipy/castro.py
CastroData.create_from_tables
def create_from_tables(cls, norm_type='eflux', tab_s="SCANDATA", tab_e="EBOUNDS"): """Create a CastroData object from two tables Parameters ---------- norm_type : str Type of normalization to use. Valid options are: ...
python
def create_from_tables(cls, norm_type='eflux', tab_s="SCANDATA", tab_e="EBOUNDS"): """Create a CastroData object from two tables Parameters ---------- norm_type : str Type of normalization to use. Valid options are: ...
[ "def", "create_from_tables", "(", "cls", ",", "norm_type", "=", "'eflux'", ",", "tab_s", "=", "\"SCANDATA\"", ",", "tab_e", "=", "\"EBOUNDS\"", ")", ":", "if", "norm_type", "in", "[", "'flux'", ",", "'eflux'", ",", "'dnde'", "]", ":", "norm_vals", "=", "...
Create a CastroData object from two tables Parameters ---------- norm_type : str Type of normalization to use. Valid options are: * norm : Normalization w.r.t. to test source * flux : Flux of the test source ( ph cm^-2 s^-1 ) * eflux: Energy Flu...
[ "Create", "a", "CastroData", "object", "from", "two", "tables" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1162-L1200
fermiPy/fermipy
fermipy/castro.py
CastroData.create_from_fits
def create_from_fits(cls, fitsfile, norm_type='eflux', hdu_scan="SCANDATA", hdu_energies="EBOUNDS", irow=None): """Create a CastroData object from a tscube FITS file. Parameters ---------- fitsfile : str ...
python
def create_from_fits(cls, fitsfile, norm_type='eflux', hdu_scan="SCANDATA", hdu_energies="EBOUNDS", irow=None): """Create a CastroData object from a tscube FITS file. Parameters ---------- fitsfile : str ...
[ "def", "create_from_fits", "(", "cls", ",", "fitsfile", ",", "norm_type", "=", "'eflux'", ",", "hdu_scan", "=", "\"SCANDATA\"", ",", "hdu_energies", "=", "\"EBOUNDS\"", ",", "irow", "=", "None", ")", ":", "if", "irow", "is", "not", "None", ":", "tab_s", ...
Create a CastroData object from a tscube FITS file. Parameters ---------- fitsfile : str Name of the fits file norm_type : str Type of normalization to use. Valid options are: * norm : Normalization w.r.t. to test source * flux : Flux ...
[ "Create", "a", "CastroData", "object", "from", "a", "tscube", "FITS", "file", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1203-L1250
fermiPy/fermipy
fermipy/castro.py
CastroData.create_from_sedfile
def create_from_sedfile(cls, fitsfile, norm_type='eflux'): """Create a CastroData object from an SED fits file Parameters ---------- fitsfile : str Name of the fits file norm_type : str Type of normalization to use, options are: * norm : N...
python
def create_from_sedfile(cls, fitsfile, norm_type='eflux'): """Create a CastroData object from an SED fits file Parameters ---------- fitsfile : str Name of the fits file norm_type : str Type of normalization to use, options are: * norm : N...
[ "def", "create_from_sedfile", "(", "cls", ",", "fitsfile", ",", "norm_type", "=", "'eflux'", ")", ":", "tab_s", "=", "Table", ".", "read", "(", "fitsfile", ",", "hdu", "=", "1", ")", "tab_s", "=", "convert_sed_cols", "(", "tab_s", ")", "if", "norm_type",...
Create a CastroData object from an SED fits file Parameters ---------- fitsfile : str Name of the fits file norm_type : str Type of normalization to use, options are: * norm : Normalization w.r.t. to test source * flux : Flux of the te...
[ "Create", "a", "CastroData", "object", "from", "an", "SED", "fits", "file" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1253-L1290
fermiPy/fermipy
fermipy/castro.py
CastroData.create_from_stack
def create_from_stack(cls, shape, components, ylims, weights=None): """ Combine the log-likelihoods from a number of components. Parameters ---------- shape : tuple The shape of the return array components : [~fermipy.castro.CastroData_Base] The compo...
python
def create_from_stack(cls, shape, components, ylims, weights=None): """ Combine the log-likelihoods from a number of components. Parameters ---------- shape : tuple The shape of the return array components : [~fermipy.castro.CastroData_Base] The compo...
[ "def", "create_from_stack", "(", "cls", ",", "shape", ",", "components", ",", "ylims", ",", "weights", "=", "None", ")", ":", "if", "len", "(", "components", ")", "==", "0", ":", "return", "None", "norm_vals", ",", "nll_vals", ",", "nll_offsets", "=", ...
Combine the log-likelihoods from a number of components. Parameters ---------- shape : tuple The shape of the return array components : [~fermipy.castro.CastroData_Base] The components to be stacked weights : array-like Returns ------...
[ "Combine", "the", "log", "-", "likelihoods", "from", "a", "number", "of", "components", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1293-L1318
fermiPy/fermipy
fermipy/castro.py
CastroData.spectrum_loglike
def spectrum_loglike(self, specType, params, scale=1E3): """ return the log-likelihood for a particular spectrum Parameters ---------- specTypes : str The type of spectrum to try params : array-like The spectral parameters scale : float ...
python
def spectrum_loglike(self, specType, params, scale=1E3): """ return the log-likelihood for a particular spectrum Parameters ---------- specTypes : str The type of spectrum to try params : array-like The spectral parameters scale : float ...
[ "def", "spectrum_loglike", "(", "self", ",", "specType", ",", "params", ",", "scale", "=", "1E3", ")", ":", "sfn", "=", "self", ".", "create_functor", "(", "specType", ",", "scale", ")", "[", "0", "]", "return", "self", ".", "__call__", "(", "sfn", "...
return the log-likelihood for a particular spectrum Parameters ---------- specTypes : str The type of spectrum to try params : array-like The spectral parameters scale : float The energy scale or 'pivot' energy
[ "return", "the", "log", "-", "likelihood", "for", "a", "particular", "spectrum" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1320-L1335
fermiPy/fermipy
fermipy/castro.py
CastroData.create_functor
def create_functor(self, specType, initPars=None, scale=1E3): """Create a functor object that computes normalizations in a sequence of energy bins for a given spectral model. Parameters ---------- specType : str The type of spectrum to use. This can be a str...
python
def create_functor(self, specType, initPars=None, scale=1E3): """Create a functor object that computes normalizations in a sequence of energy bins for a given spectral model. Parameters ---------- specType : str The type of spectrum to use. This can be a str...
[ "def", "create_functor", "(", "self", ",", "specType", ",", "initPars", "=", "None", ",", "scale", "=", "1E3", ")", ":", "emin", "=", "self", ".", "_refSpec", ".", "emin", "emax", "=", "self", ".", "_refSpec", ".", "emax", "fn", "=", "SpectralFunction"...
Create a functor object that computes normalizations in a sequence of energy bins for a given spectral model. Parameters ---------- specType : str The type of spectrum to use. This can be a string corresponding to the spectral model class name or a ...
[ "Create", "a", "functor", "object", "that", "computes", "normalizations", "in", "a", "sequence", "of", "energy", "bins", "for", "a", "given", "spectral", "model", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1377-L1419
fermiPy/fermipy
fermipy/castro.py
TSCube.create_from_fits
def create_from_fits(cls, fitsfile, norm_type='flux'): """Build a TSCube object from a fits file created by gttscube Parameters ---------- fitsfile : str Path to the tscube FITS file. norm_type : str String specifying the quantity used for the normalization...
python
def create_from_fits(cls, fitsfile, norm_type='flux'): """Build a TSCube object from a fits file created by gttscube Parameters ---------- fitsfile : str Path to the tscube FITS file. norm_type : str String specifying the quantity used for the normalization...
[ "def", "create_from_fits", "(", "cls", ",", "fitsfile", ",", "norm_type", "=", "'flux'", ")", ":", "tsmap", "=", "WcsNDMap", ".", "read", "(", "fitsfile", ")", "tab_e", "=", "Table", ".", "read", "(", "fitsfile", ",", "'EBOUNDS'", ")", "tab_s", "=", "T...
Build a TSCube object from a fits file created by gttscube Parameters ---------- fitsfile : str Path to the tscube FITS file. norm_type : str String specifying the quantity used for the normalization
[ "Build", "a", "TSCube", "object", "from", "a", "fits", "file", "created", "by", "gttscube", "Parameters", "----------", "fitsfile", ":", "str", "Path", "to", "the", "tscube", "FITS", "file", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1541-L1608
fermiPy/fermipy
fermipy/castro.py
TSCube.castroData_from_ipix
def castroData_from_ipix(self, ipix, colwise=False): """ Build a CastroData object for a particular pixel """ # pix = utils.skydir_to_pix if colwise: ipix = self._tsmap.ipix_swap_axes(ipix, colwise) norm_d = self._norm_vals[ipix] nll_d = self._nll_vals[ipix] r...
python
def castroData_from_ipix(self, ipix, colwise=False): """ Build a CastroData object for a particular pixel """ # pix = utils.skydir_to_pix if colwise: ipix = self._tsmap.ipix_swap_axes(ipix, colwise) norm_d = self._norm_vals[ipix] nll_d = self._nll_vals[ipix] r...
[ "def", "castroData_from_ipix", "(", "self", ",", "ipix", ",", "colwise", "=", "False", ")", ":", "# pix = utils.skydir_to_pix", "if", "colwise", ":", "ipix", "=", "self", ".", "_tsmap", ".", "ipix_swap_axes", "(", "ipix", ",", "colwise", ")", "norm_d", "=", ...
Build a CastroData object for a particular pixel
[ "Build", "a", "CastroData", "object", "for", "a", "particular", "pixel" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1610-L1617
fermiPy/fermipy
fermipy/castro.py
TSCube.castroData_from_pix_xy
def castroData_from_pix_xy(self, xy, colwise=False): """ Build a CastroData object for a particular pixel """ ipix = self._tsmap.xy_pix_to_ipix(xy, colwise) return self.castroData_from_ipix(ipix)
python
def castroData_from_pix_xy(self, xy, colwise=False): """ Build a CastroData object for a particular pixel """ ipix = self._tsmap.xy_pix_to_ipix(xy, colwise) return self.castroData_from_ipix(ipix)
[ "def", "castroData_from_pix_xy", "(", "self", ",", "xy", ",", "colwise", "=", "False", ")", ":", "ipix", "=", "self", ".", "_tsmap", ".", "xy_pix_to_ipix", "(", "xy", ",", "colwise", ")", "return", "self", ".", "castroData_from_ipix", "(", "ipix", ")" ]
Build a CastroData object for a particular pixel
[ "Build", "a", "CastroData", "object", "for", "a", "particular", "pixel" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1619-L1622
fermiPy/fermipy
fermipy/castro.py
TSCube.find_and_refine_peaks
def find_and_refine_peaks(self, threshold, min_separation=1.0, use_cumul=False): """Run a simple peak-finding algorithm, and fit the peaks to paraboloids to extract their positions and error ellipses. Parameters ---------- threshold : float ...
python
def find_and_refine_peaks(self, threshold, min_separation=1.0, use_cumul=False): """Run a simple peak-finding algorithm, and fit the peaks to paraboloids to extract their positions and error ellipses. Parameters ---------- threshold : float ...
[ "def", "find_and_refine_peaks", "(", "self", ",", "threshold", ",", "min_separation", "=", "1.0", ",", "use_cumul", "=", "False", ")", ":", "if", "use_cumul", ":", "theMap", "=", "self", ".", "_ts_cumul", "else", ":", "theMap", "=", "self", ".", "_tsmap", ...
Run a simple peak-finding algorithm, and fit the peaks to paraboloids to extract their positions and error ellipses. Parameters ---------- threshold : float Peak threshold in TS. min_separation : float Radius of region size in degrees. Sets the minimum ...
[ "Run", "a", "simple", "peak", "-", "finding", "algorithm", "and", "fit", "the", "peaks", "to", "paraboloids", "to", "extract", "their", "positions", "and", "error", "ellipses", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/castro.py#L1624-L1666
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
make_lat_lons
def make_lat_lons(cvects): """ Convert from directional cosines to latitidue and longitude Parameters ---------- cvects : directional cosine (i.e., x,y,z component) values returns (np.ndarray(2,nsrc)) with the directional cosine (i.e., x,y,z component) values """ lats = np.degrees(np.arcsi...
python
def make_lat_lons(cvects): """ Convert from directional cosines to latitidue and longitude Parameters ---------- cvects : directional cosine (i.e., x,y,z component) values returns (np.ndarray(2,nsrc)) with the directional cosine (i.e., x,y,z component) values """ lats = np.degrees(np.arcsi...
[ "def", "make_lat_lons", "(", "cvects", ")", ":", "lats", "=", "np", ".", "degrees", "(", "np", ".", "arcsin", "(", "cvects", "[", "2", "]", ")", ")", "lons", "=", "np", ".", "degrees", "(", "np", ".", "arctan2", "(", "cvects", "[", "0", "]", ",...
Convert from directional cosines to latitidue and longitude Parameters ---------- cvects : directional cosine (i.e., x,y,z component) values returns (np.ndarray(2,nsrc)) with the directional cosine (i.e., x,y,z component) values
[ "Convert", "from", "directional", "cosines", "to", "latitidue", "and", "longitude" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L20-L31
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
make_cos_vects
def make_cos_vects(lon_vect, lat_vect): """ Convert from longitude (RA or GLON) and latitude (DEC or GLAT) values to directional cosines Parameters ---------- lon_vect,lat_vect : np.ndarray(nsrc) Input values returns (np.ndarray(3,nsrc)) with the directional cosine (i.e., x,y,z component)...
python
def make_cos_vects(lon_vect, lat_vect): """ Convert from longitude (RA or GLON) and latitude (DEC or GLAT) values to directional cosines Parameters ---------- lon_vect,lat_vect : np.ndarray(nsrc) Input values returns (np.ndarray(3,nsrc)) with the directional cosine (i.e., x,y,z component)...
[ "def", "make_cos_vects", "(", "lon_vect", ",", "lat_vect", ")", ":", "lon_rad", "=", "np", ".", "radians", "(", "lon_vect", ")", "lat_rad", "=", "np", ".", "radians", "(", "lat_vect", ")", "cvals", "=", "np", ".", "cos", "(", "lat_rad", ")", "xvals", ...
Convert from longitude (RA or GLON) and latitude (DEC or GLAT) values to directional cosines Parameters ---------- lon_vect,lat_vect : np.ndarray(nsrc) Input values returns (np.ndarray(3,nsrc)) with the directional cosine (i.e., x,y,z component) values
[ "Convert", "from", "longitude", "(", "RA", "or", "GLON", ")", "and", "latitude", "(", "DEC", "or", "GLAT", ")", "values", "to", "directional", "cosines" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L34-L51
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
find_matches_by_distance
def find_matches_by_distance(cos_vects, cut_dist): """Find all the pairs of sources within a given distance of each other. Parameters ---------- cos_vects : np.ndarray(e,nsrc) Directional cosines (i.e., x,y,z component) values of all the sources cut_dist : float ...
python
def find_matches_by_distance(cos_vects, cut_dist): """Find all the pairs of sources within a given distance of each other. Parameters ---------- cos_vects : np.ndarray(e,nsrc) Directional cosines (i.e., x,y,z component) values of all the sources cut_dist : float ...
[ "def", "find_matches_by_distance", "(", "cos_vects", ",", "cut_dist", ")", ":", "dist_rad", "=", "np", ".", "radians", "(", "cut_dist", ")", "cos_t_cut", "=", "np", ".", "cos", "(", "dist_rad", ")", "nsrc", "=", "cos_vects", ".", "shape", "[", "1", "]", ...
Find all the pairs of sources within a given distance of each other. Parameters ---------- cos_vects : np.ndarray(e,nsrc) Directional cosines (i.e., x,y,z component) values of all the sources cut_dist : float Angular cut in degrees that will be used to select pairs ...
[ "Find", "all", "the", "pairs", "of", "sources", "within", "a", "given", "distance", "of", "each", "other", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L54-L90
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
find_matches_by_sigma
def find_matches_by_sigma(cos_vects, unc_vect, cut_sigma): """Find all the pairs of sources within a given distance of each other. Parameters ---------- cos_vects : np.ndarray(3,nsrc) Directional cosines (i.e., x,y,z component) values of all the sources unc_vect : np.ndarray(nsrc) ...
python
def find_matches_by_sigma(cos_vects, unc_vect, cut_sigma): """Find all the pairs of sources within a given distance of each other. Parameters ---------- cos_vects : np.ndarray(3,nsrc) Directional cosines (i.e., x,y,z component) values of all the sources unc_vect : np.ndarray(nsrc) ...
[ "def", "find_matches_by_sigma", "(", "cos_vects", ",", "unc_vect", ",", "cut_sigma", ")", ":", "match_dict", "=", "{", "}", "sig_2_vect", "=", "unc_vect", "*", "unc_vect", "for", "i", ",", "v1", "in", "enumerate", "(", "cos_vects", ".", "T", ")", ":", "c...
Find all the pairs of sources within a given distance of each other. Parameters ---------- cos_vects : np.ndarray(3,nsrc) Directional cosines (i.e., x,y,z component) values of all the sources unc_vect : np.ndarray(nsrc) Uncertainties on the source positions cut_sigma : flo...
[ "Find", "all", "the", "pairs", "of", "sources", "within", "a", "given", "distance", "of", "each", "other", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L93-L129
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
fill_edge_matrix
def fill_edge_matrix(nsrcs, match_dict): """ Create and fill a matrix with the graph 'edges' between sources. Parameters ---------- nsrcs : int number of sources (used to allocate the size of the matrix) match_dict : dict((int,int):float) Each entry gives a pair of source in...
python
def fill_edge_matrix(nsrcs, match_dict): """ Create and fill a matrix with the graph 'edges' between sources. Parameters ---------- nsrcs : int number of sources (used to allocate the size of the matrix) match_dict : dict((int,int):float) Each entry gives a pair of source in...
[ "def", "fill_edge_matrix", "(", "nsrcs", ",", "match_dict", ")", ":", "e_matrix", "=", "np", ".", "zeros", "(", "(", "nsrcs", ",", "nsrcs", ")", ")", "for", "k", ",", "v", "in", "match_dict", ".", "items", "(", ")", ":", "e_matrix", "[", "k", "[", ...
Create and fill a matrix with the graph 'edges' between sources. Parameters ---------- nsrcs : int number of sources (used to allocate the size of the matrix) match_dict : dict((int,int):float) Each entry gives a pair of source indices, and the corresponding measure (eit...
[ "Create", "and", "fill", "a", "matrix", "with", "the", "graph", "edges", "between", "sources", "." ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L132-L154
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
make_rev_dict_unique
def make_rev_dict_unique(cdict): """ Make a reverse dictionary Parameters ---------- in_dict : dict(int:dict(int:True)) A dictionary of clusters. Each cluster is a source index and the dictionary of other sources in the cluster. Returns ------- rev_dict : dict(int:dict(i...
python
def make_rev_dict_unique(cdict): """ Make a reverse dictionary Parameters ---------- in_dict : dict(int:dict(int:True)) A dictionary of clusters. Each cluster is a source index and the dictionary of other sources in the cluster. Returns ------- rev_dict : dict(int:dict(i...
[ "def", "make_rev_dict_unique", "(", "cdict", ")", ":", "rev_dict", "=", "{", "}", "for", "k", ",", "v", "in", "cdict", ".", "items", "(", ")", ":", "if", "k", "in", "rev_dict", ":", "rev_dict", "[", "k", "]", "[", "k", "]", "=", "True", "else", ...
Make a reverse dictionary Parameters ---------- in_dict : dict(int:dict(int:True)) A dictionary of clusters. Each cluster is a source index and the dictionary of other sources in the cluster. Returns ------- rev_dict : dict(int:dict(int:True)) A dictionary pointin...
[ "Make", "a", "reverse", "dictionary" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L157-L184
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
make_clusters
def make_clusters(span_tree, cut_value): """ Find clusters from the spanning tree Parameters ---------- span_tree : a sparse nsrcs x nsrcs array Filled with zeros except for the active edges, which are filled with the edge measures (either distances or sigmas cut_value : float ...
python
def make_clusters(span_tree, cut_value): """ Find clusters from the spanning tree Parameters ---------- span_tree : a sparse nsrcs x nsrcs array Filled with zeros except for the active edges, which are filled with the edge measures (either distances or sigmas cut_value : float ...
[ "def", "make_clusters", "(", "span_tree", ",", "cut_value", ")", ":", "iv0", ",", "iv1", "=", "span_tree", ".", "nonzero", "(", ")", "# This is the dictionary of all the pairings for each source", "match_dict", "=", "{", "}", "for", "i0", ",", "i1", "in", "zip",...
Find clusters from the spanning tree Parameters ---------- span_tree : a sparse nsrcs x nsrcs array Filled with zeros except for the active edges, which are filled with the edge measures (either distances or sigmas cut_value : float Value used to cluster group. All links with mea...
[ "Find", "clusters", "from", "the", "spanning", "tree" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L187-L258
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
select_from_cluster
def select_from_cluster(idx_key, idx_list, measure_vect): """ Select a single source from a cluster and make it the new cluster key Parameters ---------- idx_key : int index of the current key for a cluster idx_list : [int,...] list of the other source indices in the cluster measu...
python
def select_from_cluster(idx_key, idx_list, measure_vect): """ Select a single source from a cluster and make it the new cluster key Parameters ---------- idx_key : int index of the current key for a cluster idx_list : [int,...] list of the other source indices in the cluster measu...
[ "def", "select_from_cluster", "(", "idx_key", ",", "idx_list", ",", "measure_vect", ")", ":", "best_idx", "=", "idx_key", "best_measure", "=", "measure_vect", "[", "idx_key", "]", "out_list", "=", "[", "idx_key", "]", "+", "idx_list", "for", "idx", ",", "mea...
Select a single source from a cluster and make it the new cluster key Parameters ---------- idx_key : int index of the current key for a cluster idx_list : [int,...] list of the other source indices in the cluster measure_vect : np.narray((nsrc),float) vector of the measure used...
[ "Select", "a", "single", "source", "from", "a", "cluster", "and", "make", "it", "the", "new", "cluster", "key" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L261-L287
fermiPy/fermipy
fermipy/scripts/cluster_sources.py
find_centroid
def find_centroid(cvects, idx_list, weights=None): """ Find the centroid for a set of vectors Parameters ---------- cvects : ~numpy.ndarray(3,nsrc) with directional cosine (i.e., x,y,z component) values idx_list : [int,...] list of the source indices in the cluster weights : ~numpy.ndar...
python
def find_centroid(cvects, idx_list, weights=None): """ Find the centroid for a set of vectors Parameters ---------- cvects : ~numpy.ndarray(3,nsrc) with directional cosine (i.e., x,y,z component) values idx_list : [int,...] list of the source indices in the cluster weights : ~numpy.ndar...
[ "def", "find_centroid", "(", "cvects", ",", "idx_list", ",", "weights", "=", "None", ")", ":", "if", "weights", "is", "None", ":", "weighted", "=", "cvects", ".", "T", "[", "idx_list", "]", ".", "sum", "(", "0", ")", "sum_weights", "=", "float", "(",...
Find the centroid for a set of vectors Parameters ---------- cvects : ~numpy.ndarray(3,nsrc) with directional cosine (i.e., x,y,z component) values idx_list : [int,...] list of the source indices in the cluster weights : ~numpy.ndarray(nsrc) with the weights to use. None for equal weightin...
[ "Find", "the", "centroid", "for", "a", "set", "of", "vectors" ]
train
https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/scripts/cluster_sources.py#L290-L314