ArcMap 中的平滑方面图层

问题描述

我目前正在查看海岸线上的一些数据。不幸的是,当从 DEM 计算方面时,我得到了一个非常“嘈杂”的方面值,尤其是在海上:

enter image description here

我尝试使用“过滤器”工具平滑我的 DEM,但在查看水时结果仍然非常难看。有没有简单的解决方法?大海和河床应该是平坦的(-1)。

enter image description here

解决方法

这看起来像海浪的原因。 最好的解决办法是剪海和河带。之后,您将自除并乘以 -1(在光栅计算器中)。然后用你的方面光栅镶嵌它。以下是详细的流程步骤;

Draw polygons for sea and river belt(flat.shp)
Draw polygons for full study area(stdarea.shp)
clip stdarea.shp with flat.shp(out=Aspect.shp)
Clip aspect from river and sea "rasterclip with Aspect.shp" (out=Aspect.tif). 
clip sea and river from aspect "rasterclip with flat.shp"(out=flats.tif). 
Open raster calculator do this;
("flats.tif" / "flats.tif") *  -1 (out=flcalculated.tif)
MosaictoNewRaster "Aspect.tif and flcalculated.tif" (out="FixedAspect.tif")
Best REgards.