Skip to content

Commit

Permalink
Add NO_DATA to default excludeMaskPlanes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrawls committed Oct 30, 2024
1 parent 1008875 commit 342a1b6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion python/lsst/ip/diffim/detectAndMeasure.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,12 @@ def setDefaults(self):
self.detection.thresholdValue = 5.0
self.detection.reEstimateBackground = False
self.detection.thresholdType = "pixel_stdev"
self.detection.excludeMaskPlanes = ["EDGE", "SAT", "BAD", "INTRP"]
self.detection.excludeMaskPlanes = ["EDGE",
"SAT",
"BAD",
"INTRP",
"NO_DATA",
]

self.measurement.plugins.names |= ["ext_trailedSources_Naive",
"base_LocalPhotoCalib",
Expand Down

0 comments on commit 342a1b6

Please sign in to comment.