Cesium-如何计算点击位置周围指定区域的最高点、最低点、平均高度?
Cesium- How to calculate highest point, lowest point, average altitude in a specified area around the click position?
我已经成功计算出用户在 cesium 中点击的位置的高度,但我的下一步有点复杂。我想要做的是,当用户在地球上的某个点点击任何缩放级别时,我想计算点击位置周围的最高点、最低点和平均高度(比如 1000 米的圆形区域)。我应该怎么做,有什么想法吗?
我通过使用双线性插值找到正方形区域中的所有 LatLng 解决了这个问题,然后使用 Cesium 的示例地形来查询每个点的高度信息。以下是我遵循的步骤:
- 在 google 地图 API 中使用球形工具在单击位置周围找到方形区域的角点,如下所示:
var northwest = google.maps.geometry.spherical.computeOffset(center, radius * Math.sqrt(2.0), 135);
var northeast = google.maps.geometry.spherical.computeOffset(center, radius * Math.sqrt(2.0), 45);
var southwest = google.maps.geometry.spherical.computeOffset(center, radius * Math.sqrt(2.0), 225);
var southeast = google.maps.geometry.spherical.computeOffset(center, radius * Math.sqrt(2.0), 315);
- 然后使用双线性插值找到正方形区域内的点。您可以使用 spherical utils
interpolate
方法来避免额外的 work.Like 这个:google.maps.geometry.spherical.interpolate(latlng1, latlng2, fraction);
- 之后使用 Cesium 的示例地形找到上一步计算的所有点的高度信息。
- 现在您可以轻松计算出最高、最低和平均身高。
我已经成功计算出用户在 cesium 中点击的位置的高度,但我的下一步有点复杂。我想要做的是,当用户在地球上的某个点点击任何缩放级别时,我想计算点击位置周围的最高点、最低点和平均高度(比如 1000 米的圆形区域)。我应该怎么做,有什么想法吗?
我通过使用双线性插值找到正方形区域中的所有 LatLng 解决了这个问题,然后使用 Cesium 的示例地形来查询每个点的高度信息。以下是我遵循的步骤:
- 在 google 地图 API 中使用球形工具在单击位置周围找到方形区域的角点,如下所示:
var northwest = google.maps.geometry.spherical.computeOffset(center, radius * Math.sqrt(2.0), 135); var northeast = google.maps.geometry.spherical.computeOffset(center, radius * Math.sqrt(2.0), 45); var southwest = google.maps.geometry.spherical.computeOffset(center, radius * Math.sqrt(2.0), 225); var southeast = google.maps.geometry.spherical.computeOffset(center, radius * Math.sqrt(2.0), 315);
- 然后使用双线性插值找到正方形区域内的点。您可以使用 spherical utils
interpolate
方法来避免额外的 work.Like 这个:google.maps.geometry.spherical.interpolate(latlng1, latlng2, fraction);
- 之后使用 Cesium 的示例地形找到上一步计算的所有点的高度信息。
- 现在您可以轻松计算出最高、最低和平均身高。