The ElevationProfile widget in the 3D Viewer web app calculates the slope incorrectly for profile lines between 33 and 66 feet.
上次发布: November 3, 2021ArcGIS Online
漏洞 ID 编号
BUG-000140486
已提交
June 4, 2021
上次修改时间
August 6, 2025
适用范围
ArcGIS Online
找到的版本
9.2
操作系统
Windows OS
操作系统版本
10.0
状态
Known Limit
经开发团队审核,已确定此问题与不受 Esri 控制的软件的已知限制有关。 问题的“其他信息”部分可能包含进一步说明。
附加信息
The slope values appear inaccurate when working with short elevation profiles. Higher resolution profiles are downsampled to a 10m (32.8ft) sampling distance before the slope is calculated. Refer to https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLine.html#statistics
This is because the elevation preview model (EPW) was initially created for measuring profiles of larger areas with coarser elevation data. The default elevation services are not precise enough and can have a lot of noise in the dataset. This may result in the generation of false reports, e.g. too steep maxSlope values.
解决办法
For calculating the slope value of more precise datasets, iterate through the list of ElevationProfileSamples of a ElevationProfileViewModel and calculate the maximum and average slope values from that. Refer to an example here, https://codepen.io/gsoosalu/pen/MWoGMOe However, it is not possible to overwrite the widget’s legend (the numeric reports) with the new values, i.e. the out-of-the-box legend must be hidden. Refer to https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#visibleElements and the newly calculated ones are displayed in a container outside of the widget. The line graph visualization remains accurate because it is drawn based on the data from the ElevationProfileSamples.