├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── PyProgs ├── CZ_color.py ├── NllGridLib.py ├── OP_waveforms.py ├── README ├── SDS_processing.py ├── __init__.py ├── clustering.py ├── correlation.py ├── deprecated │ ├── AM_geo.py │ ├── AM_subs.py │ ├── NLL_IO.py │ ├── extract_located_events.py │ ├── flexwin_funcs.py │ ├── grids_paths.py │ ├── kurtogram.py │ ├── kurtogram │ │ ├── Matlab │ │ │ ├── Fast_Kurtogram_light.m │ │ │ ├── ReadmeFK.rtf │ │ │ └── demo_Fast_Kurtogram.m │ │ └── python │ │ │ └── Fast_Kurtogram.py │ ├── learn_kwin.py │ ├── obspyaux.py │ ├── plot_dem_mayavi.py │ ├── plot_locations.py │ ├── plot_only_dem_mayavi.py │ ├── plot_slice_mayavi.py │ ├── pysacio.py │ ├── reloc_by_snr.py │ ├── run_PdF_waveloc.py │ ├── run_kurtogram.py │ ├── sub_PdF_waveloc.py │ └── waveloc_funcs.py ├── double_diff.py ├── filters.py ├── hdf5_grids.py ├── integrate4D.py ├── kurtogram.py ├── locations_prob.py ├── locations_trigger.py ├── magnitude.py ├── make_SDS_data_links.py ├── migration.py ├── options.py ├── plot_locations2.py ├── plot_mpl.py ├── synth_migration.py ├── test_clustering.py ├── test_correlation.py ├── test_double_diff.py ├── test_hdf5.py ├── test_kurtogram.py ├── test_location.py ├── test_migration.py ├── test_nllstuff.py ├── test_processing.py ├── test_waveloc.py └── thread_test.py ├── README.md ├── examples ├── __init__.py ├── run_syn_example.py ├── run_syn_resolution_example.py ├── run_waveloc_example.py └── setup_examples.py ├── lib ├── coord_stations_belgium ├── coord_stations_ijen ├── coord_stations_piton ├── coord_stations_temp_emilia ├── grid.500m.search.hdr ├── grid.belgium.search.hdr ├── grid.emilia.search.hdr └── grid.ijen.search.hdr ├── nll ├── BEL │ ├── bel_model_orig.txt │ ├── bel_stations.txt │ ├── coord_stations_belgium │ ├── network_center.py │ ├── nlloc_bel.in │ └── nlloc_bel_2D.in ├── IJEN │ ├── coord_statons_ijen │ ├── ijen_model_orig.txt │ ├── ijen_stations.txt │ ├── network_center.py │ └── nlloc_ijen.in ├── LAQUILA │ ├── _nll_waveloc_aquila.in.3 │ ├── coord_stations_laquila │ ├── extract_used_stations.py │ └── nlloc_laquila.in ├── TUTORIAL │ ├── coord_stations_tutorial │ └── nll_tutorial.in └── nlloc_sample.in ├── scripts ├── grid2hdf5 ├── make_SDS ├── pyms2sac ├── run_PdF_test.py ├── run_syn_Emilia.py └── run_syn_PdF.py ├── setup.py ├── sphinx ├── Makefile ├── api.rst ├── conf.py ├── figures │ ├── grid_2010-10-14T00:17:13.890000.png │ ├── loc_2010-10-14T00:17:13.890000.png │ ├── loc_example.png │ ├── syn_example.png │ ├── waveloc_pics_data.png │ ├── waveloc_pics_max_stack.png │ └── waveloc_pics_migration.png ├── getting_started.rst ├── index.rst ├── intro.rst ├── make.bat └── tutorial.rst └── test_data ├── S.mat ├── TEST_fullRes_locations.dat ├── TEST_fullRes_locations_prob.dat ├── TEST_fullRes_stack_signature.dat ├── TEST_locations.dat ├── TEST_locations_prob.dat ├── VOIE1.mat ├── c.mat ├── coord_stations_test ├── grid.Taisne.search.hdr ├── matlab_grid.np ├── raw_data ├── YA.FJS.00.HHZ.MSEED ├── YA.FLR.00.HHZ.MSEED ├── YA.HDL.00.HHZ.MSEED ├── YA.RVL.00.HHZ.MSEED ├── YA.SNE.00.HHZ.MSEED ├── YA.UV01.00.HHZ.MSEED ├── YA.UV02.00.HHZ.MSEED ├── YA.UV03.00.HHZ.MSEED ├── YA.UV04.00.HHZ.MSEED ├── YA.UV05.00.HHZ.MSEED ├── YA.UV06.00.HHZ.MSEED ├── YA.UV07.00.HHZ.MSEED ├── YA.UV08.00.HHZ.MSEED ├── YA.UV09.00.HHZ.MSEED ├── YA.UV10.00.HHZ.MSEED ├── YA.UV11.00.HHZ.MSEED ├── YA.UV12.00.HHZ.MSEED ├── YA.UV13.00.HHZ.MSEED ├── YA.UV14.00.HHZ.MSEED └── YA.UV15.00.HHZ.MSEED ├── test.time.buf ├── test.time.hdr ├── test_channel_file ├── test_data_signature.dat ├── test_grid.search.geo.hdr ├── test_grid.search.hdr ├── test_stack_signature.dat └── x.mat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | **dev** 2 | 3 | * improved speed on kurtosis by 20% 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/LICENSE -------------------------------------------------------------------------------- /PyProgs/CZ_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/CZ_color.py -------------------------------------------------------------------------------- /PyProgs/NllGridLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/NllGridLib.py -------------------------------------------------------------------------------- /PyProgs/OP_waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/OP_waveforms.py -------------------------------------------------------------------------------- /PyProgs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/README -------------------------------------------------------------------------------- /PyProgs/SDS_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/SDS_processing.py -------------------------------------------------------------------------------- /PyProgs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyProgs/clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/clustering.py -------------------------------------------------------------------------------- /PyProgs/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/correlation.py -------------------------------------------------------------------------------- /PyProgs/deprecated/AM_geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/AM_geo.py -------------------------------------------------------------------------------- /PyProgs/deprecated/AM_subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/AM_subs.py -------------------------------------------------------------------------------- /PyProgs/deprecated/NLL_IO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/NLL_IO.py -------------------------------------------------------------------------------- /PyProgs/deprecated/extract_located_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/extract_located_events.py -------------------------------------------------------------------------------- /PyProgs/deprecated/flexwin_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/flexwin_funcs.py -------------------------------------------------------------------------------- /PyProgs/deprecated/grids_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/grids_paths.py -------------------------------------------------------------------------------- /PyProgs/deprecated/kurtogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/kurtogram.py -------------------------------------------------------------------------------- /PyProgs/deprecated/kurtogram/Matlab/Fast_Kurtogram_light.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/kurtogram/Matlab/Fast_Kurtogram_light.m -------------------------------------------------------------------------------- /PyProgs/deprecated/kurtogram/Matlab/ReadmeFK.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/kurtogram/Matlab/ReadmeFK.rtf -------------------------------------------------------------------------------- /PyProgs/deprecated/kurtogram/Matlab/demo_Fast_Kurtogram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/kurtogram/Matlab/demo_Fast_Kurtogram.m -------------------------------------------------------------------------------- /PyProgs/deprecated/kurtogram/python/Fast_Kurtogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/kurtogram/python/Fast_Kurtogram.py -------------------------------------------------------------------------------- /PyProgs/deprecated/learn_kwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/learn_kwin.py -------------------------------------------------------------------------------- /PyProgs/deprecated/obspyaux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/obspyaux.py -------------------------------------------------------------------------------- /PyProgs/deprecated/plot_dem_mayavi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/plot_dem_mayavi.py -------------------------------------------------------------------------------- /PyProgs/deprecated/plot_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/plot_locations.py -------------------------------------------------------------------------------- /PyProgs/deprecated/plot_only_dem_mayavi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/plot_only_dem_mayavi.py -------------------------------------------------------------------------------- /PyProgs/deprecated/plot_slice_mayavi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/plot_slice_mayavi.py -------------------------------------------------------------------------------- /PyProgs/deprecated/pysacio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/pysacio.py -------------------------------------------------------------------------------- /PyProgs/deprecated/reloc_by_snr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/reloc_by_snr.py -------------------------------------------------------------------------------- /PyProgs/deprecated/run_PdF_waveloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/run_PdF_waveloc.py -------------------------------------------------------------------------------- /PyProgs/deprecated/run_kurtogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/run_kurtogram.py -------------------------------------------------------------------------------- /PyProgs/deprecated/sub_PdF_waveloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/sub_PdF_waveloc.py -------------------------------------------------------------------------------- /PyProgs/deprecated/waveloc_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/deprecated/waveloc_funcs.py -------------------------------------------------------------------------------- /PyProgs/double_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/double_diff.py -------------------------------------------------------------------------------- /PyProgs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/filters.py -------------------------------------------------------------------------------- /PyProgs/hdf5_grids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/hdf5_grids.py -------------------------------------------------------------------------------- /PyProgs/integrate4D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/integrate4D.py -------------------------------------------------------------------------------- /PyProgs/kurtogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/kurtogram.py -------------------------------------------------------------------------------- /PyProgs/locations_prob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/locations_prob.py -------------------------------------------------------------------------------- /PyProgs/locations_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/locations_trigger.py -------------------------------------------------------------------------------- /PyProgs/magnitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/magnitude.py -------------------------------------------------------------------------------- /PyProgs/make_SDS_data_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/make_SDS_data_links.py -------------------------------------------------------------------------------- /PyProgs/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/migration.py -------------------------------------------------------------------------------- /PyProgs/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/options.py -------------------------------------------------------------------------------- /PyProgs/plot_locations2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/plot_locations2.py -------------------------------------------------------------------------------- /PyProgs/plot_mpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/plot_mpl.py -------------------------------------------------------------------------------- /PyProgs/synth_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/synth_migration.py -------------------------------------------------------------------------------- /PyProgs/test_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_clustering.py -------------------------------------------------------------------------------- /PyProgs/test_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_correlation.py -------------------------------------------------------------------------------- /PyProgs/test_double_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_double_diff.py -------------------------------------------------------------------------------- /PyProgs/test_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_hdf5.py -------------------------------------------------------------------------------- /PyProgs/test_kurtogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_kurtogram.py -------------------------------------------------------------------------------- /PyProgs/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_location.py -------------------------------------------------------------------------------- /PyProgs/test_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_migration.py -------------------------------------------------------------------------------- /PyProgs/test_nllstuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_nllstuff.py -------------------------------------------------------------------------------- /PyProgs/test_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_processing.py -------------------------------------------------------------------------------- /PyProgs/test_waveloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/test_waveloc.py -------------------------------------------------------------------------------- /PyProgs/thread_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/PyProgs/thread_test.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/run_syn_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/examples/run_syn_example.py -------------------------------------------------------------------------------- /examples/run_syn_resolution_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/examples/run_syn_resolution_example.py -------------------------------------------------------------------------------- /examples/run_waveloc_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/examples/run_waveloc_example.py -------------------------------------------------------------------------------- /examples/setup_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/examples/setup_examples.py -------------------------------------------------------------------------------- /lib/coord_stations_belgium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/lib/coord_stations_belgium -------------------------------------------------------------------------------- /lib/coord_stations_ijen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/lib/coord_stations_ijen -------------------------------------------------------------------------------- /lib/coord_stations_piton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/lib/coord_stations_piton -------------------------------------------------------------------------------- /lib/coord_stations_temp_emilia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/lib/coord_stations_temp_emilia -------------------------------------------------------------------------------- /lib/grid.500m.search.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/lib/grid.500m.search.hdr -------------------------------------------------------------------------------- /lib/grid.belgium.search.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/lib/grid.belgium.search.hdr -------------------------------------------------------------------------------- /lib/grid.emilia.search.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/lib/grid.emilia.search.hdr -------------------------------------------------------------------------------- /lib/grid.ijen.search.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/lib/grid.ijen.search.hdr -------------------------------------------------------------------------------- /nll/BEL/bel_model_orig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/BEL/bel_model_orig.txt -------------------------------------------------------------------------------- /nll/BEL/bel_stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/BEL/bel_stations.txt -------------------------------------------------------------------------------- /nll/BEL/coord_stations_belgium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/BEL/coord_stations_belgium -------------------------------------------------------------------------------- /nll/BEL/network_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/BEL/network_center.py -------------------------------------------------------------------------------- /nll/BEL/nlloc_bel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/BEL/nlloc_bel.in -------------------------------------------------------------------------------- /nll/BEL/nlloc_bel_2D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/BEL/nlloc_bel_2D.in -------------------------------------------------------------------------------- /nll/IJEN/coord_statons_ijen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/IJEN/coord_statons_ijen -------------------------------------------------------------------------------- /nll/IJEN/ijen_model_orig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/IJEN/ijen_model_orig.txt -------------------------------------------------------------------------------- /nll/IJEN/ijen_stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/IJEN/ijen_stations.txt -------------------------------------------------------------------------------- /nll/IJEN/network_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/IJEN/network_center.py -------------------------------------------------------------------------------- /nll/IJEN/nlloc_ijen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/IJEN/nlloc_ijen.in -------------------------------------------------------------------------------- /nll/LAQUILA/_nll_waveloc_aquila.in.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/LAQUILA/_nll_waveloc_aquila.in.3 -------------------------------------------------------------------------------- /nll/LAQUILA/coord_stations_laquila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/LAQUILA/coord_stations_laquila -------------------------------------------------------------------------------- /nll/LAQUILA/extract_used_stations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/LAQUILA/extract_used_stations.py -------------------------------------------------------------------------------- /nll/LAQUILA/nlloc_laquila.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/LAQUILA/nlloc_laquila.in -------------------------------------------------------------------------------- /nll/TUTORIAL/coord_stations_tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/TUTORIAL/coord_stations_tutorial -------------------------------------------------------------------------------- /nll/TUTORIAL/nll_tutorial.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/TUTORIAL/nll_tutorial.in -------------------------------------------------------------------------------- /nll/nlloc_sample.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/nll/nlloc_sample.in -------------------------------------------------------------------------------- /scripts/grid2hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/scripts/grid2hdf5 -------------------------------------------------------------------------------- /scripts/make_SDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/scripts/make_SDS -------------------------------------------------------------------------------- /scripts/pyms2sac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/scripts/pyms2sac -------------------------------------------------------------------------------- /scripts/run_PdF_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/scripts/run_PdF_test.py -------------------------------------------------------------------------------- /scripts/run_syn_Emilia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/scripts/run_syn_Emilia.py -------------------------------------------------------------------------------- /scripts/run_syn_PdF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/scripts/run_syn_PdF.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/setup.py -------------------------------------------------------------------------------- /sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/Makefile -------------------------------------------------------------------------------- /sphinx/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/api.rst -------------------------------------------------------------------------------- /sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/conf.py -------------------------------------------------------------------------------- /sphinx/figures/grid_2010-10-14T00:17:13.890000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/figures/grid_2010-10-14T00:17:13.890000.png -------------------------------------------------------------------------------- /sphinx/figures/loc_2010-10-14T00:17:13.890000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/figures/loc_2010-10-14T00:17:13.890000.png -------------------------------------------------------------------------------- /sphinx/figures/loc_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/figures/loc_example.png -------------------------------------------------------------------------------- /sphinx/figures/syn_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/figures/syn_example.png -------------------------------------------------------------------------------- /sphinx/figures/waveloc_pics_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/figures/waveloc_pics_data.png -------------------------------------------------------------------------------- /sphinx/figures/waveloc_pics_max_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/figures/waveloc_pics_max_stack.png -------------------------------------------------------------------------------- /sphinx/figures/waveloc_pics_migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/figures/waveloc_pics_migration.png -------------------------------------------------------------------------------- /sphinx/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/getting_started.rst -------------------------------------------------------------------------------- /sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/index.rst -------------------------------------------------------------------------------- /sphinx/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/intro.rst -------------------------------------------------------------------------------- /sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/make.bat -------------------------------------------------------------------------------- /sphinx/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/sphinx/tutorial.rst -------------------------------------------------------------------------------- /test_data/S.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/S.mat -------------------------------------------------------------------------------- /test_data/TEST_fullRes_locations.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/TEST_fullRes_locations.dat -------------------------------------------------------------------------------- /test_data/TEST_fullRes_locations_prob.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/TEST_fullRes_locations_prob.dat -------------------------------------------------------------------------------- /test_data/TEST_fullRes_stack_signature.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/TEST_fullRes_stack_signature.dat -------------------------------------------------------------------------------- /test_data/TEST_locations.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/TEST_locations.dat -------------------------------------------------------------------------------- /test_data/TEST_locations_prob.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/TEST_locations_prob.dat -------------------------------------------------------------------------------- /test_data/VOIE1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/VOIE1.mat -------------------------------------------------------------------------------- /test_data/c.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/c.mat -------------------------------------------------------------------------------- /test_data/coord_stations_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/coord_stations_test -------------------------------------------------------------------------------- /test_data/grid.Taisne.search.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/grid.Taisne.search.hdr -------------------------------------------------------------------------------- /test_data/matlab_grid.np: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/matlab_grid.np -------------------------------------------------------------------------------- /test_data/raw_data/YA.FJS.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.FJS.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.FLR.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.FLR.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.HDL.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.HDL.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.RVL.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.RVL.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.SNE.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.SNE.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV01.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV01.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV02.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV02.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV03.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV03.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV04.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV04.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV05.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV05.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV06.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV06.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV07.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV07.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV08.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV08.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV09.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV09.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV10.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV10.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV11.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV11.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV12.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV12.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV13.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV13.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV14.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV14.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/raw_data/YA.UV15.00.HHZ.MSEED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/raw_data/YA.UV15.00.HHZ.MSEED -------------------------------------------------------------------------------- /test_data/test.time.buf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/test.time.buf -------------------------------------------------------------------------------- /test_data/test.time.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/test.time.hdr -------------------------------------------------------------------------------- /test_data/test_channel_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/test_channel_file -------------------------------------------------------------------------------- /test_data/test_data_signature.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/test_data_signature.dat -------------------------------------------------------------------------------- /test_data/test_grid.search.geo.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/test_grid.search.geo.hdr -------------------------------------------------------------------------------- /test_data/test_grid.search.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/test_grid.search.hdr -------------------------------------------------------------------------------- /test_data/test_stack_signature.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/test_stack_signature.dat -------------------------------------------------------------------------------- /test_data/x.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaggi/waveloc/HEAD/test_data/x.mat --------------------------------------------------------------------------------