forked from crotwell/seisFile
-
Notifications
You must be signed in to change notification settings - Fork 0
Philip Crotwell edited this page May 18, 2015
·
1 revision
SeisFile supports both reading of binary SAC datafiles, as well as poles and zeros. SAC file related code is in the edu.sc.seis.seisFile.sac package.
SacTimeSeries sac = new SacTimeSeries(filename);
or
DataInput dis = ...
SacTimeSeries sac = new SacTimeSeries(dis)
and reading a polezero file:
SacPoleZero spz = new SacPoleZero(filename);