Fix using slice(None) as default value for double sized strixels
Description
As reported by Nuno, a missing double sized pixel definition in the hardcoded conversion files for strixels unfortunately uses slice(None)
/ np.s_[:]
instead, effectively making all pixels double-sized. This MR fixes this by using np.s_[:0]
instead.
How Has This Been Tested?
TBD CI
Types of changes
- Bug fix (non-breaking change which fixes an issue)