Coverage for python/lsst/meas/algorithms/testUtils.py : 98%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# # LSST Data Management System # # Copyright 2008-2017 AURA/LSST. # # This product includes software developed by the # LSST Project (http://www.lsst.org/). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the LSST License Statement and # the GNU General Public License along with this program. If not, # see <https://www.lsstcorp.org/LegalNotices/>. #
"""Make an exposure with stars (modelled as Gaussians)
@param bbox: parent bbox of exposure @param kwid: kernel width (and height; kernel is square) @param sky: amount of sky background (counts) @param coordList: a list of [x, y, counts, sigma], where: * x,y are relative to exposure origin * counts is the integrated counts for the star * sigma is the Gaussian sigma in pixels @param addPoissonNoise: add Poisson noise to the exposure? """ # make an image with sources
# make a single gaussian psf
# make an image of it and scale to the desired number of counts
# bbox a window in our image and add the fake star image
# add Poisson noise
# bundle into a maskedimage and an exposure
# insert an approximate psf
maxRadius=80.0, nRadii=30, perturb=0.05): """Create a random TransmissionCurve with nontrivial spatial and wavelength variation.
Parameters ---------- rng : numpy.random.RandomState Random number generator. minWavelength : float Average minimum wavelength for generated TransmissionCurves (will be randomly perturbed). maxWavelength : float Average maximum wavelength for generated TransmissionCurves (will be randomly perturbed). nWavelengths : int Number of samples in the wavelength dimension. maxRadius : float Average maximum radius for spatial variation (will be perturbed). nRadii : int Number of samples in the radial dimension. perturb: float Fraction by which wavelength and radius bounds should be randomly perturbed. """
# throughput will be a rectangle in wavelength, shifting to higher wavelengths and shrinking # in height with radius, going to zero at all bounds. |