ArcGIS Engine效率探究——要素的添加和删除、属性的读取和更新

2024-08-28 13:18

本文主要是介绍ArcGIS Engine效率探究——要素的添加和删除、属性的读取和更新,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 要素的添加

ArcGIS Engine中,主要有两个方法用于要素的添加:

  • Using IFeatureClass.CreateFeature followed by IFeature.Store
  • Using IFeatureClass.CreateFeatureBuffer with an insert cursor 

批量插入feature,如果用feature.store()方法,在图层中一个个地插入要素,较之同时使用insert cursor与feature buffer方法,会慢很多。

因为后者触发的事件和复杂行为比较少(比如说没有引发因拓扑关系产生的行为)。


2. 要素的删除

删除feature,一个个删除就用IFeature.Delete方法即可,此处不再赘述,只写一种批量删除的方法,用于ITable是针对数据库进行操作的,所以速度很快。

The best approach to take when deleting features depends on two factors, how many features are being deleted and whether the data source is a local geodatabase or an ArcSDE geodatabase.

In the simplest case, a single feature that has already been retrieved can be deleted by callingIFeature.Delete. If bulk features are being deleted and the geodatabase is an ArcSDE geodatabase, the most efficient approach requires the use of a search cursor and the IFeature.Delete method.

On the other hand, if the geodatabase is a local geodatabase (a file or personal geodatabase), the most efficient method for bulk deletion is theITable.DeleteSearchedRows method.

示例:

[csharp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. ///<summary>  
  2. ///删除某featurelayer中所有feature  
  3. ///</summary>  
  4. ///<param name="pLayer">操作的涂层</param>  
  5. ///<remarks>该方法可以给一个queryfilter,进行删除符合条件的features</remarks>  
  6. private void DeleteAllFeatures(IFeatureLayer pLayer, <code></code>IQueryFilter queryFilter)  
  7. {  
  8.   ITable pTable = pLayer.FeatureClass as ITable;  
  9.   pTable.DeleteSearchedRows(queryFilter);  

3. 属性的读取

在获取属性表的值时有多种方法:

方法一:

[csharp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. ITable pTable = pLayer.FeatureClass as ITable;  
  2. clsFldValue = pTable.GetRow(i).get_Value(clsFldIndex); 
方法二:

[csharp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. IFeatureCursor FCursor = pLayer.FeatureClass.Search(new QueryFilterClass(), false);  
  2. IFeature feature = FCursor.NextFeature();  
  3. if (feature == nullreturn null;  
  4. (2)clsFldValue = feature.get_Value(clsFldIndex);  
  5. feature = FCursor.NextFeature(); 

用Environment.TickCount进行代码执行时间测试,结果发现方法一读取整个表的时间为4984ms,而方法二读取同一个属性给的时间仅为32 ms,法二的执行效率是法一的156倍!!!

完整测试代码如下:

[csharp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1.  IFeatureLayer pLayer = Utilities.GetLayerByName((string)cmbRegLayers.SelectedItem, m_mapControl) as IFeatureLayer;  
  2.  IFeatureCursor FCursor = pLayer.FeatureClass.Search(new QueryFilterClass(), false);  
  3.  IFeature feature = FCursor.NextFeature();  
  4.   
  5.  int t = Environment.TickCount;  
  6.   
  7.  object clsFldValue=null;  
  8.  for (int i = 0; i < pLayer.FeatureClass.FeatureCount(null); i++)  
  9.  {  
  10.      clsFldValue = feature.get_Value(3);  
  11.      feature = FCursor.NextFeature();  
  12.  }  
  13.   
  14.  t = Environment.TickCount - t;  
  15.  MessageBox.Show(t.ToString());  
  16.   
  17.  ITable pTable = pLayer.FeatureClass as ITable;  
  18.   
  19.  t = Environment.TickCount;  
  20.   
  21.  for (int i = 0; i < pTable.RowCount(null); i++)  
  22.      clsFldValue = pTable.GetRow(i).get_Value(3);  
  23.  t = Environment.TickCount - t;  
  24.  MessageBox.Show(t.ToString());  

4.属性的更新

一、当将一批数据更新为某一相同的属性时,使用ITable.UpdateSearchedRows效率会很高。

示例如下:

  1. // Find the position of the field that will be updated.  
  2. int typeFieldIndex = featureClass.FindField("TYPE");  
  3.   
  4. // Create a query filter defining which fields will be updated  
  5. // (the subfields) and how to constrain which rows are updated  
  6. // (the where clause).  
  7. IQueryFilter queryFilter = new QueryFilterClass  
  8. {  
  9.     SubFields = "TYPE", WhereClause = "LANE_COUNT = 4"  
  10. };  
  11.   
  12. // Create a ComReleaser for buffer management.  
  13. using(ComReleaser comReleaser = new ComReleaser())  
  14. {  
  15.     // Create a feature buffer containing the values to be updated.  
  16.     IFeatureBuffer featureBuffer = featureClass.CreateFeatureBuffer();  
  17.     featureBuffer.set_Value(typeFieldIndex, "Highway");  
  18.     comReleaser.ManageLifetime(featureBuffer);  
  19.   
  20.     // Cast the class to ITable and perform the updates.  
  21.     ITable table = (ITable)featureClass;  
  22.     IRowBuffer rowBuffer = (IRowBuffer)featureBuffer;  
  23.     table.UpdateSearchedRows(queryFilter, rowBuffer);  

二、逐条更新记录

 这种方式中可有三种方法,如下:

(1)

  1. for (int i = 0; i < pTable.RowCount(null); i++)  
  2. {  
  3.     pRow = pTable.GetRow(i);  
  4.     pRow.set_Value(2, i + 6);  
  5.     pRow.Store();  
  6. }  
(2)
  1. IFeatureCursor FCursor = pLayer.FeatureClass.Search(new QueryFilterClass(), false);  
  2. IFeature feature = FCursor.NextFeature();  
  3.   
  4. for (int i = 0; i < featureNum; i++)  
  5. {  
  6.   
  7.     feature.set_Value(2, i);  
  8.     feature.Store();  
  9.     feature = FCursor.NextFeature();  
  10. }
(3)

  1. ICursor pCursor =pTable.Update(nullfalse);  
  2. pRow = pCursor.NextRow();  
  3. for (int i = 0; i < pTable.RowCount(null); i++)  
  4. {  
  5.     pRow.set_Value(2, i + 6);  
  6.     pCursor.UpdateRow(pRow);  
  7.     pRow = pCursor.NextRow();  
  8. }  

试验数据为320条记录,三种方法的运行时间为:法(1)为40297ms;法(2)34922ms为;法(3)为219ms.

可见运用IFeature和IRow的Store方法更新速度都很慢,用ICursor 的UpdateRow方法速度很快,分别是前两者效率的184倍、159倍!!

参考:

Creating features http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//00010000049v000000

Updating Features http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000002rs000000

插入和删除Featureclass中feature的几种方法(VB.Net) http://www.cnblogs.com/wall/archive/2008/12/05/1348646.html

Arcengine效率探究之一——属性的读取 http://blog.csdn.net/lk103852503/article/details/6566652

Arcengine效率探究之二——属性的更新 http://blog.csdn.net/lk103852503/article/details/6570748


这篇关于ArcGIS Engine效率探究——要素的添加和删除、属性的读取和更新的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1114867

相关文章

电脑桌面文件删除了怎么找回来?别急,快速恢复攻略在此

在日常使用电脑的过程中,我们经常会遇到这样的情况:一不小心,桌面上的某个重要文件被删除了。这时,大多数人可能会感到惊慌失措,不知所措。 其实,不必过于担心,因为有很多方法可以帮助我们找回被删除的桌面文件。下面,就让我们一起来了解一下这些恢复桌面文件的方法吧。 一、使用撤销操作 如果我们刚刚删除了桌面上的文件,并且还没有进行其他操作,那么可以尝试使用撤销操作来恢复文件。在键盘上同时按下“C

poj3468(线段树成段更新模板题)

题意:包括两个操作:1、将[a.b]上的数字加上v;2、查询区间[a,b]上的和 下面的介绍是下解题思路: 首先介绍  lazy-tag思想:用一个变量记录每一个线段树节点的变化值,当这部分线段的一致性被破坏我们就将这个变化值传递给子区间,大大增加了线段树的效率。 比如现在需要对[a,b]区间值进行加c操作,那么就从根节点[1,n]开始调用update函数进行操作,如果刚好执行到一个子节点,

hdu1394(线段树点更新的应用)

题意:求一个序列经过一定的操作得到的序列的最小逆序数 这题会用到逆序数的一个性质,在0到n-1这些数字组成的乱序排列,将第一个数字A移到最后一位,得到的逆序数为res-a+(n-a-1) 知道上面的知识点后,可以用暴力来解 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#in

hdu1689(线段树成段更新)

两种操作:1、set区间[a,b]上数字为v;2、查询[ 1 , n ]上的sum 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdl

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

hdu 1754 I Hate It(线段树,单点更新,区间最值)

题意是求一个线段中的最大数。 线段树的模板题,试用了一下交大的模板。效率有点略低。 代码: #include <stdio.h>#include <string.h>#define TREE_SIZE (1 << (20))//const int TREE_SIZE = 200000 + 10;int max(int a, int b){return a > b ? a :

AI行业应用(不定期更新)

ChatPDF 可以让你上传一个 PDF 文件,然后针对这个 PDF 进行小结和提问。你可以把各种各样你要研究的分析报告交给它,快速获取到想要知道的信息。https://www.chatpdf.com/

GIS图形库更新2024.8.4-9.9

更多精彩内容请访问 dt.sim3d.cn ,关注公众号【sky的数孪技术】,技术交流、源码下载请添加微信:digital_twin123 Cesium 本期发布了1.121 版本。重大新闻,Cesium被Bentley收购。 ✨ 功能和改进 默认启用 MSAA,采样 4 次。若要关闭 MSAA,则可以设置scene.msaaSamples = 1。但是通过比较,发现并没有多大改善。

滚雪球学Java(87):Java事务处理:JDBC的ACID属性与实战技巧!真有两下子!

咦咦咦,各位小可爱,我是你们的好伙伴——bug菌,今天又来给大家普及Java SE啦,别躲起来啊,听我讲干货还不快点赞,赞多了我就有动力讲得更嗨啦!所以呀,养成先点赞后阅读的好习惯,别被干货淹没了哦~ 🏆本文收录于「滚雪球学Java」专栏,专业攻坚指数级提升,助你一臂之力,带你早日登顶🚀,欢迎大家关注&&收藏!持续更新中,up!up!up!! 环境说明:Windows 10

Codeforces Round #240 (Div. 2) E分治算法探究1

Codeforces Round #240 (Div. 2) E  http://codeforces.com/contest/415/problem/E 2^n个数,每次操作将其分成2^q份,对于每一份内部的数进行翻转(逆序),每次操作完后输出操作后新序列的逆序对数。 图一:  划分子问题。 图二: 分而治之,=>  合并 。 图三: 回溯: