From 5169b29ffe4c462a69b106013250512241d76c52 Mon Sep 17 00:00:00 2001 From: calum-chamberlain Date: Thu, 14 Dec 2023 14:59:00 +1300 Subject: [PATCH] Do not use eqcorrscan overlaps --- rt_eqcorrscan/reactor/backfill.py | 1 + rt_eqcorrscan/rt_match_filter.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/rt_eqcorrscan/reactor/backfill.py b/rt_eqcorrscan/reactor/backfill.py index ddf2dd3..4b395d6 100644 --- a/rt_eqcorrscan/reactor/backfill.py +++ b/rt_eqcorrscan/reactor/backfill.py @@ -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: diff --git a/rt_eqcorrscan/rt_match_filter.py b/rt_eqcorrscan/rt_match_filter.py index 7d6f538..da7bcba 100644 --- a/rt_eqcorrscan/rt_match_filter.py +++ b/rt_eqcorrscan/rt_match_filter.py @@ -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 @@ -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