AE多边形合并

非本人原创.

同事在网上找的
合并速度较快

        /// <summary>
        /// 计算合并面积(去掉岛)
        /// </summary>
        /// <param name="pArrayPolygon">图形集合</param>
        /// <param name="isShowError"></param>
        /// <returns></returns>
        public static IPolygon UnionOrRemoveRingFromPolygon(ArrayList pArrayPolygon, bool isShowError)
        {

            IPolygon pPolygon_Each = null;

            IPolygon pPolygon_Result = null;

            IGeometryCollection pGeometryCollection = null;

            ISegmentCollection pSegmentCollection_Ring = null;

            object oMissing = Type.Missing;

            try
            {

                if (pArrayPolygon == null)

                    return null;

                if (pArrayPolygon.Count == 0)

                    return null;

                pGeometryCollection = new PolygonClass();

                pPolygon_Result = pGeometryCollection as IPolygon;

                for (int i = 0; i < pArrayPolygon.Count; i++)
                {

                    pPolygon_Each = pArrayPolygon[i] as IPolygon;

 

                    IGeometryCollection pGeometryCollection_Temp = null;

                    pGeometryCollection_Temp = pPolygon_Each as IGeometryCollection;

 

                    for (int j = 0; j < pGeometryCollection_Temp.GeometryCount; j++)
                    {

                        pSegmentCollection_Ring = new RingClass();

                        pSegmentCollection_Ring.AddSegmentCollection(pGeometryCollection_Temp.get_Geometry(j) as ISegmentCollection);

                        pGeometryCollection.AddGeometry(pSegmentCollection_Ring as IGeometry, ref oMissing, ref oMissing);

                    }

                }
                pPolygon_Result.SimplifyPreserveFromTo();
                return pPolygon_Result;

            }

            catch (Exception ex)
            {

                //if (isShowError)

                //    MessageBox.Show("合并(去岛)多边形发生错误,错误信息为:->\r\n" + ex.Message,

                //                    "错误信息", MessageBoxButtons.OK, MessageBoxIcon.Error);

                return null;

            }

        }

 

转载于:https://www.cnblogs.com/ITGIS/articles/1747446.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值