In ArcGIS Pro, labelling the Float data type with Arcade label expressions displays incorrect values after the decimal point.
上次发布: August 2, 2019ArcGIS Pro
漏洞 ID 编号
BUG-000119080
已提交
December 30, 2018
上次修改时间
October 6, 2025
适用范围
ArcGIS Pro
找到的版本
2.2.4
操作系统
Windows OS
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
The Float data in the database table is a float value 1.509999. Unable to store as 1.51 in binary.
解决办法
Use VBScript, JScript or Python label expressions with the Float data type.
Create a new Double data type field and populate the desired values into it. Then, use the newly created Double data type field in the Arcade label expressions.
Use the following expression: text($feature.Scale_Float, "#.00").