Comment out bps for time indexing

epoch_indexing_and_dataviz_layer
Tyler Goodlet 2022-11-30 11:02:50 -05:00
parent 2b9ca5f805
commit f3bab826f6
1 changed files with 7 additions and 7 deletions

View File

@ -170,11 +170,11 @@ class IncrementalFormatter(msgspec.Struct):
prepend_length = int(last_xfirst - xfirst) prepend_length = int(last_xfirst - xfirst)
append_length = int(xlast - last_xlast) append_length = int(xlast - last_xlast)
if ( # if (
prepend_length < 0 # prepend_length < 0
or append_length < 0 # or append_length < 0
): # ):
breakpoint() # breakpoint()
# blah blah blah # blah blah blah
# do diffing for prepend, append and last entry # do diffing for prepend, append and last entry
@ -792,8 +792,8 @@ class StepCurveFmtr(IncrementalFormatter):
x_nd_new = self.x_nd[read_slc] x_nd_new = self.x_nd[read_slc]
x_nd_new[:] = new_from_src[index_field][:, np.newaxis] x_nd_new[:] = new_from_src[index_field][:, np.newaxis]
if (self.x_nd[self.xy_slice][-1] == 0.5).any(): # if (self.x_nd[self.xy_slice][-1] == 0.5).any():
breakpoint() # breakpoint()
def format_xy_nd_to_1d( def format_xy_nd_to_1d(
self, self,