Thoughts?
Thoughts?
I would multiply X by 0.1 and Y by 0.01, using AttributeCreator or ExpressionEvaluator.
Takashi
also remember that you can freely treat your numbers as strings in FME, so you can also use the StringConcatenator, etc to add digits at the end or the SubstringExtrator to split up any digit for further manipulation.
David
Kind regards,
Erik Jan Bodewitz
Vicrea
you could just use claculations: number + digit*pow(10,POSITION)
Maybe it is more comfortable use string operations:LEFT (NUMBER,7)&DIGIT&RIGHT(NUMBER,2)
Or u can split the number with no delimmiter and use list operations on it.