嘿,我有一个简单的Haversine公式代码(没有径向转换),但它一直给我错误的语法错误。
我到处寻找,但无法找到任何解决方案。它应该工作!
import math
def distance(lat1, lat2, lon1, lon2)
a1= (math.sin(lat2 - lat1 / 2 ))
a2= (math.cos(lat1) * math.cos(lat2) * (math.sin(lon2 - lon1 / 2) **2 ))
a ** 2 = a1 + a2
b ** 2 = 1 - (a **2)
d= 2 * math.atan2(a, b)
return d
答案 0 :(得分:1)
我认为这应该是Python。 您必须将函数声明为
[DisplayName("Employee")] <- issue with this
interface IPerson
{ ...
...
}
:绝对需要缩进(请始终使用四个空格)。