Skip to content

Commit

Permalink
Merge pull request #113 from lsst/tickets/DM-23206
Browse files Browse the repository at this point in the history
DM-23206: Fix vectorized call to updateSourceCoords
  • Loading branch information
erykoff committed Jan 28, 2020
2 parents 24e56ef + 5d86e97 commit cdfeb1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/validate/drp/matchreduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def _loadAndMatchCatalogs(repo, dataIds, matchRadius,
/ tmpCat['base_PsfFlux_instFluxErr']

if doApplyExternalSkyWcs:
afwTable.wcsUtils.updateSourceCoords(wcs, tmpCat)
afwTable.updateSourceCoords(wcs, tmpCat)
photoCalib.instFluxToMagnitude(tmpCat, "base_PsfFlux", "base_PsfFlux")
if not skipNonSrd:
tmpCat['slot_ModelFlux_snr'][:] = (tmpCat['slot_ModelFlux_instFlux'] /
Expand Down

0 comments on commit cdfeb1a

Please sign in to comment.