摘要: 哈哈 阅读全文
posted @ 2015-05-11 09:08 zmm623 阅读(97) 评论(0) 推荐(0) 编辑
摘要: /// /// 点是否在多边形内 /// /// 点 /// 面 /// public static bool isPointInPolygon(MapPoint pt,Polygon py) { int nCross = 0; PointCollection pc = py.Rings[0]; for (int i = 0; i = Math.Max(p1.Y, p2.Y)) // 交点在p1p2延长线上 ... 阅读全文
posted @ 2013-12-02 12:40 zmm623 阅读(4784) 评论(0) 推荐(0) 编辑
摘要: http://dearymz.blog.163.com/blog/static/20565742013341916919/ 阅读全文
posted @ 2013-08-23 18:13 zmm623 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 在属性管理中 修改‘生成操作’为resource 阅读全文
posted @ 2013-08-10 09:54 zmm623 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 在arcgis server10.0 发布地图服务是,在catalog和http://localhost/arcgis/rest/servicesmapserver中浏览地图都是没有问题的但是在Wpf中引用地图时就会报以下错误Message:ArcGISTiledMapServiceLayer does not support Multi-Layer Caches. Use an ArcGISDynamicMapServiceLayer instead or create a single fused cache最后解决方法是重启IIS 阅读全文
posted @ 2013-08-10 09:52 zmm623 阅读(465) 评论(0) 推荐(0) 编辑
摘要: arcgis 地图缓存清空 http://zm-pc/ArcGIS/rest/admin/cache/clear地图文档中栅格文件 BaseMap.tif.aux 删除 阅读全文
posted @ 2013-08-02 12:01 zmm623 阅读(682) 评论(0) 推荐(0) 编辑
摘要: ArcSDE 服务无法启动事件 ID ( 110 )的描述(在资源( esri_sde )中)无法找到。本地计算机可能没有必要的注册信息或消息 DLL 文件来从远端计算机显示消息。您可能可以使用 /AUXSOURCE= 标识来检索词描述;查看帮助和支持以了解详细信息。下列信息是事件的一部分: esri_sde, Connection to RDBMS failed.解放办法:Oracle数据库把SDE用户锁定了,借用Oracle客户端软件,以sys作为DBA登陆,把SDE的状态由locked改为unlocked.锁定--》未锁定。然后,再启动ArcSDE(arc_sde)服务就行了 阅读全文
posted @ 2013-07-30 14:06 zmm623 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 1.首先打开arcCatalog2.连接所服务3.右键地图,打开“地图服务属性”选项4.选择更新分块:遇到如下问题:版本:ArcCatalog10在 一个栅格数据集 类型 右键单机--> 加载数据 弹出了 Internet Explorer脚本错误当前脚本错误,错误描述如下:行:47char : 4错误:无效指针URL:file:///C:/Documents and Settings/Admin/Application Data/ESRI/Desktop10.0/ArcToolbox/Dlg/MdDlgContent.htm是否继续运行脚本...解决方案:试一下以下方法看看行不行。关闭 阅读全文
posted @ 2013-07-27 11:21 zmm623 阅读(4530) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.Collections.Generic;using System.Text;using System.Data;using System.Data.SqlClient;using System.Configuration;namespace Utility{ public abstract class SqlHelper { protected static string connectionString = ConfigurationSettings.AppSettings["Co 阅读全文
posted @ 2013-07-23 22:19 zmm623 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1、连接 SQL2000 [sa 身份登录] string sqlConnection="server=(local);database=db;user id=sa;pwd=123;";2、连接 SQL2000 [windows 默认身份登录] string SqlConnection="server=(local);Initial Catalog=db;Integrated Security=true;";3、连接 SQL2005 [sa 身份登录] string sqlConnection="data source=(local);data 阅读全文
posted @ 2013-07-23 22:07 zmm623 阅读(386) 评论(0) 推荐(0) 编辑