Arcengine 基本操作(待更新)
/// <summary>
/// 删除fieldName属性值为1的弧段
/// </summary>
/// <param name="fieldName"></param>
/// <param name="t"></param>
public void DelectPolyline(string fieldName, int t)
{ ILayer pLayer = axMapControl1.get_Layer();
IFeatureLayer pFeatureLayer = pLayer as IFeatureLayer;
IFeatureClass pFeatureClass = pFeatureLayer.FeatureClass; IFields pIFields = pFeatureLayer.FeatureClass.Fields;
int fieldIndex = pIFields.FindField(fieldName); var pDataset = pFeatureClass as IDataset;
IWorkspace pWorkspace = pDataset.Workspace;
IFeatureWorkspace pFWs = pWorkspace as IFeatureWorkspace; IWorkspaceEdit pWorkspaceEdit = (IWorkspaceEdit)pFWs;
pWorkspaceEdit.StartEditing(true);
pWorkspaceEdit.StartEditOperation(); IFeatureCursor pEF = pFeatureLayer.Search(null, false);
IFeature pFeatureDe = pEF.NextFeature();
while (pFeatureDe != null)
{
if (Convert.ToInt32(pFeatureDe.get_Value(fieldIndex)) != t)
{
pFeatureDe.Delete();
}
pFeatureDe = pEF.NextFeature();
}
pWorkspaceEdit.StopEditOperation();
pWorkspaceEdit.StopEditing(true);
MessageBox.Show("删除成功");
}
///若干个线要素合并成一个
private void MergeFeatures(List<int> OneFeatureArr,ILayer tSelectLayer)
{
IFeatureLayer tFeatureLayer = tSelectLayer as IFeatureLayer;
IFeatureClass pFeatureClass = tFeatureLayer.FeatureClass;
var pDataset = pFeatureClass as IDataset;
IWorkspace pWorkspace = pDataset.Workspace;
IFeatureWorkspace pFWs = pWorkspace as IFeatureWorkspace; IWorkspaceEdit pWorkspaceEdit = (IWorkspaceEdit)pFWs;
pWorkspaceEdit.StartEditing(true);
pWorkspaceEdit.StartEditOperation(); IFeatureLayer pFeatureLayer = tSelectLayer as IFeatureLayer;
IFeatureCursor pEF = pFeatureLayer.Search(null, false);
IFeature pFeatureFirst = pEF.NextFeature();
while (pFeatureFirst != null)
{//找到在数组里的第一个要素
if (pFeatureFirst.OID == OneFeatureArr[])
{
//OneFeatureArr.RemoveAt(0);//除掉第一个要素
break;
}
else
pFeatureFirst = pEF.NextFeature();
}
pEF = pFeatureLayer.Search(null, false); IGeometry pGeometryFirst = pFeatureFirst.Shape;
ITopologicalOperator2 pTopOperatorFirst = (ITopologicalOperator2)pGeometryFirst;
IRelationalOperator pRelOperatorFirst = (IRelationalOperator)pGeometryFirst; pTopOperatorFirst.IsKnownSimple_2 = false;
pTopOperatorFirst.Simplify();
pGeometryFirst.SnapToSpatialReference(); IGeometry pGeometrySecond = null;
IFeature pFeatureSecond = pEF.NextFeature(); IGeometryCollection Geometrybag = new GeometryBagClass();//装geometry的袋子
object oMissing = Type.Missing;
while (pFeatureSecond != null)
{
if (OneFeatureArr.IndexOf(pFeatureSecond.OID) == -)
{
pFeatureSecond = pEF.NextFeature();
continue;
}
pGeometrySecond = pFeatureSecond.ShapeCopy;
Geometrybag.AddGeometry(pGeometrySecond, ref oMissing, ref oMissing);//将geometry装进袋子
//pFeatureSecond.Delete();
pFeatureSecond = pEF.NextFeature();
}
IEnumGeometry tEnumGeometry = (IEnumGeometry)Geometrybag;
pTopOperatorFirst.ConstructUnion(tEnumGeometry); pTopOperatorFirst.IsKnownSimple_2 = false;
pTopOperatorFirst.Simplify();
pFeatureFirst.Shape = pGeometryFirst;
pFeatureFirst.Store(); pWorkspaceEdit.StopEditOperation();
pWorkspaceEdit.StopEditing(true);
}
Arcengine 基本操作(待更新)的更多相关文章
- 《mongoDB》基本操作-创建/更新/删除文档
一:基本操作 - db; 当前选择的集合(等于数据库名) > db demo - use db_name; 选择你要操作的集合 > use demo switched to db dem ...
- mongdb基本操作和更新操作
1.创建数据库 use hqj 不会真正的创建db,只有insert之后才会创建2.查看数据库show dbs3.插入文档db.hqj.insert({name:'111'})4.查看所有的文档sho ...
- mongodb的基本操作之更新不存在的数据
查找y为100的数据 db.test_collection.find({y:100}) 发现没有,这时候将y为100的数据更新为y为999的数据 db.test_collection.update({ ...
- git基本操作---持续更新(2017-08-11)
git 强制push $ git push -u origin master -f 查看本地标签 $ git tag 打标签并添加备注 $ git tag 20170811 -m"图片保存多 ...
- HDU 3577Fast Arrangement(线段树模板之区间增减更新 区间求和查询)
Fast Arrangement Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) ...
- [Erlang 0117] 当我们谈论Erlang Maps时,我们谈论什么 Part 2
声明:本文讨论的Erlang Maps是基于17.0-rc2,时间2014-3-4.后续Maps可能会出现语法或函数API上的有所调整,特此说明. 前情提要: [Erlang 0116] 当我们谈论E ...
- mango-1.4.1 文档
文档目录 快速开始 添加依赖包 数据库准备 创建HelloWorld类 书写插入与查询方法 构造数据源并初始化mango对象 获取dao并调用插入与查询方法 查看完整示例代码和表结构 基本操作 准备工 ...
- Splay树简单操作
前几天刚刚自学了一下splay,发现思路真简单实现起来好麻烦 先贴一下头文件 # include <stdio.h> # include <stdlib.h> # includ ...
- 数据库系统概论(2)——Chap. 2 关系数据库基础
数据库系统概论(2)--Chap.2 关系数据库基础 一.关系数据结构及形式化定义 1.关系 关系模型的数据结构只包含单一的数据结构--关系.在关系模型中,现实世界的实体及实体间的各种联系均用单一的结 ...
随机推荐
- 获取屏幕上的某个控件相对位置,尤其是tableviewcell上的某一个控件的相对位置
我的需求就是tableviewcell上的按钮,点击就会出现一个弹框: 主要就是获取,所点击的cell上控件的相对位置: CGPoint buttonCenter = CGPointMake(btn. ...
- python_62_装饰器5
import time def timer(func): #timer(test1) func=test1 def deco(*args,**kwargs): start_time=time.time ...
- 通过Jquery获取RadioButtonList选中值
推荐 使用第二种,第一种有时候不起作用 第一种:通过find方法 获取RadioButtonList所选中的值 <script type="text/javascript"& ...
- Bootstrap 历练实例 - 折叠(Collapse)插件事件
事件 下表列出了折叠(Collapse)插件中要用到的事件.这些事件可在函数中当钩子使用. 事件 描述 实例 show.bs.collapse 在调用 show 方法后触发该事件. $('#ident ...
- STL之deque用法
deque:双端队列 底层是一个双向链表. 常用的有队列的尾部入队.首部出队. 普通队列:queuequeue 模板类的定义在<queue>头文件中.与stack 模板类很相似,queue ...
- BZOJ2118: 墨墨的等式(最短路 数论)
题意 墨墨突然对等式很感兴趣,他正在研究a1x1+a2y2+…+anxn=B存在非负整数解的条件,他要求你编写一个程序,给定N.{an}.以及B的取值范围,求出有多少B可以使等式存在非负整数解. So ...
- >详解<栈
- 生产环境LAMP搭建 - 基于 fastcgi
生产环境LAMP搭建 - 基于 fastcgi 由于在module模式,php只是已http的模块形式存在,无形中加重了http的服务负载,通常在企业架构中,使用fastcgi的模式,将所有的服务都设 ...
- php 单冒号 、双冒号的用法
单冒号: 常用与三元运算,如:$result = $str ? $str : $str1; 双冒号: 1,当调用静态属性和静态方法时 2,当调用自身类或者父类的属性或者方法时
- 洛谷P4231 三步必杀
题目描述: $N$ 个柱子排成一排,一开始每个柱子损伤度为0. 接下来勇仪会进行$M$ 次攻击,每次攻击可以用4个参数$l$ ,$r$ ,$s$ ,$e$ 来描述: 表示这次攻击作用范围为第$l$ 个 ...