#wiggle2
Utility to plot seismic data, inspired by wiggle function. I provide more options, such as orientation, normalization method, scale. This tool used fillbetween and fillbetweenx in the matplotlib package
pip install wiggle2
Download srouce file from releases page. Under the root directory, type:
python setup.py install
from wiggle2 import wiggle
import numpy as np
import matplotlib.pyplot as plt
traces=[]
for i in range(0,50):
trace={"delta":0.1, "begin_time":5, "data":np.random.randn( 100)}
traces.append(trace)
wig=wiggle(traces, ori='v')
wig.plot_wiggle()
plt.show()
- Sometimes the plot takes too much time