码迷,mamicode.com
首页 > Windows程序 > 详细

C# ArcEngine中打印出GP调用出错时的错误

时间:2015-08-10 18:00:06      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

public static bool Sample(List<string> inRasters,
            string locationData, string outTable,string resamplingType,string outExcel)
        {
            Geoprocessor gp = new Geoprocessor();
            gp.OverwriteOutput = true;

            string istr = inRasters[0];
            for (int j = 1; j < inRasters.Count(); j++)
            {
                istr += ";" + inRasters[j];
            }
            ESRI.ArcGIS.SpatialAnalystTools.Sample sam = new ESRI.ArcGIS.SpatialAnalystTools.Sample();
            sam.in_rasters = istr;//inRasters;
            sam.in_location_data = locationData;
            sam.out_table = outTable;
            sam.resampling_type = resamplingType;

            try
            {
                gp.Execute(sam, null);
            }
            catch (COMException e)
            {
                string str = "";
                for (int i = 0; i < gp.MessageCount; i++)
                {
                    str += gp.GetMessage(i);

                }
                MessageBox.Show(str);
                return false;
            }

            if (!ExcelUtil.CreateExcelByItable(outTable,outExcel))
            {
                MessageBox.Show("生成Excel表格失败!");
                return false;
            }
           
            return true;
        }

C# ArcEngine中打印出GP调用出错时的错误

标签:

原文地址:http://www.cnblogs.com/tsintian/p/4718511.html

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