博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
对Feature的操作插入添加删除
阅读量:5049 次
发布时间:2019-06-12

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

转自:

1、插入
1  2  3 ///  4  5 ///向featureclass中批量插入features ,批量插入features,用buffer的方法,要比循环一个个Store的方法快 6  7 /// 8  9 /// 操作数据所在的IFeatureClass10 11 private void InsertFeatures( IFeatureClass pFeatureClass , List< IGeometry> pGeos )12 13 {14 15   IFeatureBuffer pFeatBuf = pFeatureClass.CreateFeatureBuffer();16 17   IFeature pFeat = pFeatBuf;18 19   IFeatureCursor pFeatCur= pFeatureClass.Insert(true);20 21   for(int i = 0 ;i< pGeos.Count ;i++)22 23   {24 25   pFeat.Shape = pGeos(i);26 27   pFeatCur.InsertFeature(pFeatBuf);28 29   //避免一次flush,导致速度过慢30 31   if (i Mod 100 == 0 )32 33   {34 35     pFeatCur.Flush()36 37   }38 39   pFeatCur.Flush()40 41 }

2.删除

1 ///删除某featurelayer中所有feature 2  3 /// 该方法可以给一个queryfilter,进行删除符合条件的Ifeatures/// 4  5 /// :操作的图层 6  7 Private void DeleteAllFeatures(IFeatureLayer pLayer ) 8  9 {10 11   ITable pTable = pLayer.FeatureClass;12 13   pTable.DeleteSearchedRows(null);14 15 }

 ------------------------------------------------------ 补充分割线 ------------------------------------------------------

还有更效率的方法:

 

转载于:https://www.cnblogs.com/marvelousone/p/7448185.html

你可能感兴趣的文章
token简单的使用流程。
查看>>
django创建项目流程
查看>>
UIActionSheet 修改字体颜色
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
Spring注解之@Lazy注解,源码分析和总结
查看>>
多变量微积分笔记24——空间线积分
查看>>
Magento CE使用Redis的配置过程
查看>>
poi操作oracle数据库导出excel文件
查看>>
(转)Intent的基本使用方法总结
查看>>
Mac 下的Chrome 按什么快捷键调出页面调试工具
查看>>
Windows Phone开发(24):启动器与选择器之发送短信
查看>>
JS截取字符串常用方法
查看>>
Google非官方的Text To Speech和Speech Recognition的API
查看>>
stdext - A C++ STL Extensions Libary
查看>>
Django 内建 中间件组件
查看>>
bootstrap-Table服务端分页,获取到的数据怎么再页面的表格里显示
查看>>
进程间通信系列 之 socket套接字及其实例
查看>>
天气预报插件
查看>>
Unity 游戏框架搭建 (十三) 无需继承的单例的模板
查看>>
模块与包
查看>>