Modified for extended class MoMw of object magntitude. MoMw returns pick dictionary containing individual corner frequencies, w0-values, seismic moments and moment magnitudes.
This commit is contained in:
parent
46cbe96a43
commit
c227b6499e
20
autoPyLoT.py
20
autoPyLoT.py
@ -139,8 +139,9 @@ def autoPyLoT(inputfile):
|
|||||||
# get latest NLLoc-location file if several are available
|
# get latest NLLoc-location file if several are available
|
||||||
nllocfile = max(glob.glob(locsearch), key=os.path.getctime)
|
nllocfile = max(glob.glob(locsearch), key=os.path.getctime)
|
||||||
# calculating seismic moment Mo and moment magnitude Mw
|
# calculating seismic moment Mo and moment magnitude Mw
|
||||||
M0Mw(wfdat, None, None, None, nllocfile, picks, \
|
finalpicks = M0Mw(wfdat, None, None, parameter.getParam('iplot'), \
|
||||||
parameter.getParam('rho'), parameter.getParam('vp'))
|
nllocfile, picks, parameter.getParam('rho'), \
|
||||||
|
parameter.getParam('vp'), parameter.getParam('invdir'))
|
||||||
else:
|
else:
|
||||||
print("autoPyLoT: No NLLoc-location file available!")
|
print("autoPyLoT: No NLLoc-location file available!")
|
||||||
print("No source parameter estimation possible!")
|
print("No source parameter estimation possible!")
|
||||||
@ -177,8 +178,9 @@ def autoPyLoT(inputfile):
|
|||||||
nlloccounter = maxnumit
|
nlloccounter = maxnumit
|
||||||
|
|
||||||
# calculating seismic moment Mo and moment magnitude Mw
|
# calculating seismic moment Mo and moment magnitude Mw
|
||||||
finalpicks = M0Mw(wfdat, None, None, None, nllocfile, picks, \
|
finalpicks = M0Mw(wfdat, None, None, parameter.getParam('iplot'), \
|
||||||
parameter.getParam('rho'), parameter.getParam('vp'))
|
nllocfile, picks, parameter.getParam('rho'), \
|
||||||
|
parameter.getParam('vp'), parameter.getParam('invdir'))
|
||||||
else:
|
else:
|
||||||
print("autoPyLoT: No NLLoc-location file available! Stop iteration!")
|
print("autoPyLoT: No NLLoc-location file available! Stop iteration!")
|
||||||
##########################################################
|
##########################################################
|
||||||
@ -236,8 +238,9 @@ def autoPyLoT(inputfile):
|
|||||||
# get latest NLLOc-location file if several are available
|
# get latest NLLOc-location file if several are available
|
||||||
nllocfile = max(glob.glob(locsearch), key=os.path.getctime)
|
nllocfile = max(glob.glob(locsearch), key=os.path.getctime)
|
||||||
# calculating seismic moment Mo and moment magnitude Mw
|
# calculating seismic moment Mo and moment magnitude Mw
|
||||||
M0Mw(wfdat, None, None, None, nllocfile, picks, \
|
finalpicks = M0Mw(wfdat, None, None, parameter.getParam('iplot'), \
|
||||||
parameter.getParam('rho'), parameter.getParam('vp'))
|
nllocfile, picks, parameter.getParam('rho'), \
|
||||||
|
parameter.getParam('vp'), parameter.getParam('invdir'))
|
||||||
else:
|
else:
|
||||||
print("autoPyLoT: No NLLoc-location file available!")
|
print("autoPyLoT: No NLLoc-location file available!")
|
||||||
print("No source parameter estimation possible!")
|
print("No source parameter estimation possible!")
|
||||||
@ -274,8 +277,9 @@ def autoPyLoT(inputfile):
|
|||||||
nlloccounter = maxnumit
|
nlloccounter = maxnumit
|
||||||
|
|
||||||
# calculating seismic moment Mo and moment magnitude Mw
|
# calculating seismic moment Mo and moment magnitude Mw
|
||||||
finalpicks = M0Mw(wfdat, None, None, None, nllocfile, picks, \
|
finalpicks = M0Mw(wfdat, None, None, parameter.getParam('iplot'), \
|
||||||
parameter.getParam('rho'), parameter.getParam('vp'))
|
nllocfile, picks, parameter.getParam('rho'), \
|
||||||
|
parameter.getParam('vp'), parameter.getParam('invdir'))
|
||||||
else:
|
else:
|
||||||
print("autoPyLoT: No NLLoc-location file available! Stop iteration!")
|
print("autoPyLoT: No NLLoc-location file available! Stop iteration!")
|
||||||
##########################################################
|
##########################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user