Skip to content

Commit

Permalink
fixed polarity of picks
Browse files Browse the repository at this point in the history
  • Loading branch information
basaks committed Sep 18, 2017
1 parent 94a9fe2 commit 54f8535
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ omit =
# omit everything in
# seismic/tasks/*
# omit these files
seismic/pslog.py
seismic/scripts/event.py

[report]
# Regexes for lines to exclude from consideration
Expand Down
3 changes: 1 addition & 2 deletions seismic/pickers.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
AGENCY_ID = 'GA'
log = logging.getLogger(__name__)

# TODO: check polarity definition with Alexei
PickPolarityMap = {'D': "positive", 'C': "negative", '': "undecidable"}
PickPolarityMap = {'C': "positive", 'D': "negative", '': "undecidable"}
PY3 = (sys.version_info[0] == 3)


Expand Down

0 comments on commit 54f8535

Please sign in to comment.