Skip to content

Commit

Permalink
fix the sampling issue for 3D
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirMardan committed Dec 17, 2024
1 parent 86c38db commit dfc2c7a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions pylops/waveeqprocessing/seismicinterpolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,11 +256,7 @@ def SeismicInterpolation(
f"spat1axis and taxis for kind=%{kind}"
)
else:
sampling = (
np.abs(spataxis[1] - spataxis[1]),
np.abs(spat1axis[1] - spat1axis[1]),
np.abs(taxis[1] - taxis[1]),
)
sampling = (dspat, dspat1, dt)
Pop = FFTND(dims=dims, nffts=nffts, sampling=sampling)
Pop = Pop.H
else:
Expand Down

0 comments on commit dfc2c7a

Please sign in to comment.