├── .gitignore ├── README.md ├── examples ├── data_20130616153750 │ ├── FNO.HHE.OK.01..20130616153750.msd │ ├── FNO.HHN.OK.01..20130616153750.msd │ ├── FNO.HHZ.OK.01..20130616153750.msd │ ├── LC30.HHE.OK...20130616153850.msd │ ├── LC30.HHN.OK...20130616153850.msd │ ├── LC30.HHZ.OK...20130616153850.msd │ ├── OKCFA.HHE.OK...20130616153750.msd │ ├── OKCFA.HHN.OK...20130616153750.msd │ ├── OKCFA.HHZ.OK...20130616153750.msd │ ├── Oklahoma.nd │ ├── SIO.HHE.OK...20130616153750.msd │ ├── SIO.HHN.OK...20130616153750.msd │ ├── SIO.HHZ.OK...20130616153750.msd │ ├── U32A.BHE.OK...20130616153750.msd │ ├── U32A.BHN.OK...20130616153750.msd │ ├── U32A.BHZ.OK...20130616153750.msd │ ├── U32A.HHE.OK...20130616153750.msd │ ├── U32A.HHN.OK...20130616153750.msd │ ├── U32A.HHZ.OK...20130616153750.msd │ ├── W35A.EHE.OK...20130616153750.msd │ ├── W35A.EHN.OK...20130616153750.msd │ ├── W35A.EHZ.OK...20130616153750.msd │ ├── X34A.HHE.OK...20130616153750.msd │ ├── X34A.HHN.OK...20130616153750.msd │ ├── X34A.HHZ.OK...20130616153750.msd │ ├── tt_stations_1D.db │ └── tt_stations_3D.db ├── example_1dassociator_OK.py ├── example_3dassociator_OK.py ├── example_aicpicker.py ├── example_fbpicker.py ├── example_ktpicker.py └── full_example1D.py └── phasepapy ├── __init__.py ├── associator ├── __init__.py ├── assoc1D.py ├── assoc3D.py ├── func1D.py ├── func3D.py ├── plot1D.py ├── plot3D.py ├── search.py ├── tables1D.py ├── tables3D.py ├── tt_stations_1D.py └── tt_stations_3D.py └── phasepicker ├── __init__.py ├── aicdpicker.py ├── cf_aicd.py ├── cf_fb.py ├── cf_kt.py ├── fbpicker.py ├── ktpicker.py ├── scnl.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/README.md -------------------------------------------------------------------------------- /examples/data_20130616153750/FNO.HHE.OK.01..20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/FNO.HHE.OK.01..20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/FNO.HHN.OK.01..20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/FNO.HHN.OK.01..20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/FNO.HHZ.OK.01..20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/FNO.HHZ.OK.01..20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/LC30.HHE.OK...20130616153850.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/LC30.HHE.OK...20130616153850.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/LC30.HHN.OK...20130616153850.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/LC30.HHN.OK...20130616153850.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/LC30.HHZ.OK...20130616153850.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/LC30.HHZ.OK...20130616153850.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/OKCFA.HHE.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/OKCFA.HHE.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/OKCFA.HHN.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/OKCFA.HHN.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/OKCFA.HHZ.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/OKCFA.HHZ.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/Oklahoma.nd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/Oklahoma.nd -------------------------------------------------------------------------------- /examples/data_20130616153750/SIO.HHE.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/SIO.HHE.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/SIO.HHN.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/SIO.HHN.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/SIO.HHZ.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/SIO.HHZ.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/U32A.BHE.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/U32A.BHE.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/U32A.BHN.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/U32A.BHN.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/U32A.BHZ.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/U32A.BHZ.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/U32A.HHE.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/U32A.HHE.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/U32A.HHN.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/U32A.HHN.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/U32A.HHZ.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/U32A.HHZ.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/W35A.EHE.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/W35A.EHE.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/W35A.EHN.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/W35A.EHN.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/W35A.EHZ.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/W35A.EHZ.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/X34A.HHE.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/X34A.HHE.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/X34A.HHN.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/X34A.HHN.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/X34A.HHZ.OK...20130616153750.msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/X34A.HHZ.OK...20130616153750.msd -------------------------------------------------------------------------------- /examples/data_20130616153750/tt_stations_1D.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/tt_stations_1D.db -------------------------------------------------------------------------------- /examples/data_20130616153750/tt_stations_3D.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/data_20130616153750/tt_stations_3D.db -------------------------------------------------------------------------------- /examples/example_1dassociator_OK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/example_1dassociator_OK.py -------------------------------------------------------------------------------- /examples/example_3dassociator_OK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/example_3dassociator_OK.py -------------------------------------------------------------------------------- /examples/example_aicpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/example_aicpicker.py -------------------------------------------------------------------------------- /examples/example_fbpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/example_fbpicker.py -------------------------------------------------------------------------------- /examples/example_ktpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/example_ktpicker.py -------------------------------------------------------------------------------- /examples/full_example1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/examples/full_example1D.py -------------------------------------------------------------------------------- /phasepapy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/__init__.py -------------------------------------------------------------------------------- /phasepapy/associator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/__init__.py -------------------------------------------------------------------------------- /phasepapy/associator/assoc1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/assoc1D.py -------------------------------------------------------------------------------- /phasepapy/associator/assoc3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/assoc3D.py -------------------------------------------------------------------------------- /phasepapy/associator/func1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/func1D.py -------------------------------------------------------------------------------- /phasepapy/associator/func3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/func3D.py -------------------------------------------------------------------------------- /phasepapy/associator/plot1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/plot1D.py -------------------------------------------------------------------------------- /phasepapy/associator/plot3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/plot3D.py -------------------------------------------------------------------------------- /phasepapy/associator/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/search.py -------------------------------------------------------------------------------- /phasepapy/associator/tables1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/tables1D.py -------------------------------------------------------------------------------- /phasepapy/associator/tables3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/tables3D.py -------------------------------------------------------------------------------- /phasepapy/associator/tt_stations_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/tt_stations_1D.py -------------------------------------------------------------------------------- /phasepapy/associator/tt_stations_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/associator/tt_stations_3D.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/__init__.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/aicdpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/aicdpicker.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/cf_aicd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/cf_aicd.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/cf_fb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/cf_fb.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/cf_kt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/cf_kt.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/fbpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/fbpicker.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/ktpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/ktpicker.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/scnl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/scnl.py -------------------------------------------------------------------------------- /phasepapy/phasepicker/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinholland/PhasePApy/HEAD/phasepapy/phasepicker/util.py --------------------------------------------------------------------------------