Problem reading large numbers in MGJSON file
Hi. I regularly work with data files in Adobe's MGJSON format. I have detected a problem where large numbers are constrained to a lower limit in certain situations. Take this minimal file example: https://www.dropbox.com/s/r2pocu067skwgx6/mgjson.mgjson?dl=0
(by the way, shouldn't this forum accept uploading MGJSON files?)
Any large data values are constrained to 32768 or less. You would think this is just the largest number AE can read, but if we tweak the data outline and define a slightly different legal range, the values are read correctly:
- Changing the minimum legal value to 0 fixes the issue
- Adding a decimal point and a zero to the min and max legal values also fixes it
I'm not sure why AE needs to know the min and max values. I was just using the max value that can be repredented in a JSON file, but from now on I thin I will use the min and max occuring values to try and avoid this bug.
