Skip to content

Julia tools to read, write and process seismic data

License

Notifications You must be signed in to change notification settings

joaomedeiros/Seismic.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Seismic.jl

Build Status

This module provides tools to read, write, process, and plot 3D reflection seismic data. [//]: # (The documentation can be found here.)

Installation

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.

Basic usage

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:

plot1

For developers: contributing to the package

If you want to fork the repository and contribute to Seismic.jl, please read Modifications.md and follow the guidelines.

About

Julia tools to read, write and process seismic data

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Jupyter Notebook 96.7%
  • Julia 2.4%
  • Other 0.9%