arcengine 实现调用arctoolbox中的dissolove

ESRI.ArcGIS.Geoprocessor.Geoprocessor geoprocessor = new Geoprocessor();
                ESRI.ArcGIS.DataManagementTools.Dissolve d = new ESRI.ArcGIS.DataManagementTools.Dissolve();
d.in_features = dissolveTable;
d.out_feature_class = System.IO.Path.Combine(dataset.Workspace.PathName, OutputFeatureClassName);
d.dissolve_field = DissolveAttributesName;
//d.statistics_fields = "";
d.multi_part = "MULTI_PART";
geoprocessor.Execute(d, null);
posted on 2013-07-26 17:51  you Richer  阅读(599)  评论(0编辑  收藏  举报