coda 
Logical Entity Name  coda 
Default Table Name  coda 
Definition  Summary information on a coda 

coda Columns 
ColumnName  Domain  Datatype  NULL  Definition 
coid(PK)    NUMBER(15, 0)  NO  Coda identification. Each coda is assigned a unique positive integer which identifies it in the database 
commid    NUMBER(15, 0)  YES  Comment identification. This is a key used to point to free-form comments entered in the Remark relation. These comments store additional information about a tuple in another relation. Within the Remark relation, there may be many tuples with the same commid and different lineno, but the same commid will appear in only one other tuple among the rest of the relations in the database 
sta    VARCHAR2(6)  NO  Station code. This is the common code-name of a seismic observatory. Generally only three or four characters are used 
net    VARCHAR2(8)  YES  Unique network identifier. This character string is the name of a seismic network 
auth    VARCHAR2(15)  NO  The auth field specifies the source of the information. This may be a network identifier (FDSN or otherwise), or any other string indicating the source of the information in the record 
subsource    VARCHAR2(8)  YES  A second identifier to specify the system or process that derived the data. e.g., the origin's AUTH is CI, but the subsource (the solution) was computed by JIGGLE 
channel    VARCHAR2(8)  YES  Channel name 
channelsrc    VARCHAR2(8)  YES  Domain for channel. This specifies what naming convention is used for the channel name (i.e. SEED, USGS, etc.) 
seedchan    VARCHAR2(3)  YES  SEED channel name. The first character denotes the band code, the second for the instrument code and the third represents the component code 
location    VARCHAR2(2)  YES  Describes the individual sites on an array station, operated by the same network operator 
codatype    VARCHAR2(3)  YES  Coda type 
afix    NUMBER(7, 4)  YES  Nominal coda amplitude 
afree    NUMBER(7, 4)  YES  Free amplitude 
qfix    NUMBER(7, 4)  YES  Fixed coda decay constant 
qfree    NUMBER(7, 4)  YES  Free decay 
tau    NUMBER(7, 4)  YES  Coda duration (F-P time) 
nsample    NUMBER(6, 0)  YES  Number of coda sample windows 
rms    NUMBER(5, 3)  YES  Square root of the sum of the squares of the coda residuals, divided by the number of observations 
durtype    VARCHAR2(3)  YES  Duration type 
iphase    VARCHAR2(8)  YES  Reported phase. This eight-character field holds the name initially given to a seismic phase. Standard seismological labels for the types of signals (or phases) are used (e.g., P, PKP, PcP, pP). Both upper and lower case letters are available and should be used when appropriate, for example, pP or PcP 
eramp    NUMBER(5, 3)  YES  Uncertainty in amplitude measurement 
units    VARCHAR2(4)  NO  Units of amplitude 
time1    NUMBER(10, 0)  YES  Time for pairs 
amp1    NUMBER(10, 0)  YES  Amplitude for pairs 
time2    NUMBER(10, 0)  YES  Time for pairs 
amp2    NUMBER(10, 0)  YES  Amplitude for pairs 
time3    NUMBER(10, 0)  YES  Time for pairs 
amp3    NUMBER(10, 0)  YES  Amplitude for pairs 
time4    NUMBER(10, 0)  YES  Time for pairs 
amp4    NUMBER(10, 0)  YES  Amplitude for pairs 
time5    NUMBER(10, 0)  YES  Time for pairs 
amp5    NUMBER(10, 0)  YES  Amplitude for pairs 
time6    NUMBER(10, 0)  YES  Time for pairs 
amp6    NUMBER(10, 0)  YES  Amplitude for pairs 
quality    NUMBER(2, 1)  YES  This attribute denotes the quality of an origin, an arrival, or a mechanism. 1.0 = good, 0.0 = bad 
datetime    NUMBER(25, 10)  YES  The date of associated with information in the record, in true epoch format 
algorithm    VARCHAR2(15)  YES  Algorithm used. This is a brief textual description of the algorithm used to derive coda data 
winsize    NUMBER(7, 4)  YES  Window over which waveform absolute amplitudes averaged 
rflag    VARCHAR2(2)  YES  This flag describes whether an observation was generated automatically, by a human, or has been finalized 
lddate    DATE  YES  Load date. Date and time that the record was created or last modified, in Oracle date datatype 

coda Foreign Keys 
Parent Table  Child Table  Type  Foreign Keys 
coda  assoccoo  Identifying  coid 
coda  assoccom  Identifying  coid 

coda Check Constraints 
Check Constraint Name  CheckConstraint 
coda01  afix >= 0.0 
coda02  afree >= 0.0 
coda03  amp1 > 0 
coda04  amp2 > 0 
coda05  amp3 > 0 
coda06  amp4 > 0 
coda07  amp5 > 0 
coda08  amp6 > 0 
coda09  codatype in ('P','S') 
coda10  coid > 0 
coda11  nsample >= 0 
coda12  rms >= 0.0 
coda13  time1 > 0 
coda14  time2 > 0 
coda15  time3 > 0 
coda16  time4 > 0 
coda17  time5 > 0 
coda18  time6 > 0 
coda19  rflag in ('a','h','f','A','H','F') 
coda20  quality >= 0.0 and quality <= 1.0