├── .gitignore ├── LICENSE ├── Modified_History ├── README.md ├── REAL_userguide_July2021.pdf ├── bin ├── REAL ├── pick2real └── velest ├── demo_real ├── Data │ ├── ingv.sta │ ├── iris.sta │ ├── station.dat │ ├── transferWA.pl │ └── vel │ │ ├── SACH_O.pl │ │ ├── ingv_waveform_IV_vel.py │ │ └── iris_waveform_YR_vel.py ├── Mag │ └── calc_mag.py ├── Pick │ ├── 20161014.zip │ ├── trigger_p_amp.py │ └── trigger_s_amp.py ├── Pick_PhaseNet │ ├── picksplit.py │ ├── results │ │ └── picks.csv │ ├── run_phasenet.sh │ ├── temp.p │ └── temp.s ├── README.txt ├── REAL │ ├── event_verify │ │ ├── eventverify_all.py │ │ └── eventverify_pick.py │ ├── runREAL.pl │ ├── t_dist │ │ ├── pha_t-dist.awk │ │ └── t_dist.m │ └── tt_db │ │ ├── itvel.nd │ │ ├── itvel.taup │ │ ├── taup_tt.py │ │ └── ttdb.txt ├── VELEST │ ├── convertformat.pl │ ├── convertoutput.pl │ ├── italy.mod │ ├── mergetogether_phase.pl │ ├── plot_3dscatter.m │ ├── regionskoord.dat │ ├── regionsnamen.dat │ ├── velest.cmn │ └── velest.cmn_0 ├── hypoDD │ ├── createstation.sh │ ├── hypoDD.inp │ ├── ph2dt.inp │ ├── plot_3dscatter.m │ └── selectphase.pl └── hypoinverse │ ├── hyp.command │ ├── mk_inputfile.py │ ├── mk_velmodel.py │ ├── plot_3dscatter.m │ ├── run_hypoinverse.sh │ ├── vel_model_P.crh │ └── vel_model_S.crh ├── demo_syn ├── README.txt ├── homomodel │ └── runREAL.pl ├── layermodel │ ├── catalog_use.txt │ ├── create_pk.py │ └── runREAL.pl ├── plot │ ├── plotcatalogstation_homo.pl │ └── plotcatalogstation_layer.pl ├── resolution │ ├── catalog_use.txt │ ├── create_pk.py │ ├── plot_num.m │ └── runREAL.pl ├── station.dat └── tt_db │ ├── itvel.nd │ ├── itvel.taup │ ├── taup_tt.py │ └── ttdb.txt └── src ├── REAL ├── Makefile └── REAL.c ├── VELEST ├── Makefile ├── README.txt ├── vel_com.f └── velest.f └── pick2real ├── Makefile ├── pick2real.c └── pick2real.o /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/LICENSE -------------------------------------------------------------------------------- /Modified_History: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/Modified_History -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/README.md -------------------------------------------------------------------------------- /REAL_userguide_July2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/REAL_userguide_July2021.pdf -------------------------------------------------------------------------------- /bin/REAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/bin/REAL -------------------------------------------------------------------------------- /bin/pick2real: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/bin/pick2real -------------------------------------------------------------------------------- /bin/velest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/bin/velest -------------------------------------------------------------------------------- /demo_real/Data/ingv.sta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Data/ingv.sta -------------------------------------------------------------------------------- /demo_real/Data/iris.sta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Data/iris.sta -------------------------------------------------------------------------------- /demo_real/Data/station.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Data/station.dat -------------------------------------------------------------------------------- /demo_real/Data/transferWA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Data/transferWA.pl -------------------------------------------------------------------------------- /demo_real/Data/vel/SACH_O.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Data/vel/SACH_O.pl -------------------------------------------------------------------------------- /demo_real/Data/vel/ingv_waveform_IV_vel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Data/vel/ingv_waveform_IV_vel.py -------------------------------------------------------------------------------- /demo_real/Data/vel/iris_waveform_YR_vel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Data/vel/iris_waveform_YR_vel.py -------------------------------------------------------------------------------- /demo_real/Mag/calc_mag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Mag/calc_mag.py -------------------------------------------------------------------------------- /demo_real/Pick/20161014.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Pick/20161014.zip -------------------------------------------------------------------------------- /demo_real/Pick/trigger_p_amp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Pick/trigger_p_amp.py -------------------------------------------------------------------------------- /demo_real/Pick/trigger_s_amp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Pick/trigger_s_amp.py -------------------------------------------------------------------------------- /demo_real/Pick_PhaseNet/picksplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Pick_PhaseNet/picksplit.py -------------------------------------------------------------------------------- /demo_real/Pick_PhaseNet/results/picks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Pick_PhaseNet/results/picks.csv -------------------------------------------------------------------------------- /demo_real/Pick_PhaseNet/run_phasenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Pick_PhaseNet/run_phasenet.sh -------------------------------------------------------------------------------- /demo_real/Pick_PhaseNet/temp.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Pick_PhaseNet/temp.p -------------------------------------------------------------------------------- /demo_real/Pick_PhaseNet/temp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/Pick_PhaseNet/temp.s -------------------------------------------------------------------------------- /demo_real/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/README.txt -------------------------------------------------------------------------------- /demo_real/REAL/event_verify/eventverify_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/event_verify/eventverify_all.py -------------------------------------------------------------------------------- /demo_real/REAL/event_verify/eventverify_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/event_verify/eventverify_pick.py -------------------------------------------------------------------------------- /demo_real/REAL/runREAL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/runREAL.pl -------------------------------------------------------------------------------- /demo_real/REAL/t_dist/pha_t-dist.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/t_dist/pha_t-dist.awk -------------------------------------------------------------------------------- /demo_real/REAL/t_dist/t_dist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/t_dist/t_dist.m -------------------------------------------------------------------------------- /demo_real/REAL/tt_db/itvel.nd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/tt_db/itvel.nd -------------------------------------------------------------------------------- /demo_real/REAL/tt_db/itvel.taup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/tt_db/itvel.taup -------------------------------------------------------------------------------- /demo_real/REAL/tt_db/taup_tt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/tt_db/taup_tt.py -------------------------------------------------------------------------------- /demo_real/REAL/tt_db/ttdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/REAL/tt_db/ttdb.txt -------------------------------------------------------------------------------- /demo_real/VELEST/convertformat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/convertformat.pl -------------------------------------------------------------------------------- /demo_real/VELEST/convertoutput.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/convertoutput.pl -------------------------------------------------------------------------------- /demo_real/VELEST/italy.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/italy.mod -------------------------------------------------------------------------------- /demo_real/VELEST/mergetogether_phase.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/mergetogether_phase.pl -------------------------------------------------------------------------------- /demo_real/VELEST/plot_3dscatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/plot_3dscatter.m -------------------------------------------------------------------------------- /demo_real/VELEST/regionskoord.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/regionskoord.dat -------------------------------------------------------------------------------- /demo_real/VELEST/regionsnamen.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/regionsnamen.dat -------------------------------------------------------------------------------- /demo_real/VELEST/velest.cmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/velest.cmn -------------------------------------------------------------------------------- /demo_real/VELEST/velest.cmn_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/VELEST/velest.cmn_0 -------------------------------------------------------------------------------- /demo_real/hypoDD/createstation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoDD/createstation.sh -------------------------------------------------------------------------------- /demo_real/hypoDD/hypoDD.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoDD/hypoDD.inp -------------------------------------------------------------------------------- /demo_real/hypoDD/ph2dt.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoDD/ph2dt.inp -------------------------------------------------------------------------------- /demo_real/hypoDD/plot_3dscatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoDD/plot_3dscatter.m -------------------------------------------------------------------------------- /demo_real/hypoDD/selectphase.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoDD/selectphase.pl -------------------------------------------------------------------------------- /demo_real/hypoinverse/hyp.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoinverse/hyp.command -------------------------------------------------------------------------------- /demo_real/hypoinverse/mk_inputfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoinverse/mk_inputfile.py -------------------------------------------------------------------------------- /demo_real/hypoinverse/mk_velmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoinverse/mk_velmodel.py -------------------------------------------------------------------------------- /demo_real/hypoinverse/plot_3dscatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoinverse/plot_3dscatter.m -------------------------------------------------------------------------------- /demo_real/hypoinverse/run_hypoinverse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoinverse/run_hypoinverse.sh -------------------------------------------------------------------------------- /demo_real/hypoinverse/vel_model_P.crh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoinverse/vel_model_P.crh -------------------------------------------------------------------------------- /demo_real/hypoinverse/vel_model_S.crh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_real/hypoinverse/vel_model_S.crh -------------------------------------------------------------------------------- /demo_syn/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/README.txt -------------------------------------------------------------------------------- /demo_syn/homomodel/runREAL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/homomodel/runREAL.pl -------------------------------------------------------------------------------- /demo_syn/layermodel/catalog_use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/layermodel/catalog_use.txt -------------------------------------------------------------------------------- /demo_syn/layermodel/create_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/layermodel/create_pk.py -------------------------------------------------------------------------------- /demo_syn/layermodel/runREAL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/layermodel/runREAL.pl -------------------------------------------------------------------------------- /demo_syn/plot/plotcatalogstation_homo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/plot/plotcatalogstation_homo.pl -------------------------------------------------------------------------------- /demo_syn/plot/plotcatalogstation_layer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/plot/plotcatalogstation_layer.pl -------------------------------------------------------------------------------- /demo_syn/resolution/catalog_use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/resolution/catalog_use.txt -------------------------------------------------------------------------------- /demo_syn/resolution/create_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/resolution/create_pk.py -------------------------------------------------------------------------------- /demo_syn/resolution/plot_num.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/resolution/plot_num.m -------------------------------------------------------------------------------- /demo_syn/resolution/runREAL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/resolution/runREAL.pl -------------------------------------------------------------------------------- /demo_syn/station.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/station.dat -------------------------------------------------------------------------------- /demo_syn/tt_db/itvel.nd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/tt_db/itvel.nd -------------------------------------------------------------------------------- /demo_syn/tt_db/itvel.taup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/tt_db/itvel.taup -------------------------------------------------------------------------------- /demo_syn/tt_db/taup_tt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/tt_db/taup_tt.py -------------------------------------------------------------------------------- /demo_syn/tt_db/ttdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/demo_syn/tt_db/ttdb.txt -------------------------------------------------------------------------------- /src/REAL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/REAL/Makefile -------------------------------------------------------------------------------- /src/REAL/REAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/REAL/REAL.c -------------------------------------------------------------------------------- /src/VELEST/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/VELEST/Makefile -------------------------------------------------------------------------------- /src/VELEST/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/VELEST/README.txt -------------------------------------------------------------------------------- /src/VELEST/vel_com.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/VELEST/vel_com.f -------------------------------------------------------------------------------- /src/VELEST/velest.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/VELEST/velest.f -------------------------------------------------------------------------------- /src/pick2real/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/pick2real/Makefile -------------------------------------------------------------------------------- /src/pick2real/pick2real.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/pick2real/pick2real.c -------------------------------------------------------------------------------- /src/pick2real/pick2real.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dal-mzhang/REAL/HEAD/src/pick2real/pick2real.o --------------------------------------------------------------------------------