0
有一個真正GPS點:計算具有一個新的座標,座標+在X,Y和Z方向上的距離
<GPS>
<latitude>36.1319779627</latitude>
<longitude>-115.154950231</longitude>
<altitude>621.5</altitude>
<heading>0.0</heading>
</GPS>
然後有基於距離從該真實GPS點上點的列表:
<control_point_list>
<control_point>
<X>-2310.41411189</X>
<Y>32.4828342845</Y>
<Z>-164.167976564</Z>
</control_point>
<control_point>
<X>-2322.09317395</X>
<Y>32.4422985598</Y>
<Z>-172.301188413</Z>
</control_point>
<control_point>
<X>-2332.96313438</X>
<Y>32.3349680574</Y>
<Z>-179.876134127</Z>
</control_point>
</control_point_list>
我該如何計算新點的座標?
到目前爲止您嘗試過什麼? – Selvin
我試過這個帖子的公式http://stackoverflow.com/questions/7477003/calculating-new-longtitude-latitude-from-old-n-meters但結果不準確,面積相同但不是真的 – mhsaeedi
new_latitude =緯度+(dy/r_earth)*(180/pi); new_longitude =經度+(dx/r_earth)*(180/pi)/ cos(緯度* pi/180); – mhsaeedi