Skip to main content

Plotting of seismic data

Project description

seisplot

Plotting of seismic data using variable-density or variable-area wiggle displays. Plotting of amplitude and phase spectra. Creation of animations and crossplots using arbitrary trace header mnemonics.

Description

The seisplot module provides a single, highly flexible method plot() to display seismic data. Methods toggle() and wipe() can be used to create animations that can be saved as images or movies. Method spectrum() can be used to display amplitude and phase spectra of seismic data. Method crossplot() can be used to plot one trace header mnemonic against another one, possibly colored by a third mnemonic. All methods are highly flexible and displays can be easily adjusted via optional parameters.

The module was designed to get decent displays of seismic data in a way that is more convenient than going through many individual Matplotlib function calls explicitly. However, if required Matplotlib methods can also be called directly. The code is pure Python and kept deliberately simple to get students participating our Geophysics classes and exercises at university going with Python and seismic data.

Key features

  • Variable-density image plots.
  • Variable-area wiggle plots.
  • Highly configurable settings like colors, line widths, colorbars, labels, axis ticks, grid lines, etc.
  • Animated toggles between two or more seismic image plots.
  • Animated wipes between two seismic image plots.
  • Amplitude or phase spectrum plots.
  • Crossplots of arbitrary trace header mnemonics, including histograms.
  • Special colormaps.

Image plot Wiggle plot Velocity plot Fielddata plot Toggle plot Wipe plot Spectrum plot Crossplot

Getting Started

Dependencies

Required: numpy, matplotlib

Optional: pandas (if trace headers for crossplots are stored in DataFrames), numba

Installation

Install from PyPI:

$> pip install seisplot

Install directly from gitlab:

$> pip install git+https://gitlab.kit.edu/thomas.hertweck/seisplot.git

Editable install from source:

This version is intended for experts who would like to test the latest version or make modifications. Normal users should prefer to install a stable version.

$> git clone https://gitlab.kit.edu/thomas.hertweck/seisplot.git

Once you acquired the source, you can install an editable version of seisplot with:

$> cd seisplot
$> pip install -e .

Brief tutorial

For a demonstration of various features and much more, please visit the "examples" folder in the repository where several Jupyter notebooks (tutorials) are available.

Plotting seismic data (for instance, read with our seisio package and therefore available as Numpy structured array including trace headers) can be as simple as:

import seisplot

fig, ax = seisplot.plot(data, haxis="offset", width=4, height=6,
                        vlabel="Time (s)", hlabel="Offset (m)",
                        vmajorticks=0.2, vminorticks=0.1,
                        hminorticks=500, vgrid="major")

The variables fig and ax are standard Matplotlib figure and axis handles that can be used to tweak the display further. You could also create those first using fig, ax = plt.subplots(1, 1) and pass them to the plot() method. In this way, it is possible to, for instance, create several seismic displays in one figure, or create displays that share the y-axis (usually "time").

A display toggle can, for instance, be produced in the following way:

ani, fig, ax = seisplot.toggle([data_1, data_2, data_diff],
                               interval=1000, repeat_delay=0,
                               hlabel="offset (m)", vlabel="time (s)")

The returned animation-artist object can be used to save an animated image or a movie.

An animated wipe can, for instance, be produced in the following way:

ani, fig, ax = seisplot.wipe(data_1, data_2, blit=True,
                             nwipe=30, wipecolor="blue",
                             interval=5, repeat_delay=0,
                             hlabel="offset (m)", vlabel="time (s)")

Again, the returned animation-artist object can be used to save an animated image or a movie.

Plotting an amplitude spectrum of seismic data (for instance, read with seisio) can be as simple as:

win = np.hamming
fig, ax = seisplot.spectrum(data, amplitude=True, window=win, scale="dB",
                            hlabel="Frequency (Hz)", vlabel="Magnitude (dB)",
                            vgrid="major", hgrid="major")

Here, a Hamming window is applied to the data before performing the Fourier transform, and the amplitude spectrum is converted to "dB" before being plotted. An unwrapped phase spectrum displayed in degrees could be obtained in the following way:

fig, ax = seisplot.spectrum(data, phase=True, unwrap=True, degree=True,
                            hlabel="Frequency (Hz)", vlabel="Phase (deg)",
                            linewidth=2, title="Unwrapped phase spectrum")

These methods produce similar results to Matplotlib's magnitude_spectrum(), phase_spectrum() and angle_spectrum() functions but have more options. In case of entire gathers, the spectrum is averaged over all traces.

The following shows an exemplary command to create a crossplot of inline vs. crossline colored by the total statics value of each trace stored in the trace header "tstat".

fig, ax = seisplot.crossplot(data, hkey="xline", vkey="iline",
                             color_by="header", ckey="tstat",
                             hlabel="Crossline #", vlabel="Inline #",
                             markersize=5, equal_axes=True, colorbar=True,
                             colorbarlabel="Total statics (ms)")

As can be seen, all methods of seisplot use a similar syntax, which makes using this module quite convenient. Under the hood the different methods actually share most of the code.

Main author

Dr. Thomas Hertweck, geophysics@email.de

Citation

If you use the "seisplot" module and you find it useful, getting some feedback would be very much appreciated. If you would like to cite this module, please use, for instance:

Hertweck, T. (2025). seisplot: A Python library for visualisation of seismic data. Version 1.4.0. url: https://gitlab.kit.edu/thomas.hertweck/seisplot/ (visited on 10/04/2025).

Adjust year, version and last visited date as required. Here's a BibTeX entry:

@software{seisplot,
  author  = {Hertweck, Thomas},
  year    = {2025},
  title   = {seisplot: A {P}ython library for visualisation of seismic data},
  url     = {https://gitlab.kit.edu/thomas.hertweck/seisplot/},
  urldate = {2025-10-04},
  version = {1.4.0}
}

License

This project is licensed under the LGPL v3.0 License - see the LICENSE.md file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

seisplot-1.4.0.tar.gz (2.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

seisplot-1.4.0-py3-none-any.whl (2.1 MB view details)

Uploaded Python 3

File details

Details for the file seisplot-1.4.0.tar.gz.

File metadata

  • Download URL: seisplot-1.4.0.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for seisplot-1.4.0.tar.gz
Algorithm Hash digest
SHA256 49d1fb3d12a757948e88f87cce9289126b53f7ef70fa5b3633bf42c82e5a0555
MD5 4a678f1af6d71097678e02e11435397a
BLAKE2b-256 b060a206c1e380c8304ec82e3ffca166bef101326b9760a5248e444af4b22b51

See more details on using hashes here.

File details

Details for the file seisplot-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: seisplot-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for seisplot-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 93a200f5f1116eb88b47e7c58180a5784f340495c990f2971c946805805c0ed3
MD5 67e058e28fe245797ba6348b370b8b6a
BLAKE2b-256 795a880f806a9ee8e613d8447cc9405f78ba9ae2e813c5d6418c65311b74d17b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page