Skip to content

Commit ab1f63e

Browse files
authored
Merge pull request #365 from lsst/tickets/DM-42663
DM-42663: Change RequireUnresolved to use moments-based classifier by default.
2 parents d99fdf4 + 18a8f07 commit ab1f63e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/lsst/meas/algorithms/sourceSelector.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,15 +418,15 @@ class RequireUnresolved(BaseLimit):
418418
the limit, and then the `apply` method can be used to identify sources
419419
in the catalog that match the configured limit.
420420
"""
421-
name = pexConfig.Field(dtype=str, default="base_ClassificationExtendedness_value",
421+
name = pexConfig.Field(dtype=str, default="base_ClassificationSizeExtendedness_value",
422422
doc="Name of column for star/galaxy separation")
423423

424424
def setDefaults(self):
425425
"""Set default
426426
427-
``base_ClassificationExtendedness_value < 0.5`` means unresolved.
427+
Values below the threshold are unresolved.
428428
"""
429-
self.maximum = 0.5
429+
self.maximum = 0.1
430430

431431
def apply(self, catalog):
432432
"""Apply the flag requirements to a catalog

0 commit comments

Comments
 (0)