From 2cbfb692353dd7ac27930590a4c0b47566eb3c78 Mon Sep 17 00:00:00 2001 From: Christoph Kords Date: Wed, 8 Jun 2011 13:56:21 +0000 Subject: [PATCH] user defined mapping didn't work because of misspelled variable in "mapIncremental" --- processing/post/postResults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processing/post/postResults b/processing/post/postResults index 0ba4028ae..3f089fc73 100755 --- a/processing/post/postResults +++ b/processing/post/postResults @@ -368,7 +368,7 @@ def mapIncremental(label, mapping, N, base, new): mapped = map(lambda x: x/orientationNorm, mapped) # ...renormalize quaternion else: try: - mapped = eval('map(%s,[N]*len(base),base,new)'%map) # map user defined function to colums in chunks + mapped = eval('map(%s,[N]*len(base),base,new)'%mapping) # map user defined function to colums in chunks except: mapped = ['n/a']*len(base)