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):
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
You can’t perform that action at this time.
0 commit comments