Skip to content

Commit

Permalink
Merge pull request #348 from lsst/tickets/DM-15180
Browse files Browse the repository at this point in the history
DM-15180: Turn off coordinate covariance calculation
  • Loading branch information
cmsaunders committed Sep 15, 2023
2 parents 6f40f42 + 6fbeb68 commit d97887c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/lsst/meas/algorithms/dynamicDetection.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ def calculateThreshold(self, exposure, seed, sigma=None, minFractionSourcesFacto
peaks = source.getFootprint().getPeaks()
assert len(peaks) == 1
source.set(key, peaks[0].getF())
source.updateCoord(exposure.getWcs())
# Coordinate covariance is not used, so don't bother calulating it.
source.updateCoord(exposure.getWcs(), include_covariance=False)

# Forced photometry on sky objects
self.skyMeasurement.run(catalog, exposure, catalog, exposure.getWcs())
Expand Down

0 comments on commit d97887c

Please sign in to comment.