compare_shots

compare_shots(
    shot1,
    shot2,
    spacing=None,
    *,
    cmap='gray',
    side_by_side=False,
    chunksize=20,
    **kw,
)

Overlay or juxtapose two shot gathers for comparison.

Parameters

Name Type Description Default
shot1 array - like or SeisBlock or ShotRecord Gather data to compare. required
shot2 array - like or SeisBlock or ShotRecord Gather data to compare. required
spacing (float, float) Spacing applied when not deduced from the inputs. None
Back to top