一、插值结果如何转面?
【问题描述】:
插值结果如何转面
【解决办法】:
1. 如果您用的是地统计模块中的idw插值(geostatistical),那么可以直接用GA layer to grid工具转:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/geostatistical-analyst-toolbox/ga-layer-to-grid.htm
2. 如果您用spatIial analysis/3D analysis模块的工具进行idw插值,那么需要先用重分类,按照您想要的显示效果先进行分类,然后把栅格转面:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/spatial-analyst-toolbox/reclassify.htm
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/conversion-toolbox/raster-to-polygon.htm
二、插值结果中有负数怎么办?
【问题描述】:
插值结果中有负数怎么办
【解决办法】:
建议使用idw插值,不会高于数据最高值也不会低于数据最低值。
三、如何提取图斑边界?
【问题描述】:
如何提取图斑边界,希望可以得到单独的边界线,而不是两个相邻多边形得到两条相邻的边界线。
【解决办法】:
在面转线工具运行的时候不要勾选“IDENTIFY_NEIGHBORS”
四、空间插值结果如何验证?
【问题描述】:
进行空间插值后如何通过验证集对插值结果进行独立检验,获得平均误差,均方根误差等参数。
【解决办法】:
如果是克里金插值的话,有交叉验证的步骤;如果是反距离等,可以使用地统计分析下的插值工具,其中生成的Output geostatistical layer ,可以进行结果的验证。
Geostatistical Analyst 快速浏览—帮助 | ArcGIS Desktop
http://desktop.arcgis.com/zh-cn/arcmap/latest/extensions/geostatistical-analyst/a-quick-tour-of-geostatistical-analyst.htm
执行交叉验证和验证—帮助 | ArcGIS Desktop
http://desktop.arcgis.com/zh-cn/arcmap/latest/extensions/geostatistical-analyst/performing-cross-validation-and-validation.htm
五、如何用点数据生成平滑的等值面
【问题描述】:
如何用点数据生成平滑的等值面
【解决办法】:
1. 首先用地统计模块工具进行空间插值;
2. 然后用GA layer to contour工具转为等值面;
3. 然后把面图层转为线图层;
4. 然后把用平滑线工具对线图层进行平滑;
5. 最后把线图层转为面图层,进行渲染。
六、如何让一个线图层自动与另一个线图层完全重合
【问题描述】:
如何让一个线图层自动与另一个线图层完全重合
【解决办法】:
1. 一种方法是用对齐要素工具:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/editing-toolbox/align-features.htm
2. 另一种方法是橡皮筋变化的两个工具连用:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/editing-toolbox/generate-rubbersheet-links.htm
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/editing-toolbox/rubbersheet-features.htm
七、如何在众多山脊线中提取主干线
【问题描述】:
如何在众多山脊线中提取主干线,数据中可能不止一个山峰,每个山峰只有一条主干线,主干线应该是最长的、拐弯较少的。
【解决办法】:
我的逻辑思路及所用到的工具如下:
1. 现在手里的数据是各个山峰的所有山脊线
2. 我希望首先对这些山脊线进行分类,把属于一个山峰的山脊线赋予一个相同的字段值。
3. 那么首先我们要找到所有山峰,可以重复之前找山脊线的部分操作,用一个很大的栅格减dem得到倒过来的dem,然后找所有的“汇”(sink),这期间可能要用的工具包括:
栅格计算器:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/spatial-analyst-toolbox/raster-calculator.htm
填洼:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/spatial-analyst-toolbox/fill.htm
汇:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/spatial-analyst-toolbox/sink.htm
栅格转点:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/conversion-toolbox/raster-to-point.htm
4. 找到山顶之后,我们可以迭代每一个山顶(因为要迭代,所以必须要用脚本或模型构建器),然后把通过该山顶的山脊线分为一类,需要用到的工具包括:
空间链接:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/analysis-toolbox/spatial-join.htm
5. 最后在每一类中找到一条最大的线即可:
添加几何属性:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/data-management-toolbox/add-geometry-attributes.htm
选择:
http://desktop.arcgis.com/zh-cn/arcmap/latest/tools/analysis-toolbox/select.htm
近期评论