{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Real Time Tribe\n", "\n", "The `RealTimeTribe` class provides (near) real-time matched-filter methods. It subclasses EQcorrscan's `Tribe` class and therefore\n", "provides all the same methods, as well as real-time methods. We simply make a `RealTimeTribe` from a `Tribe` and some streaming client.\n", "RT-EQcorrscan provides a `_Streaming` abstract base class outlining the basic attributes and methods a streaming client needs to have for\n", "real-time matched-filtering. The `RealTimeClient` is a mix of obspy's `EasySeedLinkClient` and the `_Streaming` abc, providing\n", "access to seedlink services for real-time matched-filtering.\n", "\n", "In this example we will see what seismicity is going on associated with the Rigdecrest sequence in California." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from obspy import UTCDateTime\n", "from obspy.clients.fdsn import Client\n", "from eqcorrscan import Tribe\n", "from eqcorrscan.utils.catalog_utils import filter_picks\n", "from rt_eqcorrscan import RealTimeTribe\n", "from rt_eqcorrscan.streaming import RealTimeClient\n", "\n", "eq_client = Client(\"NCEDC\") # IRIS doesn't provide picks\n", "client = Client(\"IRIS\") # We want to use IRIS for waveform data\n", "rt_client = RealTimeClient(\n", " server_url=\"rtserve.iris.washington.edu\",\n", " buffer_capacity=1200.) # NCEDC doesn't provide a public seedlink\n", "\n", "template_catalog = eq_client.get_events(\n", " latitude=35.7, longitude=-117.4, maxradius=0.2, \n", " starttime=UTCDateTime(2019, 7, 1), endtime=UTCDateTime(2019, 7, 15), \n", " minmagnitude=4.5, includearrivals=True)\n", "_ = template_catalog.plot(projection=\"local\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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\n", "previously recorded earthquakes.\n", "\n", "For speed we will filter the catalog" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/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`.\n", " if not np.issubdtype(data.dtype, float):\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for LVA2.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for PFO.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for RDM.HHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BEN.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n", "Pick for BHP.EHZ has no phase hint given, you should not use this template for cross-correlation re-picking!\n" ] } ], "source": [ "unsupported_networks = {'BK', 'CI', 'NC', 'WR'} # IRIS doesn't provide everything.\n", "all_networks = {p.waveform_id.network_code for event in template_catalog for p in event.picks}\n", "filtered_catalog = filter_picks(\n", " template_catalog, top_n_picks=5, \n", " networks=list(all_networks.difference(unsupported_networks)),\n", " channels=[\"EHZ\", \"EHN\", \"EHE\", \"EH1\", \"EH2\", \"HHZ\", \"HHN\", \"HHE\", \"HH1\", \"HH2\"])\n", "tribe = Tribe().construct(\n", " method=\"from_client\", catalog=filtered_catalog, client_id=client,\n", " lowcut=2., highcut=15., samp_rate=50., filt_order=4, prepick=0.5, length=4.,\n", " swin=\"all\", process_len=300.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also need an inventory of stations that will be used." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "seed_ids = {tuple(pick.waveform_id.get_seed_string().split('.'))\n", " for event in filtered_catalog for pick in event.picks}\n", "bulk = [\n", " (sid[0], sid[1], sid[2], sid[3], UTCDateTime(2019, 7, 1), \n", " UTCDateTime(2019, 7, 10)) for sid in seed_ids]\n", "inventory = client.get_stations_bulk(bulk, level=\"channel\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "rt_tribe = RealTimeTribe(\n", " tribe=tribe, inventory=inventory, rt_client=rt_client,\n", " detect_interval=20, plot=False, plot_options=dict(plot_length=600.))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can run the (near) real-time detection!" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2019-07-19 06:47:50,869\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tINFO\tsending: requesting INFO level CAPABILITIES\n", "2019-07-19 06:47:51,048\trt_eqcorrscan.streaming.streaming\tINFO\tStarted streaming\n", "2019-07-19 06:47:51,049\trt_eqcorrscan.rt_match_filter\tINFO\tStarted real-time streaming\n", "2019-07-19 06:47:51,050\trt_eqcorrscan.rt_match_filter\tINFO\tDetection will use the following data: {'AZ.RDM..HHZ', 'NN.BEN..EHZ', 'AZ.PFO..HHZ', 'NN.BHP..EHZ', 'AZ.LVA2..HHZ'}\n", "2019-07-19 06:47:51,050\trt_eqcorrscan.rt_match_filter\tINFO\tSleeping for 605.00s while accumulating data\n", "2019-07-19 06:47:51,409\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tINFO\trequesting next available data\n", "2019-07-19 06:47:51,947\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tINFO\trequesting next available data\n", "2019-07-19 06:47:52,488\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tINFO\trequesting next available data\n", "2019-07-19 06:47:53,027\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tINFO\trequesting next available data\n", "2019-07-19 06:47:53,567\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tINFO\trequesting next available data\n", "2019-07-19 06:47:53,747\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tINFO\t5 station(s) accepted\n", "2019-07-19 06:57:56,152\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 06:57:56,329\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:57:56,329\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:57:56,330\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:57:56,330\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:57:56,331\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:57:56,433\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:47:38.838400Z and 2019-07-18T18:52:38.818400Z\n", "2019-07-19 06:57:56,464\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:57:56,573\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1051s\n", "2019-07-19 06:57:56,575\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0018s\n", "2019-07-19 06:57:56,583\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 14 detections from 12 templates\n", "2019-07-19 06:57:56,585\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:52:24.038400Z and 2019-07-18T18:57:24.018400Z\n", "2019-07-19 06:57:56,611\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:57:56,676\teqcorrscan.utils.correlate\tWARNING\t534 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:57:56,676\teqcorrscan.utils.correlate\tWARNING\t534 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:57:56,677\teqcorrscan.utils.correlate\tWARNING\t534 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:57:56,677\teqcorrscan.utils.correlate\tWARNING\t534 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:57:56,677\teqcorrscan.utils.correlate\tWARNING\t534 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:57:56,678\teqcorrscan.utils.correlate\tWARNING\t534 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:57:56,678\teqcorrscan.utils.correlate\tWARNING\t534 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:57:56,678\teqcorrscan.utils.correlate\tWARNING\t534 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:57:56,680\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0649s\n", "2019-07-19 06:57:56,682\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0014s\n", "2019-07-19 06:57:56,683\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 1 detections from 12 templates\n", "2019-07-19 06:57:56,785\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 06:57:56,788\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 14 detections\n", "2019-07-19 06:57:56,789\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.64s\n", "2019-07-19 06:57:56,789\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.36s until next run\n", "2019-07-19 06:58:16,172\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 06:58:16,351\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:16,351\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:16,351\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:16,352\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:16,352\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:16,455\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:48:04.328400Z and 2019-07-18T18:53:04.308400Z\n", "2019-07-19 06:58:16,484\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:58:16,556\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0653s\n", "2019-07-19 06:58:16,559\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0017s\n", "2019-07-19 06:58:16,567\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 12 detections from 12 templates\n", "2019-07-19 06:58:16,568\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:52:49.528400Z and 2019-07-18T18:57:49.508400Z\n", "2019-07-19 06:58:16,602\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:58:16,683\teqcorrscan.utils.correlate\tWARNING\t360 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:16,684\teqcorrscan.utils.correlate\tWARNING\t360 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:16,684\teqcorrscan.utils.correlate\tWARNING\t360 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:16,684\teqcorrscan.utils.correlate\tWARNING\t360 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:16,685\teqcorrscan.utils.correlate\tWARNING\t360 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:16,685\teqcorrscan.utils.correlate\tWARNING\t360 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:16,685\teqcorrscan.utils.correlate\tWARNING\t360 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:16,686\teqcorrscan.utils.correlate\tWARNING\t360 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:16,687\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0808s\n", "2019-07-19 06:58:16,687\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0004s\n", "2019-07-19 06:58:16,688\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 06:58:16,796\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 06:58:16,798\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 20 detections\n", "2019-07-19 06:58:16,798\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.63s\n", "2019-07-19 06:58:16,798\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.37s until next run\n", "2019-07-19 06:58:36,192\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 06:58:36,372\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:36,372\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:36,373\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:36,374\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:36,374\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:36,478\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:48:19.638400Z and 2019-07-18T18:53:19.618400Z\n", "2019-07-19 06:58:36,514\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:58:36,573\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0551s\n", "2019-07-19 06:58:36,575\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 06:58:36,584\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 11 detections from 12 templates\n", "2019-07-19 06:58:36,586\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:53:04.838400Z and 2019-07-18T18:58:04.818400Z\n", "2019-07-19 06:58:36,625\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:58:36,688\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0572s\n", "2019-07-19 06:58:36,688\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0003s\n", "2019-07-19 06:58:36,689\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 06:58:36,798\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 06:58:36,801\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 21 detections\n", "2019-07-19 06:58:36,801\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.61s\n", "2019-07-19 06:58:36,802\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.39s until next run\n", "2019-07-19 06:58:56,212\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 06:58:56,385\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:56,386\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:56,386\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:56,386\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:56,386\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:58:56,489\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:48:37.918400Z and 2019-07-18T18:53:37.898400Z\n", "2019-07-19 06:58:56,523\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:58:56,584\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0563s\n", "2019-07-19 06:58:56,585\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0011s\n", "2019-07-19 06:58:56,591\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 11 detections from 12 templates\n", "2019-07-19 06:58:56,592\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:53:23.118400Z and 2019-07-18T18:58:23.098400Z\n", "2019-07-19 06:58:56,622\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:58:56,696\teqcorrscan.utils.correlate\tWARNING\t278 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:56,696\teqcorrscan.utils.correlate\tWARNING\t278 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:56,696\teqcorrscan.utils.correlate\tWARNING\t278 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:56,697\teqcorrscan.utils.correlate\tWARNING\t278 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:56,697\teqcorrscan.utils.correlate\tWARNING\t278 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:56,697\teqcorrscan.utils.correlate\tWARNING\t278 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:56,698\teqcorrscan.utils.correlate\tWARNING\t278 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:56,698\teqcorrscan.utils.correlate\tWARNING\t278 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:58:56,699\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0737s\n", "2019-07-19 06:58:56,700\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0003s\n", "2019-07-19 06:58:56,701\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 06:58:56,809\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 06:58:56,812\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 23 detections\n", "2019-07-19 06:58:56,812\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.60s\n", "2019-07-19 06:58:56,813\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.40s until next run\n", "2019-07-19 06:59:16,232\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 06:59:16,511\teqcorrscan.core.match_filter.matched_filter\tWARNING\tLast 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\n", "2019-07-19 06:59:16,512\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:48:49.118400Z and 2019-07-18T18:53:49.098400Z\n", "2019-07-19 06:59:16,539\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:59:16,620\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0770s\n", "2019-07-19 06:59:16,622\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0013s\n", "2019-07-19 06:59:16,627\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 10 detections from 12 templates\n", "2019-07-19 06:59:16,628\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:53:34.318400Z and 2019-07-18T18:58:34.298400Z\n", "2019-07-19 06:59:16,654\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:59:16,720\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0622s\n", "2019-07-19 06:59:16,721\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0004s\n", "2019-07-19 06:59:16,722\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 06:59:16,827\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 06:59:16,829\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 23 detections\n", "2019-07-19 06:59:16,830\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.60s\n", "2019-07-19 06:59:16,830\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.40s until next run\n", "2019-07-19 06:59:36,252\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 06:59:36,534\teqcorrscan.core.match_filter.matched_filter\tWARNING\tLast 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\n", "2019-07-19 06:59:36,535\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:48:49.118400Z and 2019-07-18T18:53:49.098400Z\n", "2019-07-19 06:59:36,569\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:59:36,643\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0702s\n", "2019-07-19 06:59:36,645\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0010s\n", "2019-07-19 06:59:36,653\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 10 detections from 12 templates\n", "2019-07-19 06:59:36,655\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:53:34.318400Z and 2019-07-18T18:58:34.298400Z\n", "2019-07-19 06:59:36,695\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:59:36,786\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0857s\n", "2019-07-19 06:59:36,787\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0004s\n", "2019-07-19 06:59:36,788\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 06:59:36,899\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 06:59:36,902\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 23 detections\n", "2019-07-19 06:59:36,902\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.65s\n", "2019-07-19 06:59:36,902\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.35s until next run\n", "2019-07-19 06:59:56,273\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 06:59:56,455\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:59:56,456\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:59:56,457\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:59:56,458\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 06:59:56,458\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 06:59:56,560\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:49:42.388400Z and 2019-07-18T18:54:42.368400Z\n", "2019-07-19 06:59:56,595\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:59:56,687\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0879s\n", "2019-07-19 06:59:56,689\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0014s\n", "2019-07-19 06:59:56,694\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 9 detections from 12 templates\n", "2019-07-19 06:59:56,696\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:54:27.588400Z and 2019-07-18T18:59:27.568400Z\n", "2019-07-19 06:59:56,730\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 06:59:56,831\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:59:56,831\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:59:56,832\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:59:56,832\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:59:56,833\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:59:56,833\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:59:56,833\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:59:56,834\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 06:59:56,835\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0997s\n", "2019-07-19 06:59:56,836\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0008s\n", "2019-07-19 06:59:56,837\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 1 detections from 12 templates\n", "2019-07-19 06:59:56,934\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 06:59:56,936\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 25 detections\n", "2019-07-19 06:59:56,937\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.67s\n", "2019-07-19 06:59:56,937\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.33s until next run\n", "2019-07-19 07:00:16,292\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:00:16,478\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:16,478\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:16,479\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:16,480\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:16,479\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:16,583\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:49:42.388400Z and 2019-07-18T18:54:42.368400Z\n", "2019-07-19 07:00:16,611\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:00:16,734\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1153s\n", "2019-07-19 07:00:16,736\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0010s\n", "2019-07-19 07:00:16,740\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 9 detections from 12 templates\n", "2019-07-19 07:00:16,741\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:54:27.588400Z and 2019-07-18T18:59:27.568400Z\n", "2019-07-19 07:00:16,782\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:00:16,913\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:16,914\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:16,914\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:16,915\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:16,915\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:16,916\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:16,917\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:16,917\teqcorrscan.utils.correlate\tWARNING\t463 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:16,918\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1256s\n", "2019-07-19 07:00:16,920\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0016s\n", "2019-07-19 07:00:16,922\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 1 detections from 12 templates\n", "2019-07-19 07:00:17,093\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:00:17,096\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 25 detections\n", "2019-07-19 07:00:17,097\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.81s\n", "2019-07-19 07:00:17,097\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.19s until next run\n", "2019-07-19 07:00:36,313\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:00:36,484\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:36,484\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:36,484\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:36,484\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:36,485\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:36,587\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:50:04.758400Z and 2019-07-18T18:55:04.738400Z\n", "2019-07-19 07:00:36,627\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:00:36,710\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0788s\n", "2019-07-19 07:00:36,712\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0010s\n", "2019-07-19 07:00:36,716\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 8 detections from 12 templates\n", "2019-07-19 07:00:36,717\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:54:49.958400Z and 2019-07-18T18:59:49.938400Z\n", "2019-07-19 07:00:36,743\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:00:36,824\teqcorrscan.utils.correlate\tWARNING\t179 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:36,825\teqcorrscan.utils.correlate\tWARNING\t179 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:36,825\teqcorrscan.utils.correlate\tWARNING\t179 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:36,825\teqcorrscan.utils.correlate\tWARNING\t179 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:36,826\teqcorrscan.utils.correlate\tWARNING\t179 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:36,826\teqcorrscan.utils.correlate\tWARNING\t179 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:36,826\teqcorrscan.utils.correlate\tWARNING\t179 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:36,827\teqcorrscan.utils.correlate\tWARNING\t179 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:36,828\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0809s\n", "2019-07-19 07:00:36,829\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0011s\n", "2019-07-19 07:00:36,831\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:00:36,955\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:00:36,958\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 27 detections\n", "2019-07-19 07:00:36,958\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.65s\n", "2019-07-19 07:00:36,959\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.35s until next run\n", "2019-07-19 07:00:56,332\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:00:56,518\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:56,519\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:56,519\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:56,519\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:56,519\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:00:56,623\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:50:40.848400Z and 2019-07-18T18:55:40.828400Z\n", "2019-07-19 07:00:56,655\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:00:56,742\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0828s\n", "2019-07-19 07:00:56,745\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0022s\n", "2019-07-19 07:00:56,750\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 6 detections from 12 templates\n", "2019-07-19 07:00:56,751\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:55:26.048400Z and 2019-07-18T19:00:26.028400Z\n", "2019-07-19 07:00:56,779\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:00:56,875\teqcorrscan.utils.correlate\tWARNING\t129 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:56,876\teqcorrscan.utils.correlate\tWARNING\t129 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:56,878\teqcorrscan.utils.correlate\tWARNING\t129 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:56,878\teqcorrscan.utils.correlate\tWARNING\t129 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:56,879\teqcorrscan.utils.correlate\tWARNING\t129 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:56,879\teqcorrscan.utils.correlate\tWARNING\t129 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:56,879\teqcorrscan.utils.correlate\tWARNING\t129 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:56,880\teqcorrscan.utils.correlate\tWARNING\t129 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:00:56,881\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0988s\n", "2019-07-19 07:00:56,884\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0018s\n", "2019-07-19 07:00:56,887\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:00:56,988\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:00:56,991\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 29 detections\n", "2019-07-19 07:00:56,991\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.66s\n", "2019-07-19 07:00:56,992\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.34s until next run\n", "2019-07-19 07:01:16,352\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:01:16,531\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:16,531\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:16,532\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:16,532\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:16,532\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:16,636\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:50:53.768400Z and 2019-07-18T18:55:53.748400Z\n", "2019-07-19 07:01:16,670\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:01:16,777\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1011s\n", "2019-07-19 07:01:16,779\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0013s\n", "2019-07-19 07:01:16,782\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 5 detections from 12 templates\n", "2019-07-19 07:01:16,784\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:55:38.968400Z and 2019-07-18T19:00:38.948400Z\n", "2019-07-19 07:01:16,821\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:01:16,912\teqcorrscan.utils.correlate\tWARNING\t527 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:16,913\teqcorrscan.utils.correlate\tWARNING\t527 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:16,914\teqcorrscan.utils.correlate\tWARNING\t527 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:16,914\teqcorrscan.utils.correlate\tWARNING\t527 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:16,914\teqcorrscan.utils.correlate\tWARNING\t527 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:16,915\teqcorrscan.utils.correlate\tWARNING\t527 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:16,915\teqcorrscan.utils.correlate\tWARNING\t527 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:16,915\teqcorrscan.utils.correlate\tWARNING\t527 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:16,916\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0910s\n", "2019-07-19 07:01:16,918\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0009s\n", "2019-07-19 07:01:16,920\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:01:17,023\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:01:17,025\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 30 detections\n", "2019-07-19 07:01:17,026\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.68s\n", "2019-07-19 07:01:17,026\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.32s until next run\n", "2019-07-19 07:01:36,372\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:01:36,552\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:36,554\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:36,555\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:36,554\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:36,555\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:36,658\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:51:13.508400Z and 2019-07-18T18:56:13.488400Z\n", "2019-07-19 07:01:36,691\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:01:36,784\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0886s\n", "2019-07-19 07:01:36,787\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0024s\n", "2019-07-19 07:01:36,790\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 4 detections from 12 templates\n", "2019-07-19 07:01:36,791\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:55:58.708400Z and 2019-07-18T19:00:58.688400Z\n", "2019-07-19 07:01:36,819\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:01:36,903\teqcorrscan.utils.correlate\tWARNING\t47 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:36,903\teqcorrscan.utils.correlate\tWARNING\t47 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:36,904\teqcorrscan.utils.correlate\tWARNING\t47 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:36,904\teqcorrscan.utils.correlate\tWARNING\t47 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:36,904\teqcorrscan.utils.correlate\tWARNING\t47 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:36,905\teqcorrscan.utils.correlate\tWARNING\t47 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:36,905\teqcorrscan.utils.correlate\tWARNING\t47 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:36,905\teqcorrscan.utils.correlate\tWARNING\t47 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:36,907\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0833s\n", "2019-07-19 07:01:36,908\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0009s\n", "2019-07-19 07:01:36,911\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:01:37,029\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:01:37,032\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 30 detections\n", "2019-07-19 07:01:37,032\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.66s\n", "2019-07-19 07:01:37,033\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.34s until next run\n", "2019-07-19 07:01:56,393\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:01:56,579\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:56,579\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:56,579\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:56,580\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:56,580\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:01:56,687\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:51:34.498400Z and 2019-07-18T18:56:34.478400Z\n", "2019-07-19 07:01:56,717\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:01:56,829\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1067s\n", "2019-07-19 07:01:56,831\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0013s\n", "2019-07-19 07:01:56,833\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:01:56,834\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:56:19.698400Z and 2019-07-18T19:01:19.678400Z\n", "2019-07-19 07:01:56,862\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:01:56,944\teqcorrscan.utils.correlate\tWARNING\t256 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:56,945\teqcorrscan.utils.correlate\tWARNING\t256 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:56,945\teqcorrscan.utils.correlate\tWARNING\t256 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:56,946\teqcorrscan.utils.correlate\tWARNING\t256 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:56,946\teqcorrscan.utils.correlate\tWARNING\t256 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:56,946\teqcorrscan.utils.correlate\tWARNING\t256 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:56,947\teqcorrscan.utils.correlate\tWARNING\t256 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:56,947\teqcorrscan.utils.correlate\tWARNING\t256 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:01:56,948\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0821s\n", "2019-07-19 07:01:56,949\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0011s\n", "2019-07-19 07:01:56,951\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:01:57,072\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:01:57,074\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 31 detections\n", "2019-07-19 07:01:57,075\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.69s\n", "2019-07-19 07:01:57,075\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.31s until next run\n", "2019-07-19 07:02:16,413\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:02:16,599\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:16,599\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:16,599\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:16,600\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:16,599\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:16,702\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:51:53.028400Z and 2019-07-18T18:56:53.008400Z\n", "2019-07-19 07:02:16,741\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:02:16,848\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1033s\n", "2019-07-19 07:02:16,850\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0014s\n", "2019-07-19 07:02:16,853\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:02:16,855\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:56:38.228400Z and 2019-07-18T19:01:38.208400Z\n", "2019-07-19 07:02:16,885\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:02:16,990\teqcorrscan.utils.correlate\tWARNING\t197 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:16,991\teqcorrscan.utils.correlate\tWARNING\t197 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:16,992\teqcorrscan.utils.correlate\tWARNING\t197 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:16,992\teqcorrscan.utils.correlate\tWARNING\t197 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:16,993\teqcorrscan.utils.correlate\tWARNING\t197 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:16,993\teqcorrscan.utils.correlate\tWARNING\t197 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:16,994\teqcorrscan.utils.correlate\tWARNING\t197 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:16,994\teqcorrscan.utils.correlate\tWARNING\t197 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:16,995\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1061s\n", "2019-07-19 07:02:16,997\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0014s\n", "2019-07-19 07:02:17,000\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:02:17,105\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:02:17,107\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 31 detections\n", "2019-07-19 07:02:17,107\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.70s\n", "2019-07-19 07:02:17,108\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.30s until next run\n", "2019-07-19 07:02:36,433\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:02:36,617\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:36,617\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:36,619\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:36,618\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:36,618\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:36,721\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:52:09.528400Z and 2019-07-18T18:57:09.508400Z\n", "2019-07-19 07:02:36,758\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:02:36,850\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0865s\n", "2019-07-19 07:02:36,852\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:02:36,855\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 1 detections from 12 templates\n", "2019-07-19 07:02:36,857\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:56:54.728400Z and 2019-07-18T19:01:54.708400Z\n", "2019-07-19 07:02:36,884\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:02:36,984\teqcorrscan.utils.correlate\tWARNING\t347 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:36,985\teqcorrscan.utils.correlate\tWARNING\t347 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:36,985\teqcorrscan.utils.correlate\tWARNING\t347 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:36,985\teqcorrscan.utils.correlate\tWARNING\t347 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:36,986\teqcorrscan.utils.correlate\tWARNING\t347 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:36,986\teqcorrscan.utils.correlate\tWARNING\t347 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:36,986\teqcorrscan.utils.correlate\tWARNING\t347 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:36,987\teqcorrscan.utils.correlate\tWARNING\t347 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:36,987\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0993s\n", "2019-07-19 07:02:36,990\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0023s\n", "2019-07-19 07:02:37,003\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 3 detections from 12 templates\n", "2019-07-19 07:02:37,107\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:02:37,109\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 32 detections\n", "2019-07-19 07:02:37,110\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.68s\n", "2019-07-19 07:02:37,110\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.32s until next run\n", "2019-07-19 07:02:56,452\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:02:56,628\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:56,630\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:56,630\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:56,631\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:56,631\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:02:56,733\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:52:27.858400Z and 2019-07-18T18:57:27.838400Z\n", "2019-07-19 07:02:56,762\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:02:56,825\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0594s\n", "2019-07-19 07:02:56,826\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0005s\n", "2019-07-19 07:02:56,827\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 07:02:56,829\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:57:13.058400Z and 2019-07-18T19:02:13.038400Z\n", "2019-07-19 07:02:56,859\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:02:56,912\teqcorrscan.utils.correlate\tWARNING\t222 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:56,913\teqcorrscan.utils.correlate\tWARNING\t222 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:56,913\teqcorrscan.utils.correlate\tWARNING\t222 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:56,914\teqcorrscan.utils.correlate\tWARNING\t222 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:56,914\teqcorrscan.utils.correlate\tWARNING\t222 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:56,914\teqcorrscan.utils.correlate\tWARNING\t222 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:56,914\teqcorrscan.utils.correlate\tWARNING\t222 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:56,915\teqcorrscan.utils.correlate\tWARNING\t222 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:02:56,916\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0530s\n", "2019-07-19 07:02:56,917\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:02:56,920\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 3 detections from 12 templates\n", "2019-07-19 07:02:57,017\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:02:57,019\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 33 detections\n", "2019-07-19 07:02:57,020\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.57s\n", "2019-07-19 07:02:57,021\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.43s until next run\n", "2019-07-19 07:03:16,472\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:03:16,651\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:03:16,651\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:03:16,651\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:03:16,651\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:03:16,653\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:03:16,756\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:52:44.568400Z and 2019-07-18T18:57:44.548400Z\n", "2019-07-19 07:03:16,787\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:03:16,860\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0688s\n", "2019-07-19 07:03:16,861\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0005s\n", "2019-07-19 07:03:16,862\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 07:03:16,863\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:57:29.768400Z and 2019-07-18T19:02:29.748400Z\n", "2019-07-19 07:03:16,895\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:03:16,977\teqcorrscan.utils.correlate\tWARNING\t304 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:03:16,978\teqcorrscan.utils.correlate\tWARNING\t304 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:03:16,978\teqcorrscan.utils.correlate\tWARNING\t304 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:03:16,978\teqcorrscan.utils.correlate\tWARNING\t304 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:03:16,979\teqcorrscan.utils.correlate\tWARNING\t304 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:03:16,979\teqcorrscan.utils.correlate\tWARNING\t304 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:03:16,980\teqcorrscan.utils.correlate\tWARNING\t304 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:03:16,980\teqcorrscan.utils.correlate\tWARNING\t304 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:03:16,981\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0822s\n", "2019-07-19 07:03:16,983\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0013s\n", "2019-07-19 07:03:16,987\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 3 detections from 12 templates\n", "2019-07-19 07:03:17,100\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:03:17,103\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 33 detections\n", "2019-07-19 07:03:17,104\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.63s\n", "2019-07-19 07:03:17,104\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.37s until next run\n", "2019-07-19 07:03:36,492\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:03:36,641\teqcorrscan.core.match_filter.matched_filter\tWARNING\tLast 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\n", "2019-07-19 07:03:36,642\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:53:19.598400Z and 2019-07-18T18:58:19.578400Z\n", "2019-07-19 07:03:36,677\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:03:36,765\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0834s\n", "2019-07-19 07:03:36,766\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0003s\n", "2019-07-19 07:03:36,767\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 07:03:36,768\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 33 detections\n", "2019-07-19 07:03:36,769\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.28s\n", "2019-07-19 07:03:36,769\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.72s until next run\n", "2019-07-19 07:03:56,512\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:03:56,659\teqcorrscan.core.match_filter.matched_filter\tWARNING\tLast 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\n", "2019-07-19 07:03:56,660\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:53:19.598400Z and 2019-07-18T18:58:19.578400Z\n", "2019-07-19 07:03:56,692\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:03:56,768\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0713s\n", "2019-07-19 07:03:56,769\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0004s\n", "2019-07-19 07:03:56,770\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 0 detections from 12 templates\n", "2019-07-19 07:03:56,771\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 33 detections\n", "2019-07-19 07:03:56,772\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.26s\n", "2019-07-19 07:03:56,772\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.74s until next run\n", "2019-07-19 07:04:16,519\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:04:16,708\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:16,708\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:16,710\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:16,709\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:16,711\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:16,814\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:53:56.688400Z and 2019-07-18T18:58:56.668400Z\n", "2019-07-19 07:04:16,848\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:04:16,948\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0962s\n", "2019-07-19 07:04:16,950\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:04:16,952\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 1 detections from 12 templates\n", "2019-07-19 07:04:16,953\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:58:41.888400Z and 2019-07-18T19:03:41.868400Z\n", "2019-07-19 07:04:16,984\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:04:17,064\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:17,065\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:17,065\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:17,066\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:17,066\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:17,066\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:17,067\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:17,067\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:17,068\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0807s\n", "2019-07-19 07:04:17,070\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0010s\n", "2019-07-19 07:04:17,072\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 4 detections from 12 templates\n", "2019-07-19 07:04:17,177\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:04:17,179\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 34 detections\n", "2019-07-19 07:04:17,180\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.67s\n", "2019-07-19 07:04:17,180\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.33s until next run\n", "2019-07-19 07:04:36,525\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:04:36,707\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:36,707\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:36,707\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:36,708\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:36,708\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:36,811\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:53:56.688400Z and 2019-07-18T18:58:56.668400Z\n", "2019-07-19 07:04:36,846\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:04:36,942\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0918s\n", "2019-07-19 07:04:36,944\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0011s\n", "2019-07-19 07:04:36,947\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 1 detections from 12 templates\n", "2019-07-19 07:04:36,948\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:58:41.888400Z and 2019-07-18T19:03:41.868400Z\n", "2019-07-19 07:04:36,980\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:04:37,065\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:37,066\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:37,066\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:37,067\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:37,067\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:37,067\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:37,068\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:37,069\teqcorrscan.utils.correlate\tWARNING\t458 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:37,069\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0856s\n", "2019-07-19 07:04:37,071\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:04:37,075\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 4 detections from 12 templates\n", "2019-07-19 07:04:37,185\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:04:37,187\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 34 detections\n", "2019-07-19 07:04:37,188\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.67s\n", "2019-07-19 07:04:37,188\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.33s until next run\n", "2019-07-19 07:04:56,545\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:04:56,737\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:56,738\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:56,737\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:56,739\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:56,739\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:04:56,841\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:54:40.958400Z and 2019-07-18T18:59:40.938400Z\n", "2019-07-19 07:04:56,878\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:04:56,965\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0829s\n", "2019-07-19 07:04:56,966\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0010s\n", "2019-07-19 07:04:56,968\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:04:56,970\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:59:26.158400Z and 2019-07-18T19:04:26.138400Z\n", "2019-07-19 07:04:57,000\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:04:57,070\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:57,071\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:57,071\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:57,072\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:57,072\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:57,073\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:57,073\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:57,073\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:04:57,074\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0708s\n", "2019-07-19 07:04:57,076\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0011s\n", "2019-07-19 07:04:57,079\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 5 detections from 12 templates\n", "2019-07-19 07:04:57,176\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:04:57,178\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 37 detections\n", "2019-07-19 07:04:57,179\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.64s\n", "2019-07-19 07:04:57,179\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.36s until next run\n", "2019-07-19 07:05:16,565\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:05:16,751\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:16,752\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:16,753\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:16,754\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:16,752\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:16,859\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:54:40.958400Z and 2019-07-18T18:59:40.938400Z\n", "2019-07-19 07:05:16,887\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:05:16,970\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0785s\n", "2019-07-19 07:05:16,972\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:05:16,974\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:05:16,975\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:59:26.158400Z and 2019-07-18T19:04:26.138400Z\n", "2019-07-19 07:05:17,004\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:05:17,075\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:17,076\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:17,076\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:17,076\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:17,077\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:17,077\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:17,078\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:17,078\teqcorrscan.utils.correlate\tWARNING\t263 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:17,079\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0705s\n", "2019-07-19 07:05:17,081\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0013s\n", "2019-07-19 07:05:17,085\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 5 detections from 12 templates\n", "2019-07-19 07:05:17,192\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:05:17,195\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 37 detections\n", "2019-07-19 07:05:17,195\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.63s\n", "2019-07-19 07:05:17,196\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.37s until next run\n", "2019-07-19 07:05:36,586\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:05:36,741\teqcorrscan.core.match_filter.matched_filter\tWARNING\tLast 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\n", "2019-07-19 07:05:36,743\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:55:25.578400Z and 2019-07-18T19:00:25.558400Z\n", "2019-07-19 07:05:36,783\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:05:36,915\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1270s\n", "2019-07-19 07:05:36,917\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0011s\n", "2019-07-19 07:05:36,919\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:05:36,935\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:05:36,938\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 37 detections\n", "2019-07-19 07:05:36,939\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.36s\n", "2019-07-19 07:05:36,939\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.64s until next run\n", "2019-07-19 07:05:56,604\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:05:56,781\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:56,782\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:56,782\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:56,783\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:56,783\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:05:56,889\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:55:35.648400Z and 2019-07-18T19:00:35.628400Z\n", "2019-07-19 07:05:56,921\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:05:56,997\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0721s\n", "2019-07-19 07:05:57,000\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0019s\n", "2019-07-19 07:05:57,002\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:05:57,003\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T19:00:20.848400Z and 2019-07-18T19:05:20.828400Z\n", "2019-07-19 07:05:57,033\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:05:57,089\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:57,090\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:57,090\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:57,091\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:57,091\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:57,093\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:57,094\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:57,094\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:05:57,095\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0586s\n", "2019-07-19 07:05:57,097\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:05:57,101\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 4 detections from 12 templates\n", "2019-07-19 07:05:57,198\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:05:57,201\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 38 detections\n", "2019-07-19 07:05:57,201\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.60s\n", "2019-07-19 07:05:57,202\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.40s until next run\n", "2019-07-19 07:06:16,625\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:06:16,820\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:16,821\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:16,821\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:16,821\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:16,823\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:16,924\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:55:35.648400Z and 2019-07-18T19:00:35.628400Z\n", "2019-07-19 07:06:16,953\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:06:17,033\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0755s\n", "2019-07-19 07:06:17,035\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0013s\n", "2019-07-19 07:06:17,038\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:06:17,039\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T19:00:20.848400Z and 2019-07-18T19:05:20.828400Z\n", "2019-07-19 07:06:17,068\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:06:17,139\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:17,140\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:17,140\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:17,141\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:17,141\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:17,141\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:17,142\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:17,142\teqcorrscan.utils.correlate\tWARNING\t123 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:17,143\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0713s\n", "2019-07-19 07:06:17,144\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0011s\n", "2019-07-19 07:06:17,148\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 4 detections from 12 templates\n", "2019-07-19 07:06:17,248\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:06:17,251\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 38 detections\n", "2019-07-19 07:06:17,252\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.63s\n", "2019-07-19 07:06:17,252\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.37s until next run\n", "2019-07-19 07:06:36,645\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:06:36,836\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:36,837\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:36,838\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:36,838\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:36,838\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:36,942\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:56:10.708400Z and 2019-07-18T19:01:10.688400Z\n", "2019-07-19 07:06:36,980\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:06:37,129\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.1433s\n", "2019-07-19 07:06:37,130\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0009s\n", "2019-07-19 07:06:37,132\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:06:37,133\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T19:00:55.908400Z and 2019-07-18T19:05:55.888400Z\n", "2019-07-19 07:06:37,160\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:06:37,259\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:37,259\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:37,260\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:37,260\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:37,260\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:37,261\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:37,261\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:37,262\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:37,263\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0975s\n", "2019-07-19 07:06:37,265\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0009s\n", "2019-07-19 07:06:37,269\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 4 detections from 12 templates\n", "2019-07-19 07:06:37,388\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:06:37,391\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 38 detections\n", "2019-07-19 07:06:37,391\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.75s\n", "2019-07-19 07:06:37,392\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.25s until next run\n", "2019-07-19 07:06:56,664\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:06:56,848\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:56,849\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:56,849\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:56,849\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:56,850\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:06:56,953\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:56:10.708400Z and 2019-07-18T19:01:10.688400Z\n", "2019-07-19 07:06:56,987\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:06:57,066\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0758s\n", "2019-07-19 07:06:57,068\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:06:57,071\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 2 detections from 12 templates\n", "2019-07-19 07:06:57,073\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T19:00:55.908400Z and 2019-07-18T19:05:55.888400Z\n", "2019-07-19 07:06:57,105\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:06:57,165\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:57,165\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:57,166\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:57,166\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:57,166\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:57,166\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:57,167\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:57,167\teqcorrscan.utils.correlate\tWARNING\t153 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:06:57,168\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0593s\n", "2019-07-19 07:06:57,169\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0009s\n", "2019-07-19 07:06:57,172\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 4 detections from 12 templates\n", "2019-07-19 07:06:57,275\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:06:57,278\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 38 detections\n", "2019-07-19 07:06:57,279\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.62s\n", "2019-07-19 07:06:57,279\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.38s until next run\n", "2019-07-19 07:07:16,685\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:07:16,867\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:16,867\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:16,868\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:16,870\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:16,871\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:16,974\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:56:59.968400Z and 2019-07-18T19:01:59.948400Z\n", "2019-07-19 07:07:17,006\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:07:17,088\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0784s\n", "2019-07-19 07:07:17,090\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:07:17,093\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 3 detections from 12 templates\n", "2019-07-19 07:07:17,095\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T19:01:45.168400Z and 2019-07-18T19:06:45.148400Z\n", "2019-07-19 07:07:17,121\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:07:17,211\teqcorrscan.utils.correlate\tWARNING\t214 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:17,212\teqcorrscan.utils.correlate\tWARNING\t214 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:17,212\teqcorrscan.utils.correlate\tWARNING\t214 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:17,213\teqcorrscan.utils.correlate\tWARNING\t214 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:17,213\teqcorrscan.utils.correlate\tWARNING\t214 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:17,213\teqcorrscan.utils.correlate\tWARNING\t214 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:17,214\teqcorrscan.utils.correlate\tWARNING\t214 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:17,214\teqcorrscan.utils.correlate\tWARNING\t214 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:17,215\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0903s\n", "2019-07-19 07:07:17,216\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0011s\n", "2019-07-19 07:07:17,218\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 3 detections from 12 templates\n", "2019-07-19 07:07:17,323\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:07:17,326\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 38 detections\n", "2019-07-19 07:07:17,326\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.65s\n", "2019-07-19 07:07:17,327\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.35s until next run\n", "2019-07-19 07:07:36,705\trt_eqcorrscan.rt_match_filter\tINFO\tStarting detection run\n", "2019-07-19 07:07:36,893\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.PFO..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:36,893\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BEN..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:36,894\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.RDM..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:36,894\teqcorrscan.utils.pre_processing\tINFO\tData for NN.BHP..EHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:36,894\teqcorrscan.utils.pre_processing\tINFO\tData for AZ.LVA2..HHZ are not long-enough, will zero pad\n", "2019-07-19 07:07:36,998\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T18:57:15.228400Z and 2019-07-18T19:02:15.208400Z\n", "2019-07-19 07:07:37,028\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:07:37,119\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0872s\n", "2019-07-19 07:07:37,120\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0012s\n", "2019-07-19 07:07:37,123\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 3 detections from 12 templates\n", "2019-07-19 07:07:37,125\teqcorrscan.core.match_filter.matched_filter\tINFO\tComputing detections between 2019-07-18T19:02:00.428400Z and 2019-07-18T19:07:00.408400Z\n", "2019-07-19 07:07:37,154\teqcorrscan.core.match_filter.matched_filter\tINFO\tStarting the correlation run for these data\n", "2019-07-19 07:07:37,230\teqcorrscan.utils.correlate\tWARNING\t533 correlations not computed on AZ.LVA2..HHZ_0, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:37,232\teqcorrscan.utils.correlate\tWARNING\t533 correlations not computed on AZ.LVA2..HHZ_1, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:37,232\teqcorrscan.utils.correlate\tWARNING\t533 correlations not computed on AZ.PFO..HHZ_2, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:37,233\teqcorrscan.utils.correlate\tWARNING\t533 correlations not computed on AZ.PFO..HHZ_3, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:37,233\teqcorrscan.utils.correlate\tWARNING\t533 correlations not computed on AZ.RDM..HHZ_4, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:37,233\teqcorrscan.utils.correlate\tWARNING\t533 correlations not computed on AZ.RDM..HHZ_5, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:37,233\teqcorrscan.utils.correlate\tWARNING\t533 correlations not computed on NN.BEN..EHZ_6, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:37,234\teqcorrscan.utils.correlate\tWARNING\t533 correlations not computed on NN.BHP..EHZ_7, are there gaps in the data? If not, consider increasing gain\n", "2019-07-19 07:07:37,235\teqcorrscan.core.match_filter.matched_filter\tINFO\tLooping over templates and streams took: 0.0762s\n", "2019-07-19 07:07:37,236\teqcorrscan.core.match_filter.matched_filter\tINFO\tFinding peaks took 0.0009s\n", "2019-07-19 07:07:37,238\teqcorrscan.core.match_filter.matched_filter\tINFO\tMade 3 detections from 12 templates\n", "2019-07-19 07:07:37,336\trt_eqcorrscan.rt_match_filter\tINFO\tRemoving duplicate detections\n", "2019-07-19 07:07:37,339\trt_eqcorrscan.rt_match_filter\tINFO\tParty now contains 38 detections\n", "2019-07-19 07:07:37,339\trt_eqcorrscan.rt_match_filter\tINFO\tDetection took 0.64s\n", "2019-07-19 07:07:37,340\trt_eqcorrscan.rt_match_filter\tINFO\tWaiting 19.36s until next run\n", "2019-07-19 07:07:56,721\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tINFO\tnetwork socket closed\n", "2019-07-19 07:08:10,607\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tERROR\tsocket read error: [Errno 9] Bad file descriptor, reconnecting in 30ss\n", "2019-07-19 07:08:11,108\t obspy.clients.seedlink [rtserve.iris.washington.edu:18000]\tWARNING\tterminating collect loop\n", "2019-07-19 07:08:11,110\trt_eqcorrscan.streaming.streaming\tINFO\tTermination of Seed-link client at rtserve.iris.washington.edu, status: Stopped, buffer capacity: 600.0s\n", "\tCurrent Buffer:\n", "5 Trace(s) in Stream:\n", "AZ.LVA2..HHZ | 2019-07-18T18:57:34.343100Z - 2019-07-18T19:07:34.343100Z | 100.0 Hz, 60001 samples\n", "AZ.PFO..HHZ | 2019-07-18T18:57:46.908400Z - 2019-07-18T19:07:46.908400Z | 100.0 Hz, 60001 samples\n", "AZ.RDM..HHZ | 2019-07-18T18:57:36.098400Z - 2019-07-18T19:07:36.098400Z | 100.0 Hz, 60001 samples\n", "NN.BEN..EHZ | 2019-07-18T18:57:18.740000Z - 2019-07-18T19:07:18.740000Z | 100.0 Hz, 60001 samples\n", "NN.BHP..EHZ | 2019-07-18T18:57:15.230000Z - 2019-07-18T19:07:15.230000Z | 100.0 Hz, 60001 samples\n" ] }, { "data": { "text/plain": [ "Party of 1 Families." ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import logging\n", "\n", "logging.basicConfig(\n", " level=\"INFO\", format=\"%(asctime)s\\t%(name)s\\t%(levelname)s\\t%(message)s\"\n", ")\n", "\n", "rt_tribe.run(\n", " threshold=0.25, threshold_type=\"av_chan_corr\", trig_int=10., \n", " max_run_length=1200) # Max_run_length will stop the process - leave unset to run forever." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This will store detections in a `detections` directory." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.3" } }, "nbformat": 4, "nbformat_minor": 2 }