Add breakpoint on -ve range for now

epoch_indexing_and_dataviz_layer
Tyler Goodlet 2022-11-28 09:44:33 -05:00
parent d3f5ff1b4f
commit 5b08e9cba3
1 changed files with 2 additions and 0 deletions

View File

@ -190,6 +190,8 @@ def ds_m4(
if xrange is None: if xrange is None:
x_end = x[-1] # x end value/highest in domain x_end = x[-1] # x end value/highest in domain
xrange = (x_end - x_start) xrange = (x_end - x_start)
if xrange < 0:
breakpoint()
# XXX: always round up on the input pixels # XXX: always round up on the input pixels
# lnx = len(x) # lnx = len(x)