博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AE Geoprocessor 实现 AnalysisTool Union功能
阅读量:6956 次
发布时间:2019-06-27

本文共 545 字,大约阅读时间需要 1 分钟。

///         /// gp实现featureClass的 Analysis Union功能        ///         /// featureclass        /// featureclass        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://gsmil.baihongyu.com/

你可能感兴趣的文章
React全家桶+Egg 做一个协作聊天室~
查看>>
小程序从手动埋点到自动埋点
查看>>
vue-devtools的安装与使用
查看>>
iOS ARKit录制视频(AVAssetWriter & 有声音)
查看>>
### bootstrap-datepicker 与bootstrapValidator同时使用时,选择日期后,无法正常触发校验...
查看>>
2019最新前端面试宝典
查看>>
Puppeteer爬取网页数据
查看>>
flutter 语言篇四
查看>>
月薪80K前端大佬笔记学习vue的心得,网友:两个字“完美”!
查看>>
「中高级前端面试」JavaScript手写代码无敌秘籍
查看>>
【通用技术】Git 完全自学手册
查看>>
unable to access 'https://github.com/DajuanM/DHAlgorithms.git/': The requested U
查看>>
iOS 之VLC使用RTSP流做监控或者直播视频
查看>>
restful+springmvc+mybatis+ webservice 分布式架构
查看>>
组件传值eventHub设置全局的使用
查看>>
提升hoisting
查看>>
记一次 “灵异事件” 及由此引发的思考
查看>>
基于vue的军训管理系统前端实现
查看>>
Spring和SpringBoot比较,解惑区别
查看>>
webpack 3 零基础入门教程 #4 - webpack 的配置文件 webpack.config.js
查看>>