This module provides tools to read, write, process, and plot 3D reflection seismic data. [//]: # (The documentation can be found here.)
To use this package you must first install the Julia programming language. Once you have Julia you can download and install the Seismic package by typing Pkg.add("Seismic")
on the Julia command line.
Once you have installed the package you can type using Seismic
to start using
the functions. For example
using PyPlot, Seismic;
download("http://certmapper.cr.usgs.gov/nersl/NPRA/seismic/1979/616_79/PROCESSED/616_79_PR.SGY", "616_79_PR.SGY");
SegyToSeis("616_79_PR.SGY", "616_79_PR.seis");
d, h, e = SeisRead("616_79_PR.seis");
SeisPlot(d[1:500, :], e, cmap="PuOr", wbox=9);
will produce this figure:
If you want to fork the repository and contribute to Seismic.jl:
- 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.