
AE
Sun_xiangyan
地理信息科学GIS
展开
-
Java调用AE实现创建泰森多边形(voronoi图)
public void CreatVoronoi(IFeatureClass pointFeaCls,IFeatureClass voronoiFeaCls,IPolygon clippingPolygon){ try { if (pointFeaCls.getShapeType() == esriGeometryType.esriGeometryPoint) { ...转载 2019-01-17 21:51:52 · 967 阅读 · 0 评论 -
AE中获取当前使用的Command控件名
//检查当前使用的工具 //ITool tool= axMapControl1.CurrentTool; ICommand com = axMapControl1.CurrentTool as ICommand; //获取当前实用工具的名称 string strcom = com....原创 2019-01-03 12:19:27 · 404 阅读 · 0 评论 -
c#+ArcGIS Engine-获取矢量图层的空间参考
#region 获取点图层的空间坐标系 string pathName = System.IO.Path.GetDirectoryName(inputPointPath); string fileName = System.IO.Path.GetFileNameWithoutExtension(inputPointPath); ...原创 2019-01-14 10:47:26 · 882 阅读 · 0 评论 -
C#+Arcgis Engine 唯一值渲染
public static void Renderer(ILayer layer) { IFeatureLayer pFeatureLayer = layer as IFeatureLayer; IGeoFeatureLayer pGeoFeatureLayer = layer as IGeoFeatureLayer...原创 2019-01-16 12:06:11 · 1624 阅读 · 0 评论 -
读取shp数据的属性表数据(*.dbf)
//获取shp文件的属性表数据 public DataTable GetShpDataTable(string shpPath) { System.Data.Odbc.OdbcConnection conn = new System.Data.Odbc.OdbcConnection(); string table...原创 2019-01-16 21:15:26 · 4845 阅读 · 0 评论 -
MoveLayer
pMap.MoveLayer(pMoveLayer,toIndex); axMapControl1.ActiveView.Refresh();原创 2019-01-16 22:03:12 · 385 阅读 · 0 评论