We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dc3f49 commit 59c3dd3Copy full SHA for 59c3dd3
1 file changed
imap_processing/codice/codice_l2.py
@@ -376,11 +376,7 @@ def compute_geometric_factors(
376
elif (processing_date < date_switch) | (processing_date >= fsw_switch_date):
377
# Modes will be true (reduced mode) anywhere half_spin > rgfo_half_spin
378
# otherwise false (full mode)
379
- modes = (
380
- valid_half_spin
381
- & (half_spin_per_esa_step > rgfo_half_spin)
382
- & (rgfo_half_spin > 0)
383
- )
+ modes = valid_half_spin & (half_spin_per_esa_step > rgfo_half_spin)
384
else:
385
# After November 24th, 2025, we no longer apply reduced geometric factors;
386
# always use the full geometric factor lookup.
0 commit comments