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 fb9b942 commit 5169b29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions rt_eqcorrscan/reactor/backfill.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ def backfill(
parallel_process=parallel_processing,
process_cores=process_cores, copy_data=False,
ignore_bad_data=True,
overlap=0,
**kwargs)
Logger.info(f"Backfiller made {len(new_party)} detections between {_starttime} and {_endtime}")
except Exception as e:
Expand Down
4 changes: 2 additions & 2 deletions rt_eqcorrscan/rt_match_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ def run(
buffer_capacity = self.rt_client.buffer_capacity
# Start the streamer
self._start_streaming()

# Update backfill start time
self._last_backfill_start = UTCDateTime.now()
restart_interval = 600.0
Expand Down 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,
concurrent_processing=False, overlap=0,
**kwargs)
Logger.info("Completed detection")
except Exception as e: # pragma: no cover
Expand Down

0 comments on commit 5169b29

Please sign in to comment.