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
Some TM has not been converted into fits files for various reasons this issue to track the overall progress on the analysis and resolution of these issues.
2x AttributeError: 'PacketData' object has no attribute 'NIX00268'
This table covers a list of currently missing L0 files based of of LB files created using the following script modified for each type
def missing_lb_l0(num):
lb = Path(f'LB/21/6/{num}').glob("*.fits")
l0 = Path(f'L0/21/6/{num}').glob("*.fits")
lb_uid = [f.name.split('_')[-1] for f in lb] # extract UID-SEQ part
l0_uid = [f.name.split('_')[-1] for f in l0]
return set(lb_uid).difference(set(l0_uid))
Some TM has not been converted into fits files for various reasons this issue to track the overall progress on the analysis and resolution of these issues.
This table covers a list of currently missing L0 files based of of LB files created using the following script modified for each type
The text was updated successfully, but these errors were encountered: