├── LICENSE ├── README.md ├── matlab ├── bodePlot.m ├── ccpStack.m ├── computeRFs.m ├── external │ ├── IASP91.tvel │ ├── PREM_ISO.tvel │ ├── fread_sac.m │ ├── fwrite_sac.m │ ├── gaussFilter.m │ ├── getwords.m │ ├── makeRFitdecon_la.m │ ├── tauptime.m │ └── vik.mat ├── fetchRFQuakes.m ├── hkStack.m ├── latlon2cart.m ├── parsePZ.m ├── parseRESP.m ├── petersonNoiseModel.m ├── qcRF.m ├── rfCrossSection.m ├── rfDepcon.m ├── savePZ.m ├── saveRF.m ├── saveSAC.m ├── seisne.m ├── seisrt.m ├── stackRFs.m ├── transfer.m └── transfer_evalresp.m ├── pdf ├── NJ_Responses.pdf └── README ├── python ├── IASP91.tvel ├── computeRFs.py ├── examples │ └── timeToDepth.py ├── fetchRFdata.py ├── iterdecon.py ├── makeRFDatabase.py ├── rfDepcon.py ├── seisutils.py └── time_v_gcarc.py └── transfer ├── README.md ├── data ├── responses │ ├── AMP.PP.S0001.00.HHZ │ ├── PHASE.PP.S0001.00.HHZ │ ├── PP.S0001.00.HHZ.resp │ ├── PP.S0002.00.HHZ.resp │ ├── PP.S0002.10.HNZ.resp │ └── SAC_PZs_R36A4_00 └── traces │ ├── AM.R36A4.00.EHZ.2020.09.09.06.00.00.SAC │ ├── PP.S0001.00.HHZ.D.2020.253.060000.SAC │ ├── PP.S0001.00.HHZ.D.2020.253.060000.VEL.EVALRESP.SAC │ ├── PP.S0001.00.HHZ.D.2020.253.060000.VEL.SACPZ.SAC │ ├── PP.S0002.00.HHZ.D.2020.253.060000.SAC │ └── PP.S0002.10.HNZ.D.2020.253.060000.SAC ├── matlab ├── bodePlot.m ├── external │ ├── fread_sac.m │ └── fwrite_sac.m ├── figure1.m ├── figure2.m ├── figure3.m ├── figure4.m ├── parsePZ.m ├── parseRESP.m ├── transfer.m └── transfer_evalresp.m └── python └── transfer.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/README.md -------------------------------------------------------------------------------- /matlab/bodePlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/bodePlot.m -------------------------------------------------------------------------------- /matlab/ccpStack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/ccpStack.m -------------------------------------------------------------------------------- /matlab/computeRFs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/computeRFs.m -------------------------------------------------------------------------------- /matlab/external/IASP91.tvel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/IASP91.tvel -------------------------------------------------------------------------------- /matlab/external/PREM_ISO.tvel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/PREM_ISO.tvel -------------------------------------------------------------------------------- /matlab/external/fread_sac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/fread_sac.m -------------------------------------------------------------------------------- /matlab/external/fwrite_sac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/fwrite_sac.m -------------------------------------------------------------------------------- /matlab/external/gaussFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/gaussFilter.m -------------------------------------------------------------------------------- /matlab/external/getwords.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/getwords.m -------------------------------------------------------------------------------- /matlab/external/makeRFitdecon_la.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/makeRFitdecon_la.m -------------------------------------------------------------------------------- /matlab/external/tauptime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/tauptime.m -------------------------------------------------------------------------------- /matlab/external/vik.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/external/vik.mat -------------------------------------------------------------------------------- /matlab/fetchRFQuakes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/fetchRFQuakes.m -------------------------------------------------------------------------------- /matlab/hkStack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/hkStack.m -------------------------------------------------------------------------------- /matlab/latlon2cart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/latlon2cart.m -------------------------------------------------------------------------------- /matlab/parsePZ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/parsePZ.m -------------------------------------------------------------------------------- /matlab/parseRESP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/parseRESP.m -------------------------------------------------------------------------------- /matlab/petersonNoiseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/petersonNoiseModel.m -------------------------------------------------------------------------------- /matlab/qcRF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/qcRF.m -------------------------------------------------------------------------------- /matlab/rfCrossSection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/rfCrossSection.m -------------------------------------------------------------------------------- /matlab/rfDepcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/rfDepcon.m -------------------------------------------------------------------------------- /matlab/savePZ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/savePZ.m -------------------------------------------------------------------------------- /matlab/saveRF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/saveRF.m -------------------------------------------------------------------------------- /matlab/saveSAC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/saveSAC.m -------------------------------------------------------------------------------- /matlab/seisne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/seisne.m -------------------------------------------------------------------------------- /matlab/seisrt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/seisrt.m -------------------------------------------------------------------------------- /matlab/stackRFs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/stackRFs.m -------------------------------------------------------------------------------- /matlab/transfer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/transfer.m -------------------------------------------------------------------------------- /matlab/transfer_evalresp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/matlab/transfer_evalresp.m -------------------------------------------------------------------------------- /pdf/NJ_Responses.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/pdf/NJ_Responses.pdf -------------------------------------------------------------------------------- /pdf/README: -------------------------------------------------------------------------------- 1 | How were these plots made? Explicit examples. 2 | -------------------------------------------------------------------------------- /python/IASP91.tvel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/IASP91.tvel -------------------------------------------------------------------------------- /python/computeRFs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/computeRFs.py -------------------------------------------------------------------------------- /python/examples/timeToDepth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/examples/timeToDepth.py -------------------------------------------------------------------------------- /python/fetchRFdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/fetchRFdata.py -------------------------------------------------------------------------------- /python/iterdecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/iterdecon.py -------------------------------------------------------------------------------- /python/makeRFDatabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/makeRFDatabase.py -------------------------------------------------------------------------------- /python/rfDepcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/rfDepcon.py -------------------------------------------------------------------------------- /python/seisutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/seisutils.py -------------------------------------------------------------------------------- /python/time_v_gcarc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/python/time_v_gcarc.py -------------------------------------------------------------------------------- /transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/README.md -------------------------------------------------------------------------------- /transfer/data/responses/AMP.PP.S0001.00.HHZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/responses/AMP.PP.S0001.00.HHZ -------------------------------------------------------------------------------- /transfer/data/responses/PHASE.PP.S0001.00.HHZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/responses/PHASE.PP.S0001.00.HHZ -------------------------------------------------------------------------------- /transfer/data/responses/PP.S0001.00.HHZ.resp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/responses/PP.S0001.00.HHZ.resp -------------------------------------------------------------------------------- /transfer/data/responses/PP.S0002.00.HHZ.resp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/responses/PP.S0002.00.HHZ.resp -------------------------------------------------------------------------------- /transfer/data/responses/PP.S0002.10.HNZ.resp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/responses/PP.S0002.10.HNZ.resp -------------------------------------------------------------------------------- /transfer/data/responses/SAC_PZs_R36A4_00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/responses/SAC_PZs_R36A4_00 -------------------------------------------------------------------------------- /transfer/data/traces/AM.R36A4.00.EHZ.2020.09.09.06.00.00.SAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/traces/AM.R36A4.00.EHZ.2020.09.09.06.00.00.SAC -------------------------------------------------------------------------------- /transfer/data/traces/PP.S0001.00.HHZ.D.2020.253.060000.SAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/traces/PP.S0001.00.HHZ.D.2020.253.060000.SAC -------------------------------------------------------------------------------- /transfer/data/traces/PP.S0001.00.HHZ.D.2020.253.060000.VEL.EVALRESP.SAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/traces/PP.S0001.00.HHZ.D.2020.253.060000.VEL.EVALRESP.SAC -------------------------------------------------------------------------------- /transfer/data/traces/PP.S0001.00.HHZ.D.2020.253.060000.VEL.SACPZ.SAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/traces/PP.S0001.00.HHZ.D.2020.253.060000.VEL.SACPZ.SAC -------------------------------------------------------------------------------- /transfer/data/traces/PP.S0002.00.HHZ.D.2020.253.060000.SAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/traces/PP.S0002.00.HHZ.D.2020.253.060000.SAC -------------------------------------------------------------------------------- /transfer/data/traces/PP.S0002.10.HNZ.D.2020.253.060000.SAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/data/traces/PP.S0002.10.HNZ.D.2020.253.060000.SAC -------------------------------------------------------------------------------- /transfer/matlab/bodePlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/bodePlot.m -------------------------------------------------------------------------------- /transfer/matlab/external/fread_sac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/external/fread_sac.m -------------------------------------------------------------------------------- /transfer/matlab/external/fwrite_sac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/external/fwrite_sac.m -------------------------------------------------------------------------------- /transfer/matlab/figure1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/figure1.m -------------------------------------------------------------------------------- /transfer/matlab/figure2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/figure2.m -------------------------------------------------------------------------------- /transfer/matlab/figure3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/figure3.m -------------------------------------------------------------------------------- /transfer/matlab/figure4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/figure4.m -------------------------------------------------------------------------------- /transfer/matlab/parsePZ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/parsePZ.m -------------------------------------------------------------------------------- /transfer/matlab/parseRESP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/parseRESP.m -------------------------------------------------------------------------------- /transfer/matlab/transfer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/transfer.m -------------------------------------------------------------------------------- /transfer/matlab/transfer_evalresp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/matlab/transfer_evalresp.m -------------------------------------------------------------------------------- /transfer/python/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexburky/rflexa/HEAD/transfer/python/transfer.py --------------------------------------------------------------------------------