aaronjswank
Results
1
comments of
aaronjswank
in spaceweather.py replace line: `if flag2 == 1: SW_PRE.append(line.split())` with: ``` if flag2 == 1: sw_p = line.split() if (len(sw_p) == 32): sw_p = np.delete(sw_p,[23,24,25]) else: sw_p = np.delete(sw_p,[23,24,25,27]) SW_PRE.append(sw_p)...