gpt4 book ai didi

android - 去掉6位后的经纬度小数部分

转载 作者:太空宇宙 更新时间:2023-11-03 11:40:43 24 4
gpt4 key购买 nike

我用这种格式得到纬度和经度

纬度23.132679999999997,经度72.20081833333333

但我想用这种格式

纬度 = 23.132680 和经度 72.200818

我怎样才能转换

最佳答案

double Latitude = 23.132679999999997;
int precision = Math.pow(10, 6);
double new_Latitude = double((int)(precision * Latitude))/precision;

这将只提供小数点后 6 位数字。

关于android - 去掉6位后的经纬度小数部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10599808/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com