...
for AttributeName in MyFMEObject.AllAttributeNames()
if AttributeName[:6]!='LIST_'
MyFMEObject.setAttribute("MAX_"+ParamAttributeName,-1)
MyFMEObject.setAttribute("MIN_"+ParamAttributeName,1000000)
for AttributeName in MyFMEObject.AllAttributeNames()
if AttributeName[:6]=='LIST_'
CalcMaxMin(AttributeName[-8:])
MyFMEObject.setAttribute("MAX_"+ParamAttributeName,-1)
MyFMEObject.setAttribute("MIN_"+ParamAttributeName,1000000)
MyFMEObject.removeAttribute(AttributeName)
def CalcMaxMin(ParamObject, ParamAttributeName):
localValue=ParamObject.getAttribute(ParamAttributeName)
localMaxValue=ParamObject.getAttribute("MAX_"+ParamAttributeName)
localMinValue=ParamObject.getAttribute("MIN_"+ParamAttributeName)
if localValue<localMinValue:
ParamObject.setAttribute("MIN_"+ParamAttributeName,localValue)
if localValue>localMaxValue:
ParamObject.setAttribute("MAX_"+ParamAttributeName,localValue)
it is shortened and only a not tested example, in reality I split the listnames in parts (cause it is not a list in python- style, is it?) and do some more.
from Attribute MYVALUE1, MYVALUE2 ... I created
MAX_MYVALUE1, MIN_MYVALUE1, MAX_VALUE2 ...
how can I publish this for next transformer, if I do not know at design time, what Attributes I get?