├── README.md ├── eqcctone ├── LICENSE ├── Model │ ├── HANet_10w_random_1213_256_50.h5 │ └── test_trainer_016.h5 ├── ModelPS │ ├── test_trainer_021.h5 │ ├── test_trainer_024.h5 │ ├── test_trainer_EQCCT_P_retrain_yangcui.h5 │ └── test_trainer_EQCCT_S_retrain_yangcui.h5 ├── README.md ├── data │ ├── catalogs │ │ ├── EQCCTNLL_catalog_202208.dat │ │ ├── EQCCTNLL_catalog_202209.dat │ │ ├── EQCCTNLL_catalog_202210.dat │ │ ├── delaware10867_growclust-cat-cc0.65-ngood6.txt │ │ ├── delaware11140_growclust-cat-cc0.65-ngood6.txt │ │ ├── delaware11687_growclust-cat-cc0.65-ngood6.txt │ │ ├── delaware202208xml_growclust-cat-cc0.65-ngood6.txt │ │ ├── delaware202209xml_growclust-cat-cc0.65-ngood6.txt │ │ ├── delaware202210xml_growclust-cat-cc0.65-ngood6.txt │ │ ├── delaware_10867_events.csv │ │ ├── delaware_11140_events.csv │ │ ├── delaware_11687_events.csv │ │ ├── stationeffect │ │ │ ├── EQCCTNLL_catalog_202210sta12.dat │ │ │ ├── EQCCTNLL_catalog_202210sta21.dat │ │ │ └── EQCCTNLL_catalog_202210sta8.dat │ │ ├── texnet_events_20211201_20221201_growclust-cat-cc0.65-ngood6.txt │ │ ├── texnet_events_20220801_20220901_growclust-cat-cc0.65-ngood6.txt │ │ ├── texnet_events_20220901_20221001_growclust-cat-cc0.65-ngood6.txt │ │ ├── texnet_events_20221001_20221101_growclust-cat-cc0.65-ngood6.txt │ │ └── texnet_events_20221220.csv │ ├── qmls │ │ ├── texnet2020galz.qml │ │ └── texnet2022wmmd.qml │ ├── stations │ │ └── texnet_stations_2022_1019.csv │ ├── tests │ │ └── signalid_random_1.49w.npy │ ├── texas │ │ └── Culberson_XY.txt │ └── texnetreported │ │ └── texnet__20170101-20230315_on20230315.asc ├── demos │ ├── test_eqcct_benchmark_with_others.py │ ├── test_eqcct_eventdistribution.py │ ├── test_eqcct_locsatvsnll.py │ ├── test_eqcct_nll_gif.py │ ├── test_eqcct_nll_growclust.py │ ├── test_eqcct_relo_manualvsAI.py │ ├── test_eqcct_stationeffect.py │ └── test_eqcct_texnet2022yplg.py ├── eqcct │ ├── __init__.py │ ├── dependence_p.py │ ├── dependence_s.py │ ├── io.py │ ├── plot.py │ ├── stream.py │ ├── texnet.py │ └── utils.py ├── notebooks │ ├── Example_Japan_station_list.json │ ├── Test_Predict_MSEED_Japan.ipynb │ └── Test_Predict_MSEED_Japan_PS.ipynb └── setup.py └── eqcctpro ├── 230_stations_1_min_dt.zip ├── 230_stations_1min_20sec_overlap.zip ├── ModelPS ├── test_trainer_021.h5 └── test_trainer_024.h5 ├── OptimizedEQCCT_Paper.pdf ├── README.md ├── create_dataset.py ├── environment.yml ├── eqcctpro ├── __init__.py ├── eqcct_tf_models.py ├── functionality.py ├── parallelization.py └── tools.py └── run.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/README.md -------------------------------------------------------------------------------- /eqcctone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/LICENSE -------------------------------------------------------------------------------- /eqcctone/Model/HANet_10w_random_1213_256_50.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/Model/HANet_10w_random_1213_256_50.h5 -------------------------------------------------------------------------------- /eqcctone/Model/test_trainer_016.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/Model/test_trainer_016.h5 -------------------------------------------------------------------------------- /eqcctone/ModelPS/test_trainer_021.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/ModelPS/test_trainer_021.h5 -------------------------------------------------------------------------------- /eqcctone/ModelPS/test_trainer_024.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/ModelPS/test_trainer_024.h5 -------------------------------------------------------------------------------- /eqcctone/ModelPS/test_trainer_EQCCT_P_retrain_yangcui.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/ModelPS/test_trainer_EQCCT_P_retrain_yangcui.h5 -------------------------------------------------------------------------------- /eqcctone/ModelPS/test_trainer_EQCCT_S_retrain_yangcui.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/ModelPS/test_trainer_EQCCT_S_retrain_yangcui.h5 -------------------------------------------------------------------------------- /eqcctone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/README.md -------------------------------------------------------------------------------- /eqcctone/data/catalogs/EQCCTNLL_catalog_202208.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/EQCCTNLL_catalog_202208.dat -------------------------------------------------------------------------------- /eqcctone/data/catalogs/EQCCTNLL_catalog_202209.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/EQCCTNLL_catalog_202209.dat -------------------------------------------------------------------------------- /eqcctone/data/catalogs/EQCCTNLL_catalog_202210.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/EQCCTNLL_catalog_202210.dat -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware10867_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware10867_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware11140_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware11140_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware11687_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware11687_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware202208xml_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware202208xml_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware202209xml_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware202209xml_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware202210xml_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware202210xml_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware_10867_events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware_10867_events.csv -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware_11140_events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware_11140_events.csv -------------------------------------------------------------------------------- /eqcctone/data/catalogs/delaware_11687_events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/delaware_11687_events.csv -------------------------------------------------------------------------------- /eqcctone/data/catalogs/stationeffect/EQCCTNLL_catalog_202210sta12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/stationeffect/EQCCTNLL_catalog_202210sta12.dat -------------------------------------------------------------------------------- /eqcctone/data/catalogs/stationeffect/EQCCTNLL_catalog_202210sta21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/stationeffect/EQCCTNLL_catalog_202210sta21.dat -------------------------------------------------------------------------------- /eqcctone/data/catalogs/stationeffect/EQCCTNLL_catalog_202210sta8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/stationeffect/EQCCTNLL_catalog_202210sta8.dat -------------------------------------------------------------------------------- /eqcctone/data/catalogs/texnet_events_20211201_20221201_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/texnet_events_20211201_20221201_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/texnet_events_20220801_20220901_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/texnet_events_20220801_20220901_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/texnet_events_20220901_20221001_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/texnet_events_20220901_20221001_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/texnet_events_20221001_20221101_growclust-cat-cc0.65-ngood6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/texnet_events_20221001_20221101_growclust-cat-cc0.65-ngood6.txt -------------------------------------------------------------------------------- /eqcctone/data/catalogs/texnet_events_20221220.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/catalogs/texnet_events_20221220.csv -------------------------------------------------------------------------------- /eqcctone/data/qmls/texnet2020galz.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/qmls/texnet2020galz.qml -------------------------------------------------------------------------------- /eqcctone/data/qmls/texnet2022wmmd.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/qmls/texnet2022wmmd.qml -------------------------------------------------------------------------------- /eqcctone/data/stations/texnet_stations_2022_1019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/stations/texnet_stations_2022_1019.csv -------------------------------------------------------------------------------- /eqcctone/data/tests/signalid_random_1.49w.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/tests/signalid_random_1.49w.npy -------------------------------------------------------------------------------- /eqcctone/data/texas/Culberson_XY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/texas/Culberson_XY.txt -------------------------------------------------------------------------------- /eqcctone/data/texnetreported/texnet__20170101-20230315_on20230315.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/data/texnetreported/texnet__20170101-20230315_on20230315.asc -------------------------------------------------------------------------------- /eqcctone/demos/test_eqcct_benchmark_with_others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/demos/test_eqcct_benchmark_with_others.py -------------------------------------------------------------------------------- /eqcctone/demos/test_eqcct_eventdistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/demos/test_eqcct_eventdistribution.py -------------------------------------------------------------------------------- /eqcctone/demos/test_eqcct_locsatvsnll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/demos/test_eqcct_locsatvsnll.py -------------------------------------------------------------------------------- /eqcctone/demos/test_eqcct_nll_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/demos/test_eqcct_nll_gif.py -------------------------------------------------------------------------------- /eqcctone/demos/test_eqcct_nll_growclust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/demos/test_eqcct_nll_growclust.py -------------------------------------------------------------------------------- /eqcctone/demos/test_eqcct_relo_manualvsAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/demos/test_eqcct_relo_manualvsAI.py -------------------------------------------------------------------------------- /eqcctone/demos/test_eqcct_stationeffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/demos/test_eqcct_stationeffect.py -------------------------------------------------------------------------------- /eqcctone/demos/test_eqcct_texnet2022yplg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/demos/test_eqcct_texnet2022yplg.py -------------------------------------------------------------------------------- /eqcctone/eqcct/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/eqcct/__init__.py -------------------------------------------------------------------------------- /eqcctone/eqcct/dependence_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/eqcct/dependence_p.py -------------------------------------------------------------------------------- /eqcctone/eqcct/dependence_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/eqcct/dependence_s.py -------------------------------------------------------------------------------- /eqcctone/eqcct/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/eqcct/io.py -------------------------------------------------------------------------------- /eqcctone/eqcct/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/eqcct/plot.py -------------------------------------------------------------------------------- /eqcctone/eqcct/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/eqcct/stream.py -------------------------------------------------------------------------------- /eqcctone/eqcct/texnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/eqcct/texnet.py -------------------------------------------------------------------------------- /eqcctone/eqcct/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/eqcct/utils.py -------------------------------------------------------------------------------- /eqcctone/notebooks/Example_Japan_station_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/notebooks/Example_Japan_station_list.json -------------------------------------------------------------------------------- /eqcctone/notebooks/Test_Predict_MSEED_Japan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/notebooks/Test_Predict_MSEED_Japan.ipynb -------------------------------------------------------------------------------- /eqcctone/notebooks/Test_Predict_MSEED_Japan_PS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/notebooks/Test_Predict_MSEED_Japan_PS.ipynb -------------------------------------------------------------------------------- /eqcctone/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctone/setup.py -------------------------------------------------------------------------------- /eqcctpro/230_stations_1_min_dt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/230_stations_1_min_dt.zip -------------------------------------------------------------------------------- /eqcctpro/230_stations_1min_20sec_overlap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/230_stations_1min_20sec_overlap.zip -------------------------------------------------------------------------------- /eqcctpro/ModelPS/test_trainer_021.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/ModelPS/test_trainer_021.h5 -------------------------------------------------------------------------------- /eqcctpro/ModelPS/test_trainer_024.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/ModelPS/test_trainer_024.h5 -------------------------------------------------------------------------------- /eqcctpro/OptimizedEQCCT_Paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/OptimizedEQCCT_Paper.pdf -------------------------------------------------------------------------------- /eqcctpro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/README.md -------------------------------------------------------------------------------- /eqcctpro/create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/create_dataset.py -------------------------------------------------------------------------------- /eqcctpro/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/environment.yml -------------------------------------------------------------------------------- /eqcctpro/eqcctpro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/eqcctpro/__init__.py -------------------------------------------------------------------------------- /eqcctpro/eqcctpro/eqcct_tf_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/eqcctpro/eqcct_tf_models.py -------------------------------------------------------------------------------- /eqcctpro/eqcctpro/functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/eqcctpro/functionality.py -------------------------------------------------------------------------------- /eqcctpro/eqcctpro/parallelization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/eqcctpro/parallelization.py -------------------------------------------------------------------------------- /eqcctpro/eqcctpro/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/eqcctpro/tools.py -------------------------------------------------------------------------------- /eqcctpro/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ut-beg-texnet/eqcct/HEAD/eqcctpro/run.py --------------------------------------------------------------------------------