HashMap<String,String> m = new HashMap<String,String>();
if (featureName.equals(CURRENT_MOTION))
m.put(CURRENT_MOTION,"Running"); //TODO maybe use clustering for user motion
else
Log.e(TAG, "There is no motion feature called " + featureName);
return (Map) m;