diff --git a/imap_processing/lo/l1b/lo_l1b.py b/imap_processing/lo/l1b/lo_l1b.py index b6ce01d517..fff36240ad 100644 --- a/imap_processing/lo/l1b/lo_l1b.py +++ b/imap_processing/lo/l1b/lo_l1b.py @@ -498,7 +498,7 @@ def set_esa_mode( # Get the sweep table rows that correspond to the time period of the pointing pointing_sweep_df = sweep_df[ (sweep_df["GoodTime_start"] >= pointing_start_met) - & (sweep_df["GoodTime_start"] <= pointing_end_met) + & (sweep_df["GoodTime_end"] <= pointing_end_met) ] # Check that there is only one ESA mode in the sweep table for the pointing diff --git a/pyproject.toml b/pyproject.toml index 0abdf61753..09b8d0f04a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry_dynamic_versioning.backend" [tool.poetry] name = "imap-processing" # Gets updated dynamically by the poetry-dynamic-versioning plugin -version = "1.0.25.post6.dev0+882be304" +version = "0.0.0" description = "IMAP Science Operations Center Processing" authors = ["IMAP SDC Developers "] readme = "README.md"