阅读:1500回复:2
如何自动把一个面状SHP里凡是有公共边的面都合到一起
<br>请教在ARCINFO中如何自动把一个面状SHP里凡是有公共边的面都合到一起,小弟认为需要编程实现,但未解决.请高手指教应该如何写呢,不胜感谢
|
|
1楼#
发布于:2005-08-03 21:51
<P>可是如何逐个对POLYGON进行遍历,判断是否与其他POLYGON相邻呢</P>
<P>具体如何实现还是有待探讨</P> |
|
2楼#
发布于:2005-08-02 23:56
<P>你需要在程序里判断要素的空间关系并找出符合关系的要素</P>
<P> 你可以看看下面的接口,</P> <P>ITopologyEdge Interface </P> <P>合并可以用下面的方法</P>ConstructUnion Method (esriGeometry) <P>Defines this geometry to be the union of the inputs. More efficient for unioning multiple geometries than calling Union repeatedly.</P>Union Method (esriGeometry) <P>Constructs the geometry that is the set-theoretic union of the input geometries.</P> |
|
|