Skip to content

Commit

Permalink
Merge pull request #78 from lsst/tickets/DM-46959
Browse files Browse the repository at this point in the history
DM-46959: Get warp only within the coadd bounding box for cell-coadds
  • Loading branch information
arunkannawadi authored Nov 7, 2024
2 parents 27f7a3c + 5097ae9 commit a33e1fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/drp/tasks/assemble_cell_coadd.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def run(self, inputWarps, skyInfo, **kwargs):
# Read in one warp at a time, and accumulate it in all the cells that
# it completely overlaps.
for warpRef, artifactMaskRef in zip(inputWarps, artifactMasks):
warp = warpRef.get()
warp = warpRef.get(parameters={"bbox": skyInfo.bbox})

warp.mask.addMaskPlane("CLIPPED")
warp.mask.addMaskPlane("REJECTED")
Expand Down

0 comments on commit a33e1fb

Please sign in to comment.