You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the python interface, users have to manually check output['warings'] dictionary key to see if they have saturated pixels. Hard saturated pixels need to be more directly obvious. This can be accomplished through:
user warnings
printouts in verbose=True mode
colored pixels in jpi.jwst_1d_spec
In the meantime, users should be in the habit of checking their output. E.g.
>>> output['warning']
{'Group Number Too Low?': 'All good',
'Group Number Too High?': 'All good',
'Non linear?': 'All good', 'Saturated?':
'Full saturation:\n There are 644 pixels saturated at the end of the first group. These pixels cannot be recovered.',
'% full well high?': 'All good',
'Num Groups Reset?': 'NGROUPS<2SET TO NGROUPS=2'}
Which shows the user it is saturated.
The text was updated successfully, but these errors were encountered:
In the python interface, users have to manually check
output['warings']
dictionary key to see if they have saturated pixels. Hard saturated pixels need to be more directly obvious. This can be accomplished through:jpi.jwst_1d_spec
In the meantime, users should be in the habit of checking their output. E.g.
Gives the warnings:
Which shows the user it is saturated.
The text was updated successfully, but these errors were encountered: