码迷,mamicode.com
首页 > 其他好文 > 详细

arcengine geometry union

时间:2017-12-21 17:21:04      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:tor   cti   geometry   int   self   als   first   reac   ica   

 

以前得到的结果老是某一个,用下面的方法就可以获取合并后的结果

IGeometry pUnionGeo = null;
var bFirst = true;
foreach (IGeometry pGeo in pGeometrys)
{
if (pGeo != null && !pGeo.IsEmpty)
{
//RepairSelfIntersection(pGeo);
if (bFirst)
{
pUnionGeo = pGeo;
bFirst = false;
}
else
{
pUnionGeo = (pUnionGeo as ITopologicalOperator).Union(pGeo);
}
}
}
return pUnionGeo;

arcengine geometry union

标签:tor   cti   geometry   int   self   als   first   reac   ica   

原文地址:http://www.cnblogs.com/huchaoheng/p/8081172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!