delrt_padding_segy.py
#
Check for vertical offsets in SEG-Y file(s) and apply zero padding. For this, the script uses the trace header keyword DelayRecordingTime and pads seismic traces with zeros to compensate variable recording starting times.
pad_trace_data(data, recording_delays, n_traces, dt, twt, verbosity=0)
#
Pad seismic trace data recorded in window mode with a fixed length and variable DelayRecordingTimes
.
This function reads the DelayRecordingTime from the trace headers and pads the data at top and bottom with zeros.
Parameters:
-
data
(ndarray
) –Amplitude array with samples (rows) and traces (columns). Transposed array read by segyio for numpy compatibility.
-
recording_delays
(ndarray
) –Array of DelayRecordingTimes for each trace in SEG-Y file [ms].
-
n_traces
(int
) –Number of traces in SEG-Y file.
-
dt
(float
) –Sampling interval [ms].
-
twt
(ndarray
) –Two way travel times (TWTT) of every sample in a trace.
Returns:
-
data_padded
(ndarray
) –Padded input data array in time dimension.
-
twt_padded
(ndarray
) –Updated TWTT that fit the expanded time dimension.
-
n_samples_padded
(int
) –New number of traces in SEG-Y file.
-
idx_delay
(ndarray
) –Trace indices where DelayRecordingTime changes.
-
min_delay
(int
) –Minimum DelayRecordingTime in SEG-Y file [ms].
-
max_delay
(int
) –Maximum DelayRecordingTime in SEG-Y file [ms].
Source code in pseudo_3D_interpolation\delrt_padding_segy.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
|
wrapper_delrt_padding_segy(in_path, args)
#
Pad DelayRecordingTime delrt
for single SEG-Y file.
Source code in pseudo_3D_interpolation\delrt_padding_segy.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|