计算具有一个坐标 + X 和 Y 和 Z 方向距离的新坐标



有一个真正的GPS点:

   <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>

我应该如何计算新点的坐标?

此链接中给出的解决方案工作正常。就我而言,数据提供者有问题,而不是公式有问题。

计算新的纵向,纬度从旧的 + n 米

最新更新