From 9d5b7ad5ae69451ba6272f248fec44c65670c075 Mon Sep 17 00:00:00 2001 From: Marcel Paffrath Date: Tue, 22 Sep 2015 14:38:27 +0200 Subject: [PATCH] name change --- pylot/core/active/surveyUtils.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pylot/core/active/surveyUtils.py b/pylot/core/active/surveyUtils.py index ef29e3a9..6ba0aa9b 100644 --- a/pylot/core/active/surveyUtils.py +++ b/pylot/core/active/surveyUtils.py @@ -124,10 +124,7 @@ def exportFMTOMO(shot_dict, directory = 'FMTOMO_export', sourcefile = 'input_sf. for traceID in traceIDlist: if shot.getPick(traceID) is not None: pick = shot.getPick(traceID) * fmtomo_factor - ### MP MP + + - #delta = shot.getMistake(traceID) * fmtomo_factor - delta = 0.2 - ### MP MP - - + delta = shot.getPickError(traceID) * fmtomo_factor (x, y, z) = shot.getRecLoc(traceID) ttfile.writelines('%20s %20s %20s %10s %10s\n' %(getAngle(y), getAngle(x), (-1)*z, pick, delta)) LatAll.append(getAngle(y)); LonAll.append(getAngle(x)); DepthAll.append((-1)*z)