Implement `stop_t` gap adjustments; the good lord said it is the problem
parent
96b871c4d7
commit
44f50e3d0e
|
@ -305,6 +305,7 @@ def slice_from_time(
|
||||||
|
|
||||||
index = arr['index']
|
index = arr['index']
|
||||||
i_first = index[0]
|
i_first = index[0]
|
||||||
|
i_last = index[-1]
|
||||||
read_i_max = arr.shape[0]
|
read_i_max = arr.shape[0]
|
||||||
|
|
||||||
if (
|
if (
|
||||||
|
@ -392,19 +393,31 @@ def slice_from_time(
|
||||||
# )
|
# )
|
||||||
read_i_start = new_read_i_start - 1
|
read_i_start = new_read_i_start - 1
|
||||||
|
|
||||||
|
i_iv_stop = index[read_i_stop - 1]
|
||||||
t_iv_stop = times[read_i_stop - 1]
|
t_iv_stop = times[read_i_stop - 1]
|
||||||
if (
|
if (
|
||||||
i_stop_t <= t_last
|
i_iv_stop < i_last
|
||||||
and t_iv_stop < i_stop_t
|
# i_stop_t <= t_last
|
||||||
|
and t_iv_stop > i_stop_t
|
||||||
):
|
):
|
||||||
t_diff = stop_t - t_iv_stop
|
# t_diff = stop_t - t_iv_stop
|
||||||
print(
|
# print(
|
||||||
f"WE'RE CUTTING OUT TIME - STEP:{step}\n"
|
# f"WE'RE CUTTING OUT TIME - STEP:{step}\n"
|
||||||
f'calced iv stop:{t_iv_stop} -> stop_t:{stop_t}\n'
|
# f'calced iv stop:{t_iv_stop} -> stop_t:{stop_t}\n'
|
||||||
f'diff: {t_diff}\n'
|
# f'diff: {t_diff}\n'
|
||||||
# f'SHOULD REMAP STOP: {read_i_start} -> {new_read_i_start}\n'
|
# # f'SHOULD REMAP STOP: {read_i_start} -> {new_read_i_start}\n'
|
||||||
|
# )
|
||||||
|
new_read_i_stop = np.searchsorted(
|
||||||
|
times[read_i_start:],
|
||||||
|
i_stop_t,
|
||||||
|
side='right',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (
|
||||||
|
new_read_i_stop < read_i_stop
|
||||||
|
):
|
||||||
|
read_i_stop = read_i_start + new_read_i_stop
|
||||||
|
|
||||||
# read-relative indexes: gives a slice where `shm.array[read_slc]`
|
# read-relative indexes: gives a slice where `shm.array[read_slc]`
|
||||||
# will be the data spanning the input time range `start_t` ->
|
# will be the data spanning the input time range `start_t` ->
|
||||||
# `stop_t`
|
# `stop_t`
|
||||||
|
|
Loading…
Reference in New Issue