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 testing why some new NIRISS sirskernel coefficients weren't improving the data quality as much as expected, I ran across a bug in the existing code. The quadrant boundaries are not being computed properly in the apply_conv_kernel step; currently this says
Issue JP-3915 was created on JIRA by David Law:
In testing why some new NIRISS sirskernel coefficients weren't improving the data quality as much as expected, I ran across a bug in the existing code. The quadrant boundaries are not being computed properly in the apply_conv_kernel step; currently this says
data[:, chan * npix * 3 // 4:(chan + 1) * npix * 3 // 4] -= template[:, np.newaxis]
but this will overflow the array. The 4th quadrant for instance is trying to correct pixel numbers 4608:6144 of a 2048 element array.
The text was updated successfully, but these errors were encountered: