Erin Sheldon
Erin Sheldon
Currently only the site-wide config, that in the CWD, and things in LOAD_PATH are looked for. It would be nice to look for a "dot" file in the home directory...
The work on speeding up `read_header` showed that there is significant overhead loading the full HDU information. Implement loading of very basic HDU info into the FITS object and loading...
Need a way for the user to send max col lenghts
It is convenient to have data packed into structures. For example, if a calculation requires a large number of pieces of information, it is preferable to have the following (...
Doc bugs
This says `See ~init_sources` but should say `init_source`: https://github.com/pmelchior/scarlet/blob/134fac69465c2eea46b6909c6f401e1b17cdd85b/scarlet/initialization.py#L336 This says "Fraction of the background to use as a threshold" but should say it is the background RMS, as in...
Adds a new profile `Spiral` that creates a logarithmic spiral object, represented by point sources. The points are created in three dimensions in a disk, with possible inclination along the...
The recent feature that stars are not removed in fit() only flagged is important for validation tests. Is there a stable version that can be released for 1.4?
This model is for PSFs, should use FWHM as the size parameter
something like this in general ```python def make_image(self, pars): nrow, ncol = self.obs.image.shape wcs = self.obs.jacobian.get_galsim_wcs() model = self.make_model(pars) gsim = model.drawImage(nx=ncol, ny=nrow, wcs=wcs) return gsim.array ```