This package contains plotting tools for SeismicJulia project.
At the moment, it is updated and tested against Julia v1.
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(PackageSpec(url="https://github.com/SeismicJulia/SeisPlot.jl.git"))
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}
}
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...);
- 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.