/// <summary>
        /// gp实现featureClass的 Analysis Union功能
        /// </summary>
        /// <param name="shp1">featureclass</param>
        /// <param name="shp2">featureclass</param>
        public static void UnionShape(string shp1, string shp2)
        {
            Geoprocessor gp = new Geoprocessor();
            gp.OverwriteOutput = true;
            Union gpUnion = new Union();

          //gpUnion.in_features = @"D:\1\1.shp;D:\1\2.shp";
            gpUnion.in_features = shp1 + ";" + shp2;
            gpUnion.out_feature_class = @"D:\temp\result.shp";
            gp.Execute(gpUnion, null);
        }

 

//GP Edit TIN论坛

http://forums.arcgis.com/threads/57195-Analyst3DTools.EditTin-doesn-t-Edit-TinSurface?p=196648#post196648

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-17
  • 2021-11-28
  • 2022-02-09
  • 2022-12-23
  • 2021-12-18
  • 2021-09-10
猜你喜欢
  • 2022-12-23
  • 2021-04-03
  • 2022-12-23
  • 2021-11-28
  • 2021-06-14
  • 2022-12-23
相关资源
相似解决方案