static_correction_segy.py
#
Compensate static on seismic profile(s).
Using either "SourceWaterDepth" (mode: swdep
) or first positive amplitude peak of seafloor reflection (mode: amp
).
get_static(data, kind='diff', interp_kind='cubic', win_mad=None, win_sg=7, limit_perc=99, limit_samples=10, limit_by_MAD=False, limit_depressions=False)
#
Compute static (as deviation from global reference level) for each trace. Input data array is first filtered and interpolated to remove detecion outliers. Depending on selected option, the static will be calculated as:
diff
: difference between filtered input data (removed outlier) and Savitzky-Golay lowpass filter resultderiv
: output of Savitzky-Golay hihgpass filter (2nd derivative)
Parameters:
-
data
(ndarray
) –Input data array (1D).
-
kind
(str
, default:'diff'
) –Static calculation option (default: 'diff').
-
interp_kind
(str
, default:'cubic'
) –Interpolation type used for scipy.interpolate.interp1d (default: 'cubic').
-
win_mad
(int
, default:None
) –Windwow length used for initial data filtering (in traces). If None, it will about 5% of the input data length (at least 7 traces!).
-
win_sg
(int
, default:7
) –Window length for Savitzky-Golay filter (in traces). It should be slightly larger than the period of the observed static amplitudes (default: 7).
-
limit_perc
–Clip calculated static shift (in samples) using np.percentile with given value (default: 99).
-
limit_samples
–Clip calculated static shift (in samples) using user-specified number of samples (default: 10).
-
limit_by_MAD
((float, optional)
, default:False
) –Clip calculated static shift (in samples) using median absolute deviation (MAD) multiplied by
limit_by_MAD
. If true,limit_by_MAD
defaults to 3 (-> 3-sigma rule of thumb). -
limit_depressions
(tuple(float, float, float)
, default:False
) –Account for seafloor depressions that represent significant topographic changes over short distances by limiting the maximum vertical shift using a linear function from depression center to flanks, e.g. limits: 10, 8, 6, 4, 6, 8, 10 (max samples shift).
Returns:
-
static
(ndarray
) –Computed static as deviation from reference level.
Source code in pseudo_3D_interpolation\static_correction_segy.py
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 155 156 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 252 253 254 255 256 |
|
compensate_static(data, static, dt=None, units='ms', cnv_d2s=False, v=1500, verbosity=1)
#
Apply computed static offsets to seismic traces.
Parameters:
-
data
(ndarray
) –2D array of input seismic traces (samples x traces).
-
static
(ndarray
) –1D array of static offsets (per trace).
-
dt
(float
, default:None
) –Sampling interval in specified units (default: milliseconds).
-
units
(str
, default:'ms'
) –Time unit (for
dt
) (default:s
). -
cnv_d2s
(bool
, default:False
) –Convert static offset provided as depth (in m) to samples (default:
False
). -
v
(int
, default:1500
) –Sound velocity (m/s) for depth/time/samples conversion. Only used if
cnv_d2s
is True.
Returns:
-
ndarray(s)
–Compensated seismic section (and # of samples if converted).
Source code in pseudo_3D_interpolation\static_correction_segy.py
wrapper_static_correction_segy(in_path, args)
#
Apply static correction to single SEG-Y file.
Source code in pseudo_3D_interpolation\static_correction_segy.py
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 |
|