We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 64de479 + dfc2c7a commit bbc5bd2Copy full SHA for bbc5bd2
pylops/waveeqprocessing/seismicinterpolation.py
@@ -256,11 +256,7 @@ def SeismicInterpolation(
256
f"spat1axis and taxis for kind=%{kind}"
257
)
258
else:
259
- sampling = (
260
- np.abs(spataxis[1] - spataxis[1]),
261
- np.abs(spat1axis[1] - spat1axis[1]),
262
- np.abs(taxis[1] - taxis[1]),
263
- )
+ sampling = (dspat, dspat1, dt)
264
Pop = FFTND(dims=dims, nffts=nffts, sampling=sampling)
265
Pop = Pop.H
266
@@ -271,10 +267,7 @@ def SeismicInterpolation(
271
267
f"and taxis for kind={kind}"
272
268
273
269
274
275
276
277
270
+ sampling = (dspat, dt)
278
Pop = FFT2D(dims=dims, nffts=nffts, sampling=sampling)
279
280
SIop = Rop * Pop
0 commit comments