能力值:
( LV2,RANK:10 )
|
-
-
2 楼
L比较简单
L=arctan(Y/X)
|
能力值:
( LV5,RANK:60 )
|
-
-
3 楼
N 知道吗??N不知道无法计算
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
经纬度和坐标公式?
|
能力值:
( LV2,RANK:10 )
|
-
-
5 楼
貌似我学卫星通信时遇到过这个公式
不记得了 :-)
|
能力值:
( LV2,RANK:10 )
|
-
-
6 楼
31: def self.xyz2blh(x,y,z,datum)
32: a = datum[0].to_f
33: f = 1.0/datum[1]
34: e2 = f * (2 - f)
35: l = Math.atan2(y,x)
36:
37: p = Math.sqrt(x**2+y**2)
38: r = Math.sqrt(p**2+z**2)
39: u = Math.atan2(z*((1-f)+e2*a/r),p)
40: b = Math.atan2(z*(1-f)+e2*a*Math.sin(u)**3,(1-f)*(p-e2*a*Math.cos(u)**3))
41:
42: he = p*Math.cos(b) + z*Math.sin(b) - a*Math.sqrt(1-e2*Math.sin(b)**2)
43:
44: b_deg = b / Deg2Rad
45: l_deg = l / Deg2Rad
46: return b_deg,l_deg,he
47: end
这是大地坐标转换问题,找本椭球大地测量方面的书看看就知道,不逆向可以逆出来的
|
|
|