数字格式缩短经度和纬度?

时间:2012-06-13 21:19:02

标签: coldfusion coldfusion-9

ORM property name =“poiLat”ormtype =“big_decimal”notnull =“true”persistent = true precision =“16”scale =“14”; property name =“poiLong”ormtype =“big_decimal”notnull =“true”persistent = true precision =“16”scale =“14”;

下面的输入会因为超出属性设置的长度而产生错误。如果超过这个值,我可以如何在ColdFusion中缩短这些值。

34.037864685058594

-118.27606201171875

local.poiEntity.setpoiLat(local.NewlatO);
local.poiEntity.setpoiLong(local.NewlonO);

1 个答案:

答案 0 :(得分:1)

好的,我想我有这个

轮(local.NewlatO * 10 ^ 6)/ 10 ^ 6;

这适用于6个地方