Skip to content

Commit

Permalink
Merge 2b57ec1 into 8e02d87
Browse files Browse the repository at this point in the history
  • Loading branch information
jkmacc-LANL committed Jul 12, 2016
2 parents 8e02d87 + 2b57ec1 commit 289a617
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions obspy/io/sac/header.py
Expand Up @@ -180,13 +180,13 @@
'gcarc': 'F Station to event great circle arc length (degrees).',
'lcalda': 'L TRUE if DIST AZ BAZ and GCARC are to be calculated '
'from st event coordinates.',
'iqual': '''I Quality of data [not currently used]:
'iqual': '''N Quality of data, as integers. Enum values listed:
* IGOOD (Good data)
* IGLCH (Glitches)
* IDROP (Dropouts)
* ILOWSN (Low signal to noise ratio)
* IOTHER (Other)''',
* IGOOD (45) (Good data)
* IGLCH (46) (Glitches)
* IDROP (47) (Dropouts)
* ILOWSN (48) (Low signal to noise ratio)
* IOTHER (44) (Other)''',
'isynth': '''I Synthetic data flag [not currently used]:
* IRLDTA (Real data)
Expand Down
2 changes: 1 addition & 1 deletion obspy/io/sac/sactrace.py
Expand Up @@ -929,7 +929,7 @@ def __init__(self, leven=True, delta=1.0, b=0.0, e=0.0, iztype='ib',
doc=HD.DOC['ievreg'])
ievtyp = property(_enumgetter('ievtyp'), _enumsetter('ievtyp'),
doc=HD.DOC['ievtyp'])
iqual = property(_enumgetter('iqual'), _enumsetter('iqual'),
iqual = property(_intgetter('iqual'), _intsetter('iqual'),
doc=HD.DOC['iqual'])
isynth = property(_enumgetter('isythn'), _enumsetter('isynth'),
doc=HD.DOC['isynth'])
Expand Down

0 comments on commit 289a617

Please sign in to comment.