Skip to content

Commit

Permalink
demean type fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
xtyangpsp committed Jan 11, 2022
1 parent bdd24b4 commit c445cdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seisgo/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ def copy(self,dataless=False):
return cout

def stack(self,win_len=None,method='linear',overwrite=True,ampcut=20,verbose=False,
dmean=True,stack_par=None):
demean=True,stack_par=None):
'''
This function stacks the cross correlation data. It will overwrite the
[data] attribute with the stacked trace, if overwrite is True. Substack will
Expand All @@ -676,7 +676,7 @@ def stack(self,win_len=None,method='linear',overwrite=True,ampcut=20,verbose=Fal
it returns the stacked data as a vector. Default: True.
ampcut: used in QC, only stack traces that satisfy ampmax<ampcut*np.median(ampmax)).
Default: 20. Use None to disable cutting by amplitudes.
deman: demean before stacking. Default is True.
demean: demean before stacking. Default is True.
stack_par: Defautl None. parameter dictionary to conduct stacking.
RETURNS:
Expand Down

0 comments on commit c445cdc

Please sign in to comment.