Arcgis
谛听-
线上幽灵
展开
-
Arcgis---.sxd文件移动位置后无法打开
用ArcSen打开后,文件名那里是叹号 右击名称,Data–>Repare Data Source—>选择.sxd文件所在位置,选中相应的shp文件 然后就可以了 但是下次还是不能打开,继续解决选择“File”—>Document Properties—>Data Source Options—>Store relative path names 搞定原创 2017-05-12 17:42:42 · 2990 阅读 · 0 评论 -
Arcgis 版本升级后无法启动 License Serer Administrator
新建文件 Arcgis.bat,内容为cd C:\Program Files (x86)\ArcGIS\License10.2\binlmgrd -z -c service.txt双击后 License Serer Administrator 便会启动了原创 2019-05-10 16:20:11 · 285 阅读 · 0 评论 -
Arcgis---三维图呈现
元素中有高度信息 右击图层,选择“属性”,进行修改原创 2018-04-19 17:59:10 · 2984 阅读 · 0 评论 -
Arcgis---Polygon 转换为 Point
ArcSene–>ArcToolBox–>Data Management Tools–>Features–>Feature to Point原创 2018-03-22 10:29:09 · 4535 阅读 · 1 评论 -
Arcgis---this control requires an arcgis engine developer kit license
VS中添加工具后,出现如下警告: this control requires an arcgis engine developer kit license解决: 开始–>Arcgis–>Software Authorization DevKit–>将“ArcGIS9.3ECP-ArcGIS 9.3全套无限期许可文件”中的3份许可文件输入原创 2017-12-17 16:18:12 · 1373 阅读 · 0 评论 -
Arcgis---从数据库中获取数据绘制道路
using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using ESRI.ArcGIS.esriSystem;using ESRI.ArcGIS.Carto;using ESRI.ArcGIS.Controls;us原创 2017-10-25 10:12:52 · 4270 阅读 · 0 评论 -
Arcgis---将坐标不同的图层显示在同一个ArcScene中
现在由2个图层,buildings.shp 以x、y坐标显示,即投影坐标,GSM900.shp 以经纬度显示,即地理坐标,如果直接放在同一个ArcScen中,则无法正常显示,这时需要坐标变换。要么都以x、y方式显示,要么都以经纬度方式显示,本文选用后者,将buildings.shp的投影坐标转换为地理坐标。文档中已说明是: WGS-84,UTM投影,按6度投影,在(50)带,中央经线为(117)如原创 2017-05-16 15:22:30 · 17355 阅读 · 0 评论 -
Arcgis---画线
public void DrawLine(IPoint p1, IPoint p2) { IPolyline line = new PolylineClass(); object _missing = Type.Missing; line.FromPoint = p1; line.ToPo原创 2017-09-12 16:47:16 · 2297 阅读 · 1 评论 -
Arcgis---绘制多边形
以三角形为例 // azimuth:方位角 // circRadius:半径 // x, y:圆心 public void DrawTriangle(double azimuth, double circRadius, double x, double y) { double Direction =原创 2017-09-12 15:25:07 · 9294 阅读 · 0 评论 -
Arcgis---画圆
public void DrawCircle_Graphics(IPoint pPoint, double radius, IRgbColor pColor) { #region 定义填充颜色与类型 ILineSymbol pLineSymbol = new SimpleLineSymbolClass();//产生一个线符号对象原创 2017-09-11 11:02:00 · 5842 阅读 · 0 评论 -
Arcgis---画线
画线List<ESRI.ArcGIS.Geometry.IPoint> linePoints = new List<ESRI.ArcGIS.Geometry.IPoint>();for (int i = 0; i < rayList.Count; i++){ // GeometryUtilities定义见下文 p = GeometryUtilities.ConstructPoin原创 2017-08-04 18:35:16 · 4517 阅读 · 0 评论 -
Arcgis---使用sql数据库中的数据刷新图层
使用sql语句select需要的数据,通过Arcgis的API插入到相应图层文件中,插入的数据可以在.dbf文件中查看,最后使用Arcgis的API刷新图层即可using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using Sys原创 2017-05-03 13:25:02 · 1848 阅读 · 4 评论 -
ArcGis + VS
https://wenku.baidu.com/view/e7e063c50408763231126edb6f1aff00bed57033.html转载 2017-04-14 14:54:16 · 1486 阅读 · 0 评论 -
ArcGIS---如何为shape文件设置投影
http://jingyan.baidu.com/article/90895e0fca1f0664ed6b0b7a.html转载 2017-05-16 10:47:56 · 4975 阅读 · 1 评论 -
Arcgis---坐标转换API
/// <summary> /// 坐标转换方法 /// </summary> public class PointConvert { private static ISpatialReferenceFactory pSRF = null; private static ISpatialReference pGCS = null;原创 2017-05-16 19:10:09 · 1235 阅读 · 0 评论 -
Arcgis---the Vertical extent is too large for proper display
在ArcScen中点击“Full Extent”图标时,显示信息如下 解决: 右击场景图层名 选择“Scene Properties”—>“Calculate From Extent”原创 2017-05-16 11:49:03 · 1508 阅读 · 0 评论 -
ArcScene---修改图层字段
ArcScene 无法修改图层字段,只能是先删除,后添加。右击图层,选择“Open Attribute Table”,右击要修改的列,选择“Delete Filed”。选择左上角的黑三角形:选择“Add Field”,填入名称、类型即可。...原创 2019-06-13 11:11:57 · 682 阅读 · 0 评论