assocamo 
Logical Entity Name  assocamo 
Default Table Name  assocamo 
Definition  Data associating amplitudes with origins 

assocamo Attributes 
Attribute/Logical Rolename  Domain  Datatype  NULL  Definition 
orid(PK)(FK)    NUMERIC(15, 0)  NO  Origin identification. Each origin is assigned a unique positive integer which identifies it in the database. The orid is used to identify one of the many hypotheses of the actual location of the event 
ampid(PK)(FK)    NUMERIC(15, 0)  NO  Amplitude identification. Each amplitude is assigned a unique positive integer identifying it. This number is used in the AssocAmO relation along with the origin identifier to link Amp and Origin. This number is used also in the AssocAmM relation along with the magnitude identifier to link Amp and Netmag 
commid    NUMERIC(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 
auth    VARCHAR(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    VARCHAR(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 
delta    NUMERIC(5, 1)  YES  Source-receiver distance. This attribute is the arc length, over the earth’s surface, of the path the seismic phase follows from source to receiver. The location of the origin is specified in the origin record referenced by the attribute orid. The attribute arid points to the record in the Arrival relation that identifies the receiver. The value of the attribute can exceed 180 degrees, it can even exceed 360 degrees, the geographic distance between source and receiver is delta mod(180) 
seaz    NUMERIC(4, 1)  YES  Station to event azimuth. This attribute is calculated from the station and event locations. It is measured clockwise from North 
rflag    VARCHAR(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 

assocamo Relationships 
Parent Entity  Child Entity  Type  Foreign Keys 
amp  assocamo  Identifying  ampid 
origin  assocamo  Identifying  orid 
remark  assocamo  Non-Specific   

assocamo Check Constraints 
Check Constraint Name  CheckConstraint 
assocamo01  seaz >= 0.0 and seaz <= 360.0 
assocamo02  delta >= 0.0 
assocamo03  rflag in ('a','h','f','A','H','F')