For example the value 1.7 is read as 1.7000000000000002.
I guess the json utility is using float data type that cannot store just a 1.7. It stores the closest possible value = 1.7000000000000002.
I need to round the value to get rid of the extra digits.
But I don't know the string representation of the value in the JSON file . So I don't know the scale of the value. The only possibility I have is to set a fixed number in the AttributeRounders decimal places.
This is highly irritating!
It would be better if the JSON reader tool would also return the scale of the float so I can round the value properly.
Or it would be nice if I could set the tools to return the string of the float value and I do the conversion into a number my self.
Do you know a workaround for this problem?