
ArcGIS
lrh_079
这个作者很懒,什么都没留下…
展开
-
项目从 ArcEning 9.3 升级为 10.0 出现的错误
项目为 ArcEngine 9.3 版本的开发环境:Windows Server 2003/Windows 7(x86),Visual Studio 2008,.Net Framework 3.5,升级为 ArcEnging 10.0 版本的开发环境:Windows Server 2008(x64),Visual Studio 2010。升级过程中将 9.3 的程序集引用替换为 10.0原创 2012-04-22 17:45:52 · 1095 阅读 · 0 评论 -
VS2010+ArcGIS Engine 10 在 .Net Framework 3.5 下如何正确运行
环境:64位 Windows 7,VS2010, ArcEngine 10.0在64位(x64)机子上使用 VS2010 去创建目标平台(Target Platform)为 x86 的应用程序,当项目中包含引用32位程序集的资源文件时,将会出现“试图加载格式不正确的程序”的错误。其中目标框架(Target Framework)选择的是 3.5, 3.0 或则 2.0。例如在原创 2013-11-27 21:11:39 · 3845 阅读 · 1 评论 -
ERROR in checking system st_geometry type
环境:Oracle 10.2.0.3.0ArcSDE 10.0 32位在安装 ArcSDE 过程中,创建 ArcSDE 服务时出现错误,查看日志 D:\Program Files\ArcGIS\ArcSDE\ora10gexe\etc\sde_esri_sde.log------------------------------------------------------原创 2013-11-27 14:18:35 · 3094 阅读 · 2 评论 -
Network IO Error
一般是 ArcSDE 对应的 Oracle 版本问题,一般 80% 出现问题的 Oracle 版本为 10.2.0.1.0,打补丁升级为 10.2.0.3.0 可解决问题。原创 2013-11-26 14:33:47 · 1331 阅读 · 0 评论 -
ArcSde Service(esri_sde) 服务启动后又停止了
该问题产生的原因可查看文件:C:\Program Files\ArcGIS\ArcSDE\ora10gexe\etc\giomgr_esri_sde.log(Oracle 10g)可能出现的问题:1. 显示到 SDE IOMGR going into background . . . 后无进度文字显示产生原因:可能是 oracle 实例未启动,需加载并启动 oracle 实例。原创 2012-04-22 17:59:14 · 6719 阅读 · 0 评论 -
不允许所请求的注册表访问权
.net Framework 先于 IIS 安装的问题,需要重新注册下 .net Framework。开始->运行->cmd,执行 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 2\aspnet_regiis.exe -i 稍等片刻,注册成功就解决问题了。原创 2012-04-22 18:17:50 · 6381 阅读 · 0 评论 -
遍历 IPolygon 的所有外环和内环
使用接口 IPolygon4Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. public static void PolygonToString(IPolygon4 polygon) { IGeometryBag exteriorRingGeom原创 2012-04-22 18:14:30 · 6098 阅读 · 2 评论 -
Enable and disable ArcGIS Server Security
ArcGIS Server 9.3.11. Stop the Server Object Manager (SOM) 2. Edit the 'Server.dat' file located at //server/system. Change the value of 'SecurityEnabled' element from 'true' to 'false' and save转载 2012-04-22 18:03:12 · 743 阅读 · 0 评论 -
ArcEngine Runtime 10 安装后在 VS2010 上未能找到 ArcGIS 的引用
解决方案:还需要安装 ArcObjects 10 SDK for Microsoft .Net Framework在 ArcEngine Developers Kit 安装向导界面里查看安装说明 Select the software you want to install from the setup menu and follow the instructions to co原创 2012-04-22 17:55:10 · 5711 阅读 · 0 评论 -
ICursor.NextRow 方法出现错误:Function called out of sequence
在执行如下代码时产生:ICursor cursor;IRow row ;...row = cursor.NextRow(); //产生问题代码...产生原因:cursor 遍历完所有项后再次调用 NextRow 方法导致。原创 2012-02-08 18:07:54 · 2517 阅读 · 2 评论 -
The parameter is (or has an element that is) the wrong kind of geometry
今天开发遇到一个问题,就是将一个 IPolygon 对象添加到另外一个 IPolygon 中,代码示例如下:IPolygon polygon1 = new PolygonClass();IPolygon polygon2 = new PolygonClass();IGeometryCollection collection = polygon1 as IGeometryCollect原创 2012-02-17 20:16:35 · 3823 阅读 · 7 评论 -
Failed to connect to the specified server. Server library could not be loaded
这个错误是前几天用户提出了的,我今天又一次遇到了,特拿出来跟大家分享一下问题背景:使用ArcCatalog直连远程服务器,数据库为Oracle,提示“Error: Server library could NOT be loaded”原因有三1:大家都知道使用直连必须要安装数据库客户端,但是如果用户安装了Oracle的64位客户端与32位的ArcGIS桌面进行直连时,32位转载 2012-02-17 20:27:02 · 6041 阅读 · 0 评论 -
深入浅出空间参考—对ArcGIS空间参考的理解
http://www.cnblogs.com/helloj2ee/archive/2009/09/17/1568725.html原创 2012-04-22 18:20:15 · 458 阅读 · 0 评论 -
The number of points is less than required for feature
IPolygon polygon = new PolygonClass();IPointCollection pointCollection = (IPointCollection)polygon;添加大于三个点到 pointCollection 中,由于第一个点和最后一个点不一样,运行时出现错误“The number of points is less than required for原创 2012-04-22 17:53:01 · 4207 阅读 · 0 评论 -
ORA-01659:无法分配超出 4 的 MINEXTENTS (在表空间 SDE 中)
今天在实现将 Shapefile 文件的图层数据导入到 ArcSDE Geodatabase 中,出现了如上异常提示。产生该问题的原因是 ArcSDE Geodatabase 对应的表空间空间大小不够导致。解决方案就是将表空间扩大,可以采用如下两种方式:方式一:--给sde表空间再添加数据文件ALTER TABLESPACE SDE ADD DATAFILE 'E:\dbfi原创 2012-02-21 18:02:25 · 5771 阅读 · 0 评论