Skip to content

Plotting tools for SeismicJulia project

License

Notifications You must be signed in to change notification settings

fercarozzi/SeisPlot.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SeisPlot.jl

Build Status

This package contains plotting tools for SeismicJulia project.

At the moment, it is updated and tested against Julia v1.

Installation

To use this package you must first install the Julia programming language. The package uses the Julia PyPlot and PyCall packages. Then, run the Julia application and type, at the prompt

julia>using Pkg
julia>Pkg.add("SeisPlot")
julia>using SeisPlot

If you use the SeismicJulia project, please cite the following paper

@article{stanton2016efficient,
  title={Efficient geophysical research in Julia},
  author={Stanton, Aaron and Sacchi, Mauricio D},
  journal={CSEG GeoConvention 2016},
  pages={1--3},
  year={2016}
}

Basic usage

For SeisMain, please refer here.

The following example produces the figure below.

using SeisPlot
using SeisMain 
download("http://seismic.physics.ualberta.ca/data/small_stack.su","small_stack.su");
SegyToSeis("small_stack.su","small_stack",format="su",input_type="ieee");
nt = size(d,1);
dt = h[1].d1;

plotpar = Dict(:xlabel=>"X",:dx=>1,
           :ylabel=>"Time",:yunits=>"(seconds)",:oy=>0,:dy=>h[1].d1,
           :cmap=>"PuOr",:fignum=>1,
           :title=>"small_stack.su");
SeisPlot(d; style="overlay",plotpar...);

For developers: contributing to the project

  • New at GitHub? These basic commands and this dictionary might help.
  • This tutorial provides the basics steps you need to follow in order to fork the main repository, change the source code in your forked repository, commit the changes, and make pull requests using GitHub.
  • For contributions to the package, please follow the general guidelines given here: Modifications.md.

About

Plotting tools for SeismicJulia project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Julia 100.0%