Skip to content

Commit

Permalink
Fixed doc build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bourque committed Aug 20, 2024
1 parent 953c10c commit 69814da
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions imap_processing/codice/codice_l1a.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ class CoDICEL1aPipeline:
Retrieve the acquisition times via the Lo stepping table.
get_esa_sweep_values()
Retrieve the ESA sweep values.
unpack_science_data()
Make 4D L1a data product from the decompressed science data.
unpack_hi_science_data()
Decompress, unpack, and restructure CoDICE-Hi data arrays.
unpack_lo_science_data()
Decompress, unpack, and restructure CoDICE-Lo data arrays.
"""

def __init__(self, table_id: int, plan_id: int, plan_step: int, view_id: int):
Expand Down Expand Up @@ -274,7 +276,7 @@ def get_esa_sweep_values(self) -> None:

def unpack_hi_science_data(self, science_values: str) -> None:
"""
Unpack the CoDICE-Hi science data from the packet.
Decompress, unpack, and restructure CoDICE-Hi data arrays.
The science data within the packet is a compressed, binary string of
values.
Expand Down Expand Up @@ -304,7 +306,7 @@ def unpack_hi_science_data(self, science_values: str) -> None:

def unpack_lo_science_data(self, science_values: str) -> None:
"""
Unpack the CoDICE-Lo science data from the packet.
Decompress, unpack, and restructure CoDICE-Lo data arrays.
The science data within the packet is a compressed, binary string of
values. These data need to be divided up by species or priorities,
Expand Down

0 comments on commit 69814da

Please sign in to comment.