经纬度xyz坐标转换
http://blog.csdn.net/silangquan/article/details/41577133
就是将球坐标换成笛卡尔坐标,先说公式,记维度为phi,经度为theta,地球半径r(简化地球为球),
x=r*sin(phi)*cos(theta);
y=r*sin(phi)*sin(theta);
z=r*cos(phi).
请自己作图看看球体任意半径(以角度表示他的状态)向x,y,z轴投影的结果就可以看出