Hello,
In some cases, JSONFormatter writes a decimal point number with the full precision of floating point numbers.
Example:
Source
{ "number" : 1.954, "string" : "1.954" }
Formatted by JSONFormetter (FME 2021.2.2)
{
"number" : 1.9540000000000002,
"string" : "1.954"
}
I think this document is desired in many cases.
{
"number" : 1.954,
"string" : "1.954"
}
Is there any way to prevent adding the excess decimal places?