├── LICENSE ├── README.md ├── algorithms ├── angle_stks_from_gath │ ├── angle_stks_from_gath.m │ └── angle_stks_from_gath.m~ ├── bandpass_filter │ └── bandpass_filter.m ├── int_grad_inv_proj │ └── int_grad_inv_proj.m ├── low_amp_mute │ ├── low_amp_mute.m │ └── low_amp_mute.m~ ├── median_filter │ ├── medfilt3.m │ └── medfilt3nt.m ├── purge_function.sh ├── purge_function.sh~ ├── time_balence │ ├── time_balence.m │ ├── time_balence.m~ │ ├── time_balence_stk.m │ └── time_balence_stk.m~ ├── trim_calculation │ ├── trim_calculation.m │ ├── trim_calculation.m~ │ ├── trim_shifts_calculate.m │ └── trim_shifts_calculate.m~ ├── water_bottom_picker │ ├── water_bottom_picker.m │ └── water_bottom_picker.m~ └── wavelet_estimation │ ├── wavelet_avg.m │ ├── wavelet_avg.m~ │ ├── wavelet_estimation.m │ └── wavelet_estimation.m~ ├── compile └── compile_function.m ├── dir ├── directory_scan.m ├── directory_scan.m~ ├── sort_nat.m └── sort_nat.m~ ├── extra ├── meta_data_2d_smo_xy.m ├── meta_data_2d_smo_xy.m~ ├── perl_matlab_par_for.pl └── perl_matlab_par_for.pl~ ├── node ├── node_segy_read.m ├── node_segy_write.m └── node_slurm_submit.m ├── plot_qc ├── segy_plot_live_blocks.m └── wavelet_plot_norm_inversion.m ├── readme.m ├── readme.m~ └── scan_segy ├── gather_compress_ilxl_bytes.m ├── gather_compress_ilxl_bytes_offset.m ├── segy_index_byte_finder.m ├── segy_make_blocks.m ├── segy_make_job.m ├── segy_make_structure.m ├── segy_read_binary.m ├── select_live_blocks.m ├── trace_compress_ilxl_bytes.m └── trace_compress_ilxl_bytes.m~ /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/angle_stks_from_gath/angle_stks_from_gath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/angle_stks_from_gath/angle_stks_from_gath.m -------------------------------------------------------------------------------- /algorithms/angle_stks_from_gath/angle_stks_from_gath.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/angle_stks_from_gath/angle_stks_from_gath.m~ -------------------------------------------------------------------------------- /algorithms/bandpass_filter/bandpass_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/bandpass_filter/bandpass_filter.m -------------------------------------------------------------------------------- /algorithms/int_grad_inv_proj/int_grad_inv_proj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/int_grad_inv_proj/int_grad_inv_proj.m -------------------------------------------------------------------------------- /algorithms/low_amp_mute/low_amp_mute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/low_amp_mute/low_amp_mute.m -------------------------------------------------------------------------------- /algorithms/low_amp_mute/low_amp_mute.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/low_amp_mute/low_amp_mute.m~ -------------------------------------------------------------------------------- /algorithms/median_filter/medfilt3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/median_filter/medfilt3.m -------------------------------------------------------------------------------- /algorithms/median_filter/medfilt3nt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/median_filter/medfilt3nt.m -------------------------------------------------------------------------------- /algorithms/purge_function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/purge_function.sh -------------------------------------------------------------------------------- /algorithms/purge_function.sh~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/purge_function.sh~ -------------------------------------------------------------------------------- /algorithms/time_balence/time_balence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/time_balence/time_balence.m -------------------------------------------------------------------------------- /algorithms/time_balence/time_balence.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/time_balence/time_balence.m~ -------------------------------------------------------------------------------- /algorithms/time_balence/time_balence_stk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/time_balence/time_balence_stk.m -------------------------------------------------------------------------------- /algorithms/time_balence/time_balence_stk.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/time_balence/time_balence_stk.m~ -------------------------------------------------------------------------------- /algorithms/trim_calculation/trim_calculation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/trim_calculation/trim_calculation.m -------------------------------------------------------------------------------- /algorithms/trim_calculation/trim_calculation.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/trim_calculation/trim_calculation.m~ -------------------------------------------------------------------------------- /algorithms/trim_calculation/trim_shifts_calculate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/trim_calculation/trim_shifts_calculate.m -------------------------------------------------------------------------------- /algorithms/trim_calculation/trim_shifts_calculate.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/trim_calculation/trim_shifts_calculate.m~ -------------------------------------------------------------------------------- /algorithms/water_bottom_picker/water_bottom_picker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/water_bottom_picker/water_bottom_picker.m -------------------------------------------------------------------------------- /algorithms/water_bottom_picker/water_bottom_picker.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/water_bottom_picker/water_bottom_picker.m~ -------------------------------------------------------------------------------- /algorithms/wavelet_estimation/wavelet_avg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/wavelet_estimation/wavelet_avg.m -------------------------------------------------------------------------------- /algorithms/wavelet_estimation/wavelet_avg.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/wavelet_estimation/wavelet_avg.m~ -------------------------------------------------------------------------------- /algorithms/wavelet_estimation/wavelet_estimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/wavelet_estimation/wavelet_estimation.m -------------------------------------------------------------------------------- /algorithms/wavelet_estimation/wavelet_estimation.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/algorithms/wavelet_estimation/wavelet_estimation.m~ -------------------------------------------------------------------------------- /compile/compile_function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/compile/compile_function.m -------------------------------------------------------------------------------- /dir/directory_scan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/dir/directory_scan.m -------------------------------------------------------------------------------- /dir/directory_scan.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/dir/directory_scan.m~ -------------------------------------------------------------------------------- /dir/sort_nat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/dir/sort_nat.m -------------------------------------------------------------------------------- /dir/sort_nat.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/dir/sort_nat.m~ -------------------------------------------------------------------------------- /extra/meta_data_2d_smo_xy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/extra/meta_data_2d_smo_xy.m -------------------------------------------------------------------------------- /extra/meta_data_2d_smo_xy.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/extra/meta_data_2d_smo_xy.m~ -------------------------------------------------------------------------------- /extra/perl_matlab_par_for.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/extra/perl_matlab_par_for.pl -------------------------------------------------------------------------------- /extra/perl_matlab_par_for.pl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/extra/perl_matlab_par_for.pl~ -------------------------------------------------------------------------------- /node/node_segy_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/node/node_segy_read.m -------------------------------------------------------------------------------- /node/node_segy_write.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/node/node_segy_write.m -------------------------------------------------------------------------------- /node/node_slurm_submit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/node/node_slurm_submit.m -------------------------------------------------------------------------------- /plot_qc/segy_plot_live_blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/plot_qc/segy_plot_live_blocks.m -------------------------------------------------------------------------------- /plot_qc/wavelet_plot_norm_inversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/plot_qc/wavelet_plot_norm_inversion.m -------------------------------------------------------------------------------- /readme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/readme.m -------------------------------------------------------------------------------- /readme.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/readme.m~ -------------------------------------------------------------------------------- /scan_segy/gather_compress_ilxl_bytes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/gather_compress_ilxl_bytes.m -------------------------------------------------------------------------------- /scan_segy/gather_compress_ilxl_bytes_offset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/gather_compress_ilxl_bytes_offset.m -------------------------------------------------------------------------------- /scan_segy/segy_index_byte_finder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/segy_index_byte_finder.m -------------------------------------------------------------------------------- /scan_segy/segy_make_blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/segy_make_blocks.m -------------------------------------------------------------------------------- /scan_segy/segy_make_job.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/segy_make_job.m -------------------------------------------------------------------------------- /scan_segy/segy_make_structure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/segy_make_structure.m -------------------------------------------------------------------------------- /scan_segy/segy_read_binary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/segy_read_binary.m -------------------------------------------------------------------------------- /scan_segy/select_live_blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/select_live_blocks.m -------------------------------------------------------------------------------- /scan_segy/trace_compress_ilxl_bytes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/trace_compress_ilxl_bytes.m -------------------------------------------------------------------------------- /scan_segy/trace_compress_ilxl_bytes.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalysePrestackSeismic/APS_Release/HEAD/scan_segy/trace_compress_ilxl_bytes.m~ --------------------------------------------------------------------------------