Skip to content

Commit

Permalink
Do not use eqcorrscan overlaps
Browse files Browse the repository at this point in the history
  • Loading branch information
calum-chamberlain committed Dec 14, 2023
1 parent 5169b29 commit 0475237
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rt_eqcorrscan/reactor/backfill.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def backfill(
parallel_process=parallel_processing,
process_cores=process_cores, copy_data=False,
ignore_bad_data=True,
overlap=0,
overlap=None,
**kwargs)
Logger.info(f"Backfiller made {len(new_party)} detections between {_starttime} and {_endtime}")
except Exception as e:
Expand Down
2 changes: 1 addition & 1 deletion rt_eqcorrscan/rt_match_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ def run(
process_cores=self.process_cores,
parallel_process=self._parallel_processing,
ignore_bad_data=True, copy_data=False,
concurrent_processing=False, overlap=0,
concurrent_processing=False, overlap=None,
**kwargs)
Logger.info("Completed detection")
except Exception as e: # pragma: no cover
Expand Down

0 comments on commit 0475237

Please sign in to comment.