Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/lsst.pipe.tasks/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Contributing
============

``lsst.pipe.tasks`` is developed at https://github.com/lsst/pipe_tasks.
You can find Jira issues for this module under the `pipe_tasks <https://jira.lsstcorp.org/issues/?jql=project%20%3D%20DM%20AND%20component%20%3D%20pipe_tasks>`_ component.
You can find Jira issues for this module under the `pipe_tasks <https://rubinobs.atlassian.net/issues/?jql=project%20%3D%20%22DM%22%20AND%20component%20%3D%20%22pipe_tasks%22>`_ component.

.. If there are topics related to developing this module (rather than using it), link to this from a toctree placed here.

Expand Down
14 changes: 7 additions & 7 deletions python/lsst/pipe/tasks/interpImage.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ def _setFallbackValue(self, mi=None):
"negativeFallbackAllowed is False: setting fallbackValue to 0.0")
fallbackValue = max(fallbackValue, 0.0)

self.log.info("fallbackValueType %s has been set to %.4f",
self.config.fallbackValueType, fallbackValue)
self.log.debug("fallbackValueType %s has been set to %.4f",
self.config.fallbackValueType, fallbackValue)

return fallbackValue

Expand Down Expand Up @@ -184,11 +184,11 @@ def run(self, image, planeName=None, fwhmPixels=None, defects=None):
# set psf from exposure if provided OR using modelPsf with fwhmPixels provided
try:
psf = image.getPsf()
self.log.info("Setting psf for interpolation from image")
self.log.trace("Setting psf for interpolation from image")
except AttributeError:
self.log.info("Creating psf model for interpolation from fwhm(pixels) = %s",
str(fwhmPixels) if fwhmPixels is not None else
(str(self.config.modelPsf.defaultFwhm)) + " [default]")
self.log.debug("Creating psf model for interpolation from fwhm(pixels) = %s",
fwhmPixels if fwhmPixels is not None else
(str(self.config.modelPsf.defaultFwhm)) + " [default]")
psf = self.config.modelPsf.apply(fwhm=fwhmPixels)

fallbackValue = 0.0 # interpolateOverDefects needs this to be a float, regardless if it is used
Expand All @@ -197,7 +197,7 @@ def run(self, image, planeName=None, fwhmPixels=None, defects=None):

self.interpolateImage(maskedImage, psf, defectList, fallbackValue)

self.log.info("Interpolated over %d %s pixels.", len(defectList), planeName)
self.log.debug("Interpolated over %d %s pixels.", len(defectList), planeName)
self.metadata["interpolated_pixel_count"] = len(defectList)

@contextmanager
Expand Down