Additional header information.

This commit is contained in:
Ludger Küperkoch 2017-02-28 14:59:21 +01:00
parent 7671b76f2f
commit 8bb5d9dd2c

View File

@ -14,7 +14,7 @@ __version__ = _getVersionString()
class NLLocError(EnvironmentError): class NLLocError(EnvironmentError):
pass pass
def export(picks, fnout): def export(picks, fnout, parameter):
''' '''
Take <picks> dictionary and exports picking data to a NLLOC-obs Take <picks> dictionary and exports picking data to a NLLOC-obs
<phasefile> without creating an ObsPy event object. <phasefile> without creating an ObsPy event object.
@ -24,9 +24,12 @@ def export(picks, fnout):
:param fnout: complete path to the exporting obs file :param fnout: complete path to the exporting obs file
:type fnout: str :type fnout: str
:param: parameter, all input information
:type: object
''' '''
# write phases to NLLoc-phase file # write phases to NLLoc-phase file
writephases(picks, 'NLLoc', fnout) writephases(picks, 'NLLoc', fnout, parameter)
def modify_inputs(ctrfn, root, nllocoutn, phasefn, tttn): def modify_inputs(ctrfn, root, nllocoutn, phasefn, tttn):