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
get_channel_energy_values() is causing problems for SOHO/EPHIN electrons, before and after the change in data product on Oct 4, 2017. The return array has a length of 4 or 5, depending on time. But actually it should be be 3 or 4. The problems lie in
# Sometimes there is no hyphen, but then it's not a range of energies
try:
lower_bound, temp=energy_str.split('-')
exceptValueError:
continue
First, it's truncated wrongly. Second, after the change of the data product, one channel info changed to 'deactivated bc. of failure mode D', which cause that channel to be skipped in the second code example above.
The text was updated successfully, but these errors were encountered:
get_channel_energy_values()
is causing problems for SOHO/EPHIN electrons, before and after the change in data product on Oct 4, 2017. The return array has a length of 4 or 5, depending on time. But actually it should be be 3 or 4. The problems lie inSEPpy/seppy/tools/__init__.py
Lines 2270 to 2274 in 2ff9cb8
and
SEPpy/seppy/tools/__init__.py
Lines 2335 to 2339 in 2ff9cb8
First, it's truncated wrongly. Second, after the change of the data product, one channel info changed to
'deactivated bc. of failure mode D'
, which cause that channel to be skipped in the second code example above.The text was updated successfully, but these errors were encountered: