File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
python/lsst/meas/algorithms Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -418,15 +418,15 @@ class RequireUnresolved(BaseLimit):
418
418
the limit, and then the `apply` method can be used to identify sources
419
419
in the catalog that match the configured limit.
420
420
"""
421
- name = pexConfig .Field (dtype = str , default = "base_ClassificationExtendedness_value " ,
421
+ name = pexConfig .Field (dtype = str , default = "base_ClassificationSizeExtendedness_value " ,
422
422
doc = "Name of column for star/galaxy separation" )
423
423
424
424
def setDefaults (self ):
425
425
"""Set default
426
426
427
- ``base_ClassificationExtendedness_value < 0.5`` means unresolved.
427
+ Values below the threshold are unresolved.
428
428
"""
429
- self .maximum = 0.5
429
+ self .maximum = 0.1
430
430
431
431
def apply (self , catalog ):
432
432
"""Apply the flag requirements to a catalog
You can’t perform that action at this time.
0 commit comments