我想将 5 米的距离转换为十进制度。我所在的纬度是 43.74738209789338 十进制度。
我想知道将其转录为通用脚本的数学公式。
我试过这个公式
double MetersToDecimalDegrees(double meters, double latitude)
{
return meters / (111.32 * 1000 * Math.Cos(latitude * (Math.PI / 180)));
}
但结果并不准确。我想得到 5 米,用这个公式我得到 6.91 米。
谢谢!!