Skip to content

Commit

Permalink
bugfix: recsec subset streams, which checked that 'st' and 'st_syn' h…
Browse files Browse the repository at this point in the history
…ad the same stations, would not run for streams of the same length, leading to edge case where same length streams would plot out of order because they had not been sorted. removed the criteria and now subset streams runs at all times
  • Loading branch information
bch0w committed Nov 22, 2023
1 parent 2c9b734 commit 151d06f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pysep/utils/curtail.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,6 @@ def get_ids(st):
if len(st_a) != len(st_b):
logger.warning(f"stream lengths don't match {len(st_a)} != {len(st_b)} "
f"will subset to the shorter length")
else:
return st_a, st_b

st_a_out = Stream()
st_b_out = Stream()
Expand Down

0 comments on commit 151d06f

Please sign in to comment.