Skip to content

FrankLiu007/wiggle2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#wiggle2

Wiggle Plot for Seismic Data by liu qimin

Alt text

Introduction

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

Dependancy

Installation

From PyPI

pip install wiggle2

From source file

Download srouce file from releases page. Under the root directory, type:

python setup.py install

Ussage

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()

Problems

  1. Sometimes the plot takes too much time

About

seismic wiggle

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages