In [1]:
using PyPlot,Seismic
In [2]:
# Download from SEG repository at AWS..
# https://wiki.seg.org/wiki/Teapot_dome_3D_survey
download("http://s3.amazonaws.com/teapot/npr3_gathers.sgy","npr3_gathers.sgy")
Out[2]:
In [4]:
SegyToSeis("npr3_gathers.sgy","npr3_gathers.seis");
In [5]:
SeisGeometry("npr3_gathers.seis",ang=90,omx=788937,omy=938845,dmx=110,dmy=110,oh=0,oaz=0,dh=420,daz=45)
In [6]:
h = SeisReadHeaders("npr3_gathers.seis")
im1 = SeisPlotCoordinates(h,style="sxsygxgy")
im2 = SeisPlotCoordinates(h,style="fold",cmap="jet",vmin=0,vmax=50,aspect="auto",xlabel="imx",ylabel="imy")
Out[6]:
In [ ]: