Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion imap_processing/mag/l1c/interpolation_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,12 @@ def linear_filtered(
input_filtered, vectors_filtered = cic_filter(
input_vectors, input_timestamps, output_timestamps, input_rate, output_rate
)
return linear(vectors_filtered, input_filtered, output_timestamps)
# The CIC-filtered timeline is already trimmed by the burst buffer selection in
# L1C. Allow interpolation to use the filtered edge samples instead of dropping the
# final nominal output timestamp due to small sub-cadence offsets.
return linear(
vectors_filtered, input_filtered, output_timestamps, extrapolate=True
)


def quadratic_filtered(
Expand Down
Loading