Real Time Tribe

The RealTimeTribe class provides (near) real-time matched-filter methods. It subclasses EQcorrscan’s Tribe class and therefore provides all the same methods, as well as real-time methods. We simply make a RealTimeTribe from a Tribe and some streaming client. RT-EQcorrscan provides a _Streaming abstract base class outlining the basic attributes and methods a streaming client needs to have for real-time matched-filtering. The RealTimeClient is a mix of obspy’s EasySeedLinkClient and the _Streaming abc, providing access to seedlink services for real-time matched-filtering.

In this example we will see what seismicity is going on associated with the Rigdecrest sequence in California.

[1]:
from obspy import UTCDateTime
from obspy.clients.fdsn import Client
from eqcorrscan import Tribe
from eqcorrscan.utils.catalog_utils import filter_picks
from rt_eqcorrscan import RealTimeTribe
from rt_eqcorrscan.streaming import RealTimeClient

eq_client = Client("NCEDC")  # IRIS doesn't provide picks
client = Client("IRIS")  # We want to use IRIS for waveform data
rt_client = RealTimeClient(
    server_url="rtserve.iris.washington.edu",
    buffer_capacity=1200.) # NCEDC doesn't provide a public seedlink

template_catalog = eq_client.get_events(
    latitude=35.7, longitude=-117.4, maxradius=0.2,
    starttime=UTCDateTime(2019, 7, 1), endtime=UTCDateTime(2019, 7, 15),
    minmagnitude=4.5, includearrivals=True)
_ = template_catalog.plot(projection="local")
<Figure size 640x480 with 2 Axes>

We first have to generate a Tribe from this catalog. This will take a little while, and is one of the key motivations for using a TemplateBank of previously recorded earthquakes.

For speed we will filter the catalog

[2]:
unsupported_networks = {'BK', 'CI', 'NC', 'WR'} # IRIS doesn't provide everything.
all_networks = {p.waveform_id.network_code for event in template_catalog for p in event.picks}
filtered_catalog = filter_picks(
    template_catalog, top_n_picks=5,
    networks=list(all_networks.difference(unsupported_networks)),
    channels=["EHZ", "EHN", "EHE", "EH1", "EH2", "HHZ", "HHN", "HHE", "HH1", "HH2"])
tribe = Tribe().construct(
    method="from_client", catalog=filtered_catalog, client_id=client,
    lowcut=2., highcut=15., samp_rate=50., filt_order=4, prepick=0.5, length=4.,
    swin="all", process_len=300.)
/home/chambeca/miniconda3/envs/eqcorrscan/lib/python3.7/site-packages/obspy/signal/detrend.py:31: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
  if not np.issubdtype(data.dtype, float):
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!
Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!

We also need an inventory of stations that will be used.

[3]:
seed_ids = {tuple(pick.waveform_id.get_seed_string().split('.'))
            for event in filtered_catalog for pick in event.picks}
bulk = [
    (sid[0], sid[1], sid[2], sid[3], UTCDateTime(2019, 7, 1),
     UTCDateTime(2019, 7, 10)) for sid in seed_ids]
inventory = client.get_stations_bulk(bulk, level="channel")

Finally we can make the real-time tribe (note that plotting isn’t supported in the notebook, but if you run this outside of the notebook and turn plot=True then you will get a bokeh live updating plot:

[4]:
rt_tribe = RealTimeTribe(
        tribe=tribe, inventory=inventory, rt_client=rt_client,
        detect_interval=20, plot=False, plot_options=dict(plot_length=600.))

And we can run the (near) real-time detection!

[5]:
import logging

logging.basicConfig(
    level="INFO", format="%(asctime)s\t%(name)s\t%(levelname)s\t%(message)s"
)

rt_tribe.run(
    threshold=0.25, threshold_type="av_chan_corr", trig_int=10.,
    max_run_length=1200)  # Max_run_length will stop the process - leave unset to run forever.
2019-07-19 06:47:50,869  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     INFO    sending: requesting INFO level CAPABILITIES
2019-07-19 06:47:51,048 rt_eqcorrscan.streaming.streaming       INFO    Started streaming
2019-07-19 06:47:51,049 rt_eqcorrscan.rt_match_filter   INFO    Started real-time streaming
2019-07-19 06:47:51,050 rt_eqcorrscan.rt_match_filter   INFO    Detection will use the following data: {'AZ.RDM..HHZ', 'NN.BEN..EHZ', 'AZ.PFO..HHZ', 'NN.BHP..EHZ', 'AZ.LVA2..HHZ'}
2019-07-19 06:47:51,050 rt_eqcorrscan.rt_match_filter   INFO    Sleeping for 605.00s while accumulating data
2019-07-19 06:47:51,409  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     INFO    requesting next available data
2019-07-19 06:47:51,947  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     INFO    requesting next available data
2019-07-19 06:47:52,488  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     INFO    requesting next available data
2019-07-19 06:47:53,027  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     INFO    requesting next available data
2019-07-19 06:47:53,567  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     INFO    requesting next available data
2019-07-19 06:47:53,747  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     INFO    5 station(s) accepted
2019-07-19 06:57:56,152 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 06:57:56,329 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 06:57:56,329 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 06:57:56,330 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 06:57:56,330 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 06:57:56,331 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 06:57:56,433 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:47:38.838400Z and 2019-07-18T18:52:38.818400Z
2019-07-19 06:57:56,464 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:57:56,573 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1051s
2019-07-19 06:57:56,575 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0018s
2019-07-19 06:57:56,583 eqcorrscan.core.match_filter.matched_filter     INFO    Made 14 detections from 12 templates
2019-07-19 06:57:56,585 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:52:24.038400Z and 2019-07-18T18:57:24.018400Z
2019-07-19 06:57:56,611 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:57:56,676 eqcorrscan.utils.correlate      WARNING 534 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:57:56,676 eqcorrscan.utils.correlate      WARNING 534 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:57:56,677 eqcorrscan.utils.correlate      WARNING 534 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:57:56,677 eqcorrscan.utils.correlate      WARNING 534 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:57:56,677 eqcorrscan.utils.correlate      WARNING 534 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:57:56,678 eqcorrscan.utils.correlate      WARNING 534 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:57:56,678 eqcorrscan.utils.correlate      WARNING 534 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:57:56,678 eqcorrscan.utils.correlate      WARNING 534 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:57:56,680 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0649s
2019-07-19 06:57:56,682 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0014s
2019-07-19 06:57:56,683 eqcorrscan.core.match_filter.matched_filter     INFO    Made 1 detections from 12 templates
2019-07-19 06:57:56,785 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 06:57:56,788 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 14 detections
2019-07-19 06:57:56,789 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.64s
2019-07-19 06:57:56,789 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.36s until next run
2019-07-19 06:58:16,172 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 06:58:16,351 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 06:58:16,351 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 06:58:16,351 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 06:58:16,352 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 06:58:16,352 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 06:58:16,455 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:48:04.328400Z and 2019-07-18T18:53:04.308400Z
2019-07-19 06:58:16,484 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:58:16,556 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0653s
2019-07-19 06:58:16,559 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0017s
2019-07-19 06:58:16,567 eqcorrscan.core.match_filter.matched_filter     INFO    Made 12 detections from 12 templates
2019-07-19 06:58:16,568 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:52:49.528400Z and 2019-07-18T18:57:49.508400Z
2019-07-19 06:58:16,602 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:58:16,683 eqcorrscan.utils.correlate      WARNING 360 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:16,684 eqcorrscan.utils.correlate      WARNING 360 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:16,684 eqcorrscan.utils.correlate      WARNING 360 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:16,684 eqcorrscan.utils.correlate      WARNING 360 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:16,685 eqcorrscan.utils.correlate      WARNING 360 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:16,685 eqcorrscan.utils.correlate      WARNING 360 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:16,685 eqcorrscan.utils.correlate      WARNING 360 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:16,686 eqcorrscan.utils.correlate      WARNING 360 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:16,687 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0808s
2019-07-19 06:58:16,687 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0004s
2019-07-19 06:58:16,688 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 06:58:16,796 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 06:58:16,798 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 20 detections
2019-07-19 06:58:16,798 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.63s
2019-07-19 06:58:16,798 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.37s until next run
2019-07-19 06:58:36,192 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 06:58:36,372 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 06:58:36,372 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 06:58:36,373 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 06:58:36,374 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 06:58:36,374 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 06:58:36,478 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:48:19.638400Z and 2019-07-18T18:53:19.618400Z
2019-07-19 06:58:36,514 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:58:36,573 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0551s
2019-07-19 06:58:36,575 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 06:58:36,584 eqcorrscan.core.match_filter.matched_filter     INFO    Made 11 detections from 12 templates
2019-07-19 06:58:36,586 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:53:04.838400Z and 2019-07-18T18:58:04.818400Z
2019-07-19 06:58:36,625 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:58:36,688 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0572s
2019-07-19 06:58:36,688 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0003s
2019-07-19 06:58:36,689 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 06:58:36,798 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 06:58:36,801 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 21 detections
2019-07-19 06:58:36,801 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.61s
2019-07-19 06:58:36,802 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.39s until next run
2019-07-19 06:58:56,212 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 06:58:56,385 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 06:58:56,386 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 06:58:56,386 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 06:58:56,386 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 06:58:56,386 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 06:58:56,489 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:48:37.918400Z and 2019-07-18T18:53:37.898400Z
2019-07-19 06:58:56,523 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:58:56,584 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0563s
2019-07-19 06:58:56,585 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0011s
2019-07-19 06:58:56,591 eqcorrscan.core.match_filter.matched_filter     INFO    Made 11 detections from 12 templates
2019-07-19 06:58:56,592 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:53:23.118400Z and 2019-07-18T18:58:23.098400Z
2019-07-19 06:58:56,622 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:58:56,696 eqcorrscan.utils.correlate      WARNING 278 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:56,696 eqcorrscan.utils.correlate      WARNING 278 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:56,696 eqcorrscan.utils.correlate      WARNING 278 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:56,697 eqcorrscan.utils.correlate      WARNING 278 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:56,697 eqcorrscan.utils.correlate      WARNING 278 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:56,697 eqcorrscan.utils.correlate      WARNING 278 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:56,698 eqcorrscan.utils.correlate      WARNING 278 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:56,698 eqcorrscan.utils.correlate      WARNING 278 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:58:56,699 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0737s
2019-07-19 06:58:56,700 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0003s
2019-07-19 06:58:56,701 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 06:58:56,809 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 06:58:56,812 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 23 detections
2019-07-19 06:58:56,812 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.60s
2019-07-19 06:58:56,813 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.40s until next run
2019-07-19 06:59:16,232 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 06:59:16,511 eqcorrscan.core.match_filter.matched_filter     WARNING Last bit of data between 2019-07-18T18:58:34.315300Z and 2019-07-18T18:58:37.268400Z will go unused because it is shorter than a chunk of 300.0 s
2019-07-19 06:59:16,512 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:48:49.118400Z and 2019-07-18T18:53:49.098400Z
2019-07-19 06:59:16,539 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:59:16,620 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0770s
2019-07-19 06:59:16,622 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0013s
2019-07-19 06:59:16,627 eqcorrscan.core.match_filter.matched_filter     INFO    Made 10 detections from 12 templates
2019-07-19 06:59:16,628 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:53:34.318400Z and 2019-07-18T18:58:34.298400Z
2019-07-19 06:59:16,654 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:59:16,720 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0622s
2019-07-19 06:59:16,721 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0004s
2019-07-19 06:59:16,722 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 06:59:16,827 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 06:59:16,829 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 23 detections
2019-07-19 06:59:16,830 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.60s
2019-07-19 06:59:16,830 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.40s until next run
2019-07-19 06:59:36,252 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 06:59:36,534 eqcorrscan.core.match_filter.matched_filter     WARNING Last bit of data between 2019-07-18T18:58:34.315300Z and 2019-07-18T18:58:37.268400Z will go unused because it is shorter than a chunk of 300.0 s
2019-07-19 06:59:36,535 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:48:49.118400Z and 2019-07-18T18:53:49.098400Z
2019-07-19 06:59:36,569 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:59:36,643 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0702s
2019-07-19 06:59:36,645 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0010s
2019-07-19 06:59:36,653 eqcorrscan.core.match_filter.matched_filter     INFO    Made 10 detections from 12 templates
2019-07-19 06:59:36,655 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:53:34.318400Z and 2019-07-18T18:58:34.298400Z
2019-07-19 06:59:36,695 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:59:36,786 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0857s
2019-07-19 06:59:36,787 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0004s
2019-07-19 06:59:36,788 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 06:59:36,899 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 06:59:36,902 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 23 detections
2019-07-19 06:59:36,902 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.65s
2019-07-19 06:59:36,902 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.35s until next run
2019-07-19 06:59:56,273 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 06:59:56,455 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 06:59:56,456 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 06:59:56,457 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 06:59:56,458 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 06:59:56,458 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 06:59:56,560 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:49:42.388400Z and 2019-07-18T18:54:42.368400Z
2019-07-19 06:59:56,595 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:59:56,687 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0879s
2019-07-19 06:59:56,689 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0014s
2019-07-19 06:59:56,694 eqcorrscan.core.match_filter.matched_filter     INFO    Made 9 detections from 12 templates
2019-07-19 06:59:56,696 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:54:27.588400Z and 2019-07-18T18:59:27.568400Z
2019-07-19 06:59:56,730 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 06:59:56,831 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:59:56,831 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:59:56,832 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:59:56,832 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:59:56,833 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:59:56,833 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:59:56,833 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:59:56,834 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 06:59:56,835 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0997s
2019-07-19 06:59:56,836 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0008s
2019-07-19 06:59:56,837 eqcorrscan.core.match_filter.matched_filter     INFO    Made 1 detections from 12 templates
2019-07-19 06:59:56,934 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 06:59:56,936 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 25 detections
2019-07-19 06:59:56,937 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.67s
2019-07-19 06:59:56,937 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.33s until next run
2019-07-19 07:00:16,292 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:00:16,478 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:00:16,478 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:00:16,479 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:00:16,480 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:00:16,479 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:00:16,583 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:49:42.388400Z and 2019-07-18T18:54:42.368400Z
2019-07-19 07:00:16,611 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:00:16,734 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1153s
2019-07-19 07:00:16,736 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0010s
2019-07-19 07:00:16,740 eqcorrscan.core.match_filter.matched_filter     INFO    Made 9 detections from 12 templates
2019-07-19 07:00:16,741 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:54:27.588400Z and 2019-07-18T18:59:27.568400Z
2019-07-19 07:00:16,782 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:00:16,913 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:16,914 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:16,914 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:16,915 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:16,915 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:16,916 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:16,917 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:16,917 eqcorrscan.utils.correlate      WARNING 463 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:16,918 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1256s
2019-07-19 07:00:16,920 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0016s
2019-07-19 07:00:16,922 eqcorrscan.core.match_filter.matched_filter     INFO    Made 1 detections from 12 templates
2019-07-19 07:00:17,093 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:00:17,096 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 25 detections
2019-07-19 07:00:17,097 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.81s
2019-07-19 07:00:17,097 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.19s until next run
2019-07-19 07:00:36,313 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:00:36,484 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:00:36,484 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:00:36,484 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:00:36,484 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:00:36,485 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:00:36,587 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:50:04.758400Z and 2019-07-18T18:55:04.738400Z
2019-07-19 07:00:36,627 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:00:36,710 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0788s
2019-07-19 07:00:36,712 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0010s
2019-07-19 07:00:36,716 eqcorrscan.core.match_filter.matched_filter     INFO    Made 8 detections from 12 templates
2019-07-19 07:00:36,717 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:54:49.958400Z and 2019-07-18T18:59:49.938400Z
2019-07-19 07:00:36,743 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:00:36,824 eqcorrscan.utils.correlate      WARNING 179 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:36,825 eqcorrscan.utils.correlate      WARNING 179 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:36,825 eqcorrscan.utils.correlate      WARNING 179 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:36,825 eqcorrscan.utils.correlate      WARNING 179 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:36,826 eqcorrscan.utils.correlate      WARNING 179 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:36,826 eqcorrscan.utils.correlate      WARNING 179 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:36,826 eqcorrscan.utils.correlate      WARNING 179 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:36,827 eqcorrscan.utils.correlate      WARNING 179 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:36,828 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0809s
2019-07-19 07:00:36,829 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0011s
2019-07-19 07:00:36,831 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:00:36,955 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:00:36,958 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 27 detections
2019-07-19 07:00:36,958 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.65s
2019-07-19 07:00:36,959 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.35s until next run
2019-07-19 07:00:56,332 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:00:56,518 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:00:56,519 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:00:56,519 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:00:56,519 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:00:56,519 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:00:56,623 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:50:40.848400Z and 2019-07-18T18:55:40.828400Z
2019-07-19 07:00:56,655 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:00:56,742 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0828s
2019-07-19 07:00:56,745 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0022s
2019-07-19 07:00:56,750 eqcorrscan.core.match_filter.matched_filter     INFO    Made 6 detections from 12 templates
2019-07-19 07:00:56,751 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:55:26.048400Z and 2019-07-18T19:00:26.028400Z
2019-07-19 07:00:56,779 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:00:56,875 eqcorrscan.utils.correlate      WARNING 129 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:56,876 eqcorrscan.utils.correlate      WARNING 129 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:56,878 eqcorrscan.utils.correlate      WARNING 129 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:56,878 eqcorrscan.utils.correlate      WARNING 129 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:56,879 eqcorrscan.utils.correlate      WARNING 129 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:56,879 eqcorrscan.utils.correlate      WARNING 129 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:56,879 eqcorrscan.utils.correlate      WARNING 129 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:56,880 eqcorrscan.utils.correlate      WARNING 129 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:00:56,881 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0988s
2019-07-19 07:00:56,884 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0018s
2019-07-19 07:00:56,887 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:00:56,988 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:00:56,991 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 29 detections
2019-07-19 07:00:56,991 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.66s
2019-07-19 07:00:56,992 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.34s until next run
2019-07-19 07:01:16,352 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:01:16,531 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:01:16,531 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:01:16,532 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:01:16,532 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:01:16,532 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:01:16,636 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:50:53.768400Z and 2019-07-18T18:55:53.748400Z
2019-07-19 07:01:16,670 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:01:16,777 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1011s
2019-07-19 07:01:16,779 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0013s
2019-07-19 07:01:16,782 eqcorrscan.core.match_filter.matched_filter     INFO    Made 5 detections from 12 templates
2019-07-19 07:01:16,784 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:55:38.968400Z and 2019-07-18T19:00:38.948400Z
2019-07-19 07:01:16,821 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:01:16,912 eqcorrscan.utils.correlate      WARNING 527 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:16,913 eqcorrscan.utils.correlate      WARNING 527 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:16,914 eqcorrscan.utils.correlate      WARNING 527 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:16,914 eqcorrscan.utils.correlate      WARNING 527 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:16,914 eqcorrscan.utils.correlate      WARNING 527 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:16,915 eqcorrscan.utils.correlate      WARNING 527 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:16,915 eqcorrscan.utils.correlate      WARNING 527 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:16,915 eqcorrscan.utils.correlate      WARNING 527 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:16,916 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0910s
2019-07-19 07:01:16,918 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0009s
2019-07-19 07:01:16,920 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:01:17,023 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:01:17,025 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 30 detections
2019-07-19 07:01:17,026 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.68s
2019-07-19 07:01:17,026 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.32s until next run
2019-07-19 07:01:36,372 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:01:36,552 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:01:36,554 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:01:36,555 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:01:36,554 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:01:36,555 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:01:36,658 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:51:13.508400Z and 2019-07-18T18:56:13.488400Z
2019-07-19 07:01:36,691 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:01:36,784 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0886s
2019-07-19 07:01:36,787 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0024s
2019-07-19 07:01:36,790 eqcorrscan.core.match_filter.matched_filter     INFO    Made 4 detections from 12 templates
2019-07-19 07:01:36,791 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:55:58.708400Z and 2019-07-18T19:00:58.688400Z
2019-07-19 07:01:36,819 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:01:36,903 eqcorrscan.utils.correlate      WARNING 47 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:36,903 eqcorrscan.utils.correlate      WARNING 47 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:36,904 eqcorrscan.utils.correlate      WARNING 47 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:36,904 eqcorrscan.utils.correlate      WARNING 47 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:36,904 eqcorrscan.utils.correlate      WARNING 47 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:36,905 eqcorrscan.utils.correlate      WARNING 47 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:36,905 eqcorrscan.utils.correlate      WARNING 47 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:36,905 eqcorrscan.utils.correlate      WARNING 47 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:36,907 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0833s
2019-07-19 07:01:36,908 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0009s
2019-07-19 07:01:36,911 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:01:37,029 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:01:37,032 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 30 detections
2019-07-19 07:01:37,032 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.66s
2019-07-19 07:01:37,033 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.34s until next run
2019-07-19 07:01:56,393 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:01:56,579 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:01:56,579 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:01:56,579 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:01:56,580 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:01:56,580 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:01:56,687 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:51:34.498400Z and 2019-07-18T18:56:34.478400Z
2019-07-19 07:01:56,717 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:01:56,829 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1067s
2019-07-19 07:01:56,831 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0013s
2019-07-19 07:01:56,833 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:01:56,834 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:56:19.698400Z and 2019-07-18T19:01:19.678400Z
2019-07-19 07:01:56,862 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:01:56,944 eqcorrscan.utils.correlate      WARNING 256 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:56,945 eqcorrscan.utils.correlate      WARNING 256 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:56,945 eqcorrscan.utils.correlate      WARNING 256 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:56,946 eqcorrscan.utils.correlate      WARNING 256 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:56,946 eqcorrscan.utils.correlate      WARNING 256 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:56,946 eqcorrscan.utils.correlate      WARNING 256 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:56,947 eqcorrscan.utils.correlate      WARNING 256 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:56,947 eqcorrscan.utils.correlate      WARNING 256 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:01:56,948 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0821s
2019-07-19 07:01:56,949 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0011s
2019-07-19 07:01:56,951 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:01:57,072 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:01:57,074 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 31 detections
2019-07-19 07:01:57,075 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.69s
2019-07-19 07:01:57,075 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.31s until next run
2019-07-19 07:02:16,413 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:02:16,599 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:02:16,599 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:02:16,599 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:02:16,600 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:02:16,599 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:02:16,702 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:51:53.028400Z and 2019-07-18T18:56:53.008400Z
2019-07-19 07:02:16,741 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:02:16,848 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1033s
2019-07-19 07:02:16,850 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0014s
2019-07-19 07:02:16,853 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:02:16,855 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:56:38.228400Z and 2019-07-18T19:01:38.208400Z
2019-07-19 07:02:16,885 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:02:16,990 eqcorrscan.utils.correlate      WARNING 197 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:16,991 eqcorrscan.utils.correlate      WARNING 197 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:16,992 eqcorrscan.utils.correlate      WARNING 197 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:16,992 eqcorrscan.utils.correlate      WARNING 197 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:16,993 eqcorrscan.utils.correlate      WARNING 197 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:16,993 eqcorrscan.utils.correlate      WARNING 197 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:16,994 eqcorrscan.utils.correlate      WARNING 197 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:16,994 eqcorrscan.utils.correlate      WARNING 197 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:16,995 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1061s
2019-07-19 07:02:16,997 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0014s
2019-07-19 07:02:17,000 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:02:17,105 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:02:17,107 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 31 detections
2019-07-19 07:02:17,107 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.70s
2019-07-19 07:02:17,108 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.30s until next run
2019-07-19 07:02:36,433 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:02:36,617 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:02:36,617 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:02:36,619 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:02:36,618 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:02:36,618 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:02:36,721 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:52:09.528400Z and 2019-07-18T18:57:09.508400Z
2019-07-19 07:02:36,758 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:02:36,850 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0865s
2019-07-19 07:02:36,852 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:02:36,855 eqcorrscan.core.match_filter.matched_filter     INFO    Made 1 detections from 12 templates
2019-07-19 07:02:36,857 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:56:54.728400Z and 2019-07-18T19:01:54.708400Z
2019-07-19 07:02:36,884 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:02:36,984 eqcorrscan.utils.correlate      WARNING 347 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:36,985 eqcorrscan.utils.correlate      WARNING 347 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:36,985 eqcorrscan.utils.correlate      WARNING 347 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:36,985 eqcorrscan.utils.correlate      WARNING 347 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:36,986 eqcorrscan.utils.correlate      WARNING 347 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:36,986 eqcorrscan.utils.correlate      WARNING 347 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:36,986 eqcorrscan.utils.correlate      WARNING 347 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:36,987 eqcorrscan.utils.correlate      WARNING 347 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:36,987 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0993s
2019-07-19 07:02:36,990 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0023s
2019-07-19 07:02:37,003 eqcorrscan.core.match_filter.matched_filter     INFO    Made 3 detections from 12 templates
2019-07-19 07:02:37,107 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:02:37,109 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 32 detections
2019-07-19 07:02:37,110 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.68s
2019-07-19 07:02:37,110 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.32s until next run
2019-07-19 07:02:56,452 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:02:56,628 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:02:56,630 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:02:56,630 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:02:56,631 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:02:56,631 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:02:56,733 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:52:27.858400Z and 2019-07-18T18:57:27.838400Z
2019-07-19 07:02:56,762 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:02:56,825 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0594s
2019-07-19 07:02:56,826 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0005s
2019-07-19 07:02:56,827 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 07:02:56,829 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:57:13.058400Z and 2019-07-18T19:02:13.038400Z
2019-07-19 07:02:56,859 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:02:56,912 eqcorrscan.utils.correlate      WARNING 222 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:56,913 eqcorrscan.utils.correlate      WARNING 222 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:56,913 eqcorrscan.utils.correlate      WARNING 222 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:56,914 eqcorrscan.utils.correlate      WARNING 222 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:56,914 eqcorrscan.utils.correlate      WARNING 222 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:56,914 eqcorrscan.utils.correlate      WARNING 222 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:56,914 eqcorrscan.utils.correlate      WARNING 222 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:56,915 eqcorrscan.utils.correlate      WARNING 222 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:02:56,916 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0530s
2019-07-19 07:02:56,917 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:02:56,920 eqcorrscan.core.match_filter.matched_filter     INFO    Made 3 detections from 12 templates
2019-07-19 07:02:57,017 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:02:57,019 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 33 detections
2019-07-19 07:02:57,020 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.57s
2019-07-19 07:02:57,021 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.43s until next run
2019-07-19 07:03:16,472 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:03:16,651 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:03:16,651 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:03:16,651 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:03:16,651 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:03:16,653 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:03:16,756 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:52:44.568400Z and 2019-07-18T18:57:44.548400Z
2019-07-19 07:03:16,787 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:03:16,860 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0688s
2019-07-19 07:03:16,861 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0005s
2019-07-19 07:03:16,862 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 07:03:16,863 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:57:29.768400Z and 2019-07-18T19:02:29.748400Z
2019-07-19 07:03:16,895 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:03:16,977 eqcorrscan.utils.correlate      WARNING 304 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:03:16,978 eqcorrscan.utils.correlate      WARNING 304 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:03:16,978 eqcorrscan.utils.correlate      WARNING 304 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:03:16,978 eqcorrscan.utils.correlate      WARNING 304 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:03:16,979 eqcorrscan.utils.correlate      WARNING 304 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:03:16,979 eqcorrscan.utils.correlate      WARNING 304 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:03:16,980 eqcorrscan.utils.correlate      WARNING 304 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:03:16,980 eqcorrscan.utils.correlate      WARNING 304 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:03:16,981 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0822s
2019-07-19 07:03:16,983 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0013s
2019-07-19 07:03:16,987 eqcorrscan.core.match_filter.matched_filter     INFO    Made 3 detections from 12 templates
2019-07-19 07:03:17,100 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:03:17,103 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 33 detections
2019-07-19 07:03:17,104 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.63s
2019-07-19 07:03:17,104 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.37s until next run
2019-07-19 07:03:36,492 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:03:36,641 eqcorrscan.core.match_filter.matched_filter     WARNING Last bit of data between 2019-07-18T18:58:19.598400Z and 2019-07-18T19:02:39.648400Z will go unused because it is shorter than a chunk of 300.0 s
2019-07-19 07:03:36,642 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:53:19.598400Z and 2019-07-18T18:58:19.578400Z
2019-07-19 07:03:36,677 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:03:36,765 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0834s
2019-07-19 07:03:36,766 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0003s
2019-07-19 07:03:36,767 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 07:03:36,768 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 33 detections
2019-07-19 07:03:36,769 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.28s
2019-07-19 07:03:36,769 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.72s until next run
2019-07-19 07:03:56,512 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:03:56,659 eqcorrscan.core.match_filter.matched_filter     WARNING Last bit of data between 2019-07-18T18:58:19.598400Z and 2019-07-18T19:02:39.648400Z will go unused because it is shorter than a chunk of 300.0 s
2019-07-19 07:03:56,660 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:53:19.598400Z and 2019-07-18T18:58:19.578400Z
2019-07-19 07:03:56,692 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:03:56,768 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0713s
2019-07-19 07:03:56,769 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0004s
2019-07-19 07:03:56,770 eqcorrscan.core.match_filter.matched_filter     INFO    Made 0 detections from 12 templates
2019-07-19 07:03:56,771 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 33 detections
2019-07-19 07:03:56,772 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.26s
2019-07-19 07:03:56,772 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.74s until next run
2019-07-19 07:04:16,519 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:04:16,708 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:04:16,708 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:04:16,710 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:04:16,709 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:04:16,711 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:04:16,814 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:53:56.688400Z and 2019-07-18T18:58:56.668400Z
2019-07-19 07:04:16,848 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:04:16,948 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0962s
2019-07-19 07:04:16,950 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:04:16,952 eqcorrscan.core.match_filter.matched_filter     INFO    Made 1 detections from 12 templates
2019-07-19 07:04:16,953 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:58:41.888400Z and 2019-07-18T19:03:41.868400Z
2019-07-19 07:04:16,984 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:04:17,064 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:17,065 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:17,065 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:17,066 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:17,066 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:17,066 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:17,067 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:17,067 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:17,068 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0807s
2019-07-19 07:04:17,070 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0010s
2019-07-19 07:04:17,072 eqcorrscan.core.match_filter.matched_filter     INFO    Made 4 detections from 12 templates
2019-07-19 07:04:17,177 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:04:17,179 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 34 detections
2019-07-19 07:04:17,180 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.67s
2019-07-19 07:04:17,180 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.33s until next run
2019-07-19 07:04:36,525 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:04:36,707 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:04:36,707 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:04:36,707 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:04:36,708 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:04:36,708 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:04:36,811 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:53:56.688400Z and 2019-07-18T18:58:56.668400Z
2019-07-19 07:04:36,846 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:04:36,942 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0918s
2019-07-19 07:04:36,944 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0011s
2019-07-19 07:04:36,947 eqcorrscan.core.match_filter.matched_filter     INFO    Made 1 detections from 12 templates
2019-07-19 07:04:36,948 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:58:41.888400Z and 2019-07-18T19:03:41.868400Z
2019-07-19 07:04:36,980 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:04:37,065 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:37,066 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:37,066 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:37,067 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:37,067 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:37,067 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:37,068 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:37,069 eqcorrscan.utils.correlate      WARNING 458 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:37,069 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0856s
2019-07-19 07:04:37,071 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:04:37,075 eqcorrscan.core.match_filter.matched_filter     INFO    Made 4 detections from 12 templates
2019-07-19 07:04:37,185 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:04:37,187 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 34 detections
2019-07-19 07:04:37,188 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.67s
2019-07-19 07:04:37,188 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.33s until next run
2019-07-19 07:04:56,545 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:04:56,737 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:04:56,738 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:04:56,737 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:04:56,739 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:04:56,739 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:04:56,841 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:54:40.958400Z and 2019-07-18T18:59:40.938400Z
2019-07-19 07:04:56,878 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:04:56,965 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0829s
2019-07-19 07:04:56,966 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0010s
2019-07-19 07:04:56,968 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:04:56,970 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:59:26.158400Z and 2019-07-18T19:04:26.138400Z
2019-07-19 07:04:57,000 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:04:57,070 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:57,071 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:57,071 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:57,072 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:57,072 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:57,073 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:57,073 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:57,073 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:04:57,074 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0708s
2019-07-19 07:04:57,076 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0011s
2019-07-19 07:04:57,079 eqcorrscan.core.match_filter.matched_filter     INFO    Made 5 detections from 12 templates
2019-07-19 07:04:57,176 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:04:57,178 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 37 detections
2019-07-19 07:04:57,179 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.64s
2019-07-19 07:04:57,179 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.36s until next run
2019-07-19 07:05:16,565 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:05:16,751 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:05:16,752 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:05:16,753 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:05:16,754 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:05:16,752 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:05:16,859 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:54:40.958400Z and 2019-07-18T18:59:40.938400Z
2019-07-19 07:05:16,887 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:05:16,970 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0785s
2019-07-19 07:05:16,972 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:05:16,974 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:05:16,975 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:59:26.158400Z and 2019-07-18T19:04:26.138400Z
2019-07-19 07:05:17,004 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:05:17,075 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:17,076 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:17,076 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:17,076 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:17,077 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:17,077 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:17,078 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:17,078 eqcorrscan.utils.correlate      WARNING 263 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:17,079 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0705s
2019-07-19 07:05:17,081 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0013s
2019-07-19 07:05:17,085 eqcorrscan.core.match_filter.matched_filter     INFO    Made 5 detections from 12 templates
2019-07-19 07:05:17,192 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:05:17,195 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 37 detections
2019-07-19 07:05:17,195 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.63s
2019-07-19 07:05:17,196 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.37s until next run
2019-07-19 07:05:36,586 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:05:36,741 eqcorrscan.core.match_filter.matched_filter     WARNING Last bit of data between 2019-07-18T19:00:25.578400Z and 2019-07-18T19:04:19.448400Z will go unused because it is shorter than a chunk of 300.0 s
2019-07-19 07:05:36,743 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:55:25.578400Z and 2019-07-18T19:00:25.558400Z
2019-07-19 07:05:36,783 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:05:36,915 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1270s
2019-07-19 07:05:36,917 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0011s
2019-07-19 07:05:36,919 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:05:36,935 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:05:36,938 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 37 detections
2019-07-19 07:05:36,939 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.36s
2019-07-19 07:05:36,939 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.64s until next run
2019-07-19 07:05:56,604 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:05:56,781 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:05:56,782 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:05:56,782 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:05:56,783 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:05:56,783 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:05:56,889 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:55:35.648400Z and 2019-07-18T19:00:35.628400Z
2019-07-19 07:05:56,921 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:05:56,997 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0721s
2019-07-19 07:05:57,000 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0019s
2019-07-19 07:05:57,002 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:05:57,003 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T19:00:20.848400Z and 2019-07-18T19:05:20.828400Z
2019-07-19 07:05:57,033 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:05:57,089 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:57,090 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:57,090 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:57,091 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:57,091 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:57,093 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:57,094 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:57,094 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:05:57,095 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0586s
2019-07-19 07:05:57,097 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:05:57,101 eqcorrscan.core.match_filter.matched_filter     INFO    Made 4 detections from 12 templates
2019-07-19 07:05:57,198 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:05:57,201 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 38 detections
2019-07-19 07:05:57,201 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.60s
2019-07-19 07:05:57,202 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.40s until next run
2019-07-19 07:06:16,625 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:06:16,820 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:06:16,821 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:06:16,821 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:06:16,821 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:06:16,823 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:06:16,924 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:55:35.648400Z and 2019-07-18T19:00:35.628400Z
2019-07-19 07:06:16,953 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:06:17,033 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0755s
2019-07-19 07:06:17,035 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0013s
2019-07-19 07:06:17,038 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:06:17,039 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T19:00:20.848400Z and 2019-07-18T19:05:20.828400Z
2019-07-19 07:06:17,068 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:06:17,139 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:17,140 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:17,140 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:17,141 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:17,141 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:17,141 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:17,142 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:17,142 eqcorrscan.utils.correlate      WARNING 123 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:17,143 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0713s
2019-07-19 07:06:17,144 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0011s
2019-07-19 07:06:17,148 eqcorrscan.core.match_filter.matched_filter     INFO    Made 4 detections from 12 templates
2019-07-19 07:06:17,248 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:06:17,251 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 38 detections
2019-07-19 07:06:17,252 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.63s
2019-07-19 07:06:17,252 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.37s until next run
2019-07-19 07:06:36,645 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:06:36,836 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:06:36,837 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:06:36,838 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:06:36,838 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:06:36,838 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:06:36,942 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:56:10.708400Z and 2019-07-18T19:01:10.688400Z
2019-07-19 07:06:36,980 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:06:37,129 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.1433s
2019-07-19 07:06:37,130 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0009s
2019-07-19 07:06:37,132 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:06:37,133 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T19:00:55.908400Z and 2019-07-18T19:05:55.888400Z
2019-07-19 07:06:37,160 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:06:37,259 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:37,259 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:37,260 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:37,260 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:37,260 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:37,261 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:37,261 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:37,262 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:37,263 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0975s
2019-07-19 07:06:37,265 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0009s
2019-07-19 07:06:37,269 eqcorrscan.core.match_filter.matched_filter     INFO    Made 4 detections from 12 templates
2019-07-19 07:06:37,388 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:06:37,391 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 38 detections
2019-07-19 07:06:37,391 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.75s
2019-07-19 07:06:37,392 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.25s until next run
2019-07-19 07:06:56,664 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:06:56,848 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:06:56,849 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:06:56,849 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:06:56,849 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:06:56,850 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:06:56,953 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:56:10.708400Z and 2019-07-18T19:01:10.688400Z
2019-07-19 07:06:56,987 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:06:57,066 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0758s
2019-07-19 07:06:57,068 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:06:57,071 eqcorrscan.core.match_filter.matched_filter     INFO    Made 2 detections from 12 templates
2019-07-19 07:06:57,073 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T19:00:55.908400Z and 2019-07-18T19:05:55.888400Z
2019-07-19 07:06:57,105 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:06:57,165 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:57,165 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:57,166 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:57,166 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:57,166 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:57,166 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:57,167 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:57,167 eqcorrscan.utils.correlate      WARNING 153 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:06:57,168 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0593s
2019-07-19 07:06:57,169 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0009s
2019-07-19 07:06:57,172 eqcorrscan.core.match_filter.matched_filter     INFO    Made 4 detections from 12 templates
2019-07-19 07:06:57,275 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:06:57,278 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 38 detections
2019-07-19 07:06:57,279 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.62s
2019-07-19 07:06:57,279 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.38s until next run
2019-07-19 07:07:16,685 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:07:16,867 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:07:16,867 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:07:16,868 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:07:16,870 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:07:16,871 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:07:16,974 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:56:59.968400Z and 2019-07-18T19:01:59.948400Z
2019-07-19 07:07:17,006 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:07:17,088 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0784s
2019-07-19 07:07:17,090 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:07:17,093 eqcorrscan.core.match_filter.matched_filter     INFO    Made 3 detections from 12 templates
2019-07-19 07:07:17,095 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T19:01:45.168400Z and 2019-07-18T19:06:45.148400Z
2019-07-19 07:07:17,121 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:07:17,211 eqcorrscan.utils.correlate      WARNING 214 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:17,212 eqcorrscan.utils.correlate      WARNING 214 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:17,212 eqcorrscan.utils.correlate      WARNING 214 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:17,213 eqcorrscan.utils.correlate      WARNING 214 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:17,213 eqcorrscan.utils.correlate      WARNING 214 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:17,213 eqcorrscan.utils.correlate      WARNING 214 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:17,214 eqcorrscan.utils.correlate      WARNING 214 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:17,214 eqcorrscan.utils.correlate      WARNING 214 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:17,215 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0903s
2019-07-19 07:07:17,216 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0011s
2019-07-19 07:07:17,218 eqcorrscan.core.match_filter.matched_filter     INFO    Made 3 detections from 12 templates
2019-07-19 07:07:17,323 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:07:17,326 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 38 detections
2019-07-19 07:07:17,326 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.65s
2019-07-19 07:07:17,327 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.35s until next run
2019-07-19 07:07:36,705 rt_eqcorrscan.rt_match_filter   INFO    Starting detection run
2019-07-19 07:07:36,893 eqcorrscan.utils.pre_processing INFO    Data for AZ.PFO..HHZ are not long-enough, will zero pad
2019-07-19 07:07:36,893 eqcorrscan.utils.pre_processing INFO    Data for NN.BEN..EHZ are not long-enough, will zero pad
2019-07-19 07:07:36,894 eqcorrscan.utils.pre_processing INFO    Data for AZ.RDM..HHZ are not long-enough, will zero pad
2019-07-19 07:07:36,894 eqcorrscan.utils.pre_processing INFO    Data for NN.BHP..EHZ are not long-enough, will zero pad
2019-07-19 07:07:36,894 eqcorrscan.utils.pre_processing INFO    Data for AZ.LVA2..HHZ are not long-enough, will zero pad
2019-07-19 07:07:36,998 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T18:57:15.228400Z and 2019-07-18T19:02:15.208400Z
2019-07-19 07:07:37,028 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:07:37,119 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0872s
2019-07-19 07:07:37,120 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0012s
2019-07-19 07:07:37,123 eqcorrscan.core.match_filter.matched_filter     INFO    Made 3 detections from 12 templates
2019-07-19 07:07:37,125 eqcorrscan.core.match_filter.matched_filter     INFO    Computing detections between 2019-07-18T19:02:00.428400Z and 2019-07-18T19:07:00.408400Z
2019-07-19 07:07:37,154 eqcorrscan.core.match_filter.matched_filter     INFO    Starting the correlation run for these data
2019-07-19 07:07:37,230 eqcorrscan.utils.correlate      WARNING 533 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:37,232 eqcorrscan.utils.correlate      WARNING 533 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:37,232 eqcorrscan.utils.correlate      WARNING 533 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:37,233 eqcorrscan.utils.correlate      WARNING 533 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:37,233 eqcorrscan.utils.correlate      WARNING 533 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:37,233 eqcorrscan.utils.correlate      WARNING 533 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:37,233 eqcorrscan.utils.correlate      WARNING 533 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:37,234 eqcorrscan.utils.correlate      WARNING 533 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain
2019-07-19 07:07:37,235 eqcorrscan.core.match_filter.matched_filter     INFO    Looping over templates and streams took: 0.0762s
2019-07-19 07:07:37,236 eqcorrscan.core.match_filter.matched_filter     INFO    Finding peaks took 0.0009s
2019-07-19 07:07:37,238 eqcorrscan.core.match_filter.matched_filter     INFO    Made 3 detections from 12 templates
2019-07-19 07:07:37,336 rt_eqcorrscan.rt_match_filter   INFO    Removing duplicate detections
2019-07-19 07:07:37,339 rt_eqcorrscan.rt_match_filter   INFO    Party now contains 38 detections
2019-07-19 07:07:37,339 rt_eqcorrscan.rt_match_filter   INFO    Detection took 0.64s
2019-07-19 07:07:37,340 rt_eqcorrscan.rt_match_filter   INFO    Waiting 19.36s until next run
2019-07-19 07:07:56,721  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     INFO    network socket closed
2019-07-19 07:08:10,607  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     ERROR   socket read error: [Errno 9] Bad file descriptor, reconnecting in 30ss
2019-07-19 07:08:11,108  obspy.clients.seedlink [rtserve.iris.washington.edu:18000]     WARNING terminating collect loop
2019-07-19 07:08:11,110 rt_eqcorrscan.streaming.streaming       INFO    Termination of Seed-link client at rtserve.iris.washington.edu, status: Stopped, buffer capacity: 600.0s
        Current Buffer:
5 Trace(s) in Stream:
AZ.LVA2..HHZ | 2019-07-18T18:57:34.343100Z - 2019-07-18T19:07:34.343100Z | 100.0 Hz, 60001 samples
AZ.PFO..HHZ  | 2019-07-18T18:57:46.908400Z - 2019-07-18T19:07:46.908400Z | 100.0 Hz, 60001 samples
AZ.RDM..HHZ  | 2019-07-18T18:57:36.098400Z - 2019-07-18T19:07:36.098400Z | 100.0 Hz, 60001 samples
NN.BEN..EHZ  | 2019-07-18T18:57:18.740000Z - 2019-07-18T19:07:18.740000Z | 100.0 Hz, 60001 samples
NN.BHP..EHZ  | 2019-07-18T18:57:15.230000Z - 2019-07-18T19:07:15.230000Z | 100.0 Hz, 60001 samples
[5]:
Party of 1 Families.

This will store detections in a detections directory.