├── Event.py ├── FastTS ├── meta.py └── select.py ├── Plot └── gmt.py ├── README.md ├── Tomo ├── barmin.py ├── form_test_data.py └── util.py ├── TwoStation ├── Station.py ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── two_station.cpython-36.pyc ├── reject_outliers.py └── two_station.py ├── ZHratio ├── __init__.py ├── check_sacheader_b_filename.py ├── extract.py └── pre_process.py ├── __init__.py ├── cps.py ├── dwseis ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── dwseis.cpython-36.pyc │ └── shit.cpython-36.pyc ├── config ├── dwseis.py ├── dwseis_conti.py ├── evt_2004_2016 ├── ex_seed.py ├── mail ├── readme ├── sta.lst └── station_us ├── metadata.py ├── pre_process.py └── sac.py /Event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/Event.py -------------------------------------------------------------------------------- /FastTS/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/FastTS/meta.py -------------------------------------------------------------------------------- /FastTS/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/FastTS/select.py -------------------------------------------------------------------------------- /Plot/gmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/Plot/gmt.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/README.md -------------------------------------------------------------------------------- /Tomo/barmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/Tomo/barmin.py -------------------------------------------------------------------------------- /Tomo/form_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/Tomo/form_test_data.py -------------------------------------------------------------------------------- /Tomo/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/Tomo/util.py -------------------------------------------------------------------------------- /TwoStation/Station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/TwoStation/Station.py -------------------------------------------------------------------------------- /TwoStation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TwoStation/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/TwoStation/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /TwoStation/__pycache__/two_station.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/TwoStation/__pycache__/two_station.cpython-36.pyc -------------------------------------------------------------------------------- /TwoStation/reject_outliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/TwoStation/reject_outliers.py -------------------------------------------------------------------------------- /TwoStation/two_station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/TwoStation/two_station.py -------------------------------------------------------------------------------- /ZHratio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZHratio/check_sacheader_b_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/ZHratio/check_sacheader_b_filename.py -------------------------------------------------------------------------------- /ZHratio/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/ZHratio/extract.py -------------------------------------------------------------------------------- /ZHratio/pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/ZHratio/pre_process.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/cps.py -------------------------------------------------------------------------------- /dwseis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dwseis/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /dwseis/__pycache__/dwseis.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/__pycache__/dwseis.cpython-36.pyc -------------------------------------------------------------------------------- /dwseis/__pycache__/shit.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/__pycache__/shit.cpython-36.pyc -------------------------------------------------------------------------------- /dwseis/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/config -------------------------------------------------------------------------------- /dwseis/dwseis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/dwseis.py -------------------------------------------------------------------------------- /dwseis/dwseis_conti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/dwseis_conti.py -------------------------------------------------------------------------------- /dwseis/evt_2004_2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/evt_2004_2016 -------------------------------------------------------------------------------- /dwseis/ex_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/ex_seed.py -------------------------------------------------------------------------------- /dwseis/mail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/mail -------------------------------------------------------------------------------- /dwseis/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/readme -------------------------------------------------------------------------------- /dwseis/sta.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/sta.lst -------------------------------------------------------------------------------- /dwseis/station_us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/dwseis/station_us -------------------------------------------------------------------------------- /metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/metadata.py -------------------------------------------------------------------------------- /pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/pre_process.py -------------------------------------------------------------------------------- /sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HouseJaay/Geopy/HEAD/sac.py --------------------------------------------------------------------------------