...
Note: The U32 data type cannot be translated to/from a FLOAT data type with complete accuracy unless the value is an integer between 0 and 16,777,216. FLOAT values, while having a large range, also have a limited precision of 23 bits. As a result numbers above this value will not resolve into an exact FLOAT value. For example, 16,777,216 or 16,777,217 when converted to FLOAT both resolve to the same number, 16,777,216. Literally, the number 16,777,217 does not exist in FLOAT as it cannot be represent by its limited precision. As the number increases towards the limit of a U32 (4,294,967,295) the quantity of "missing" values numbers will increase and the gaps between numbers that a FLOAT can represent will become wider. Apply both caution and logic to how you utilize U32 values.