GIS与人工智能是未来GIS的归宿

为我们的世界建模

导航

2009年6月26日

Color转ArcEngine的IRgbColor与IColor

摘要: Color转ArcEngine的IRgbColor与IColor//Color转ArcEngine的IRgbColorpublic static IRgbColor ColorToIRgbColor(Color pColor){ IRgbColor pRgbColor = new RgbColorClass(); pRgbColor.RGB = pColor.B * 65536 + pColor.... 阅读全文

posted @ 2009-06-26 12:20 kisstome88 阅读(970) 评论(0) 推荐(0)

2009年6月11日

SceneControl进行简单符号化

摘要: SceneControl进行简单符号化ISimpleRenderer pSimpleRenderer = new SimpleRendererClass();ISimpleMarkerSymbol pSMS = new SimpleMarkerSymbolClass();pSMS.Size = 20;pSimpleRenderer.Symbol =(ISymbol ) pSMS;IGeoFeatu... 阅读全文

posted @ 2009-06-11 22:21 kisstome88 阅读(753) 评论(0) 推荐(0)

2009年6月8日

获取栅格图层(Raster)的属性表

摘要: 获取栅格图层(Raster)的属性表矢量图层的属性表相信大家都会操作就不多说了,下面说说栅格图层的属性表操作pNewRaster是你的Raster图层IRasterBandCollection pRasterBC =(IRasterBandCollection ) pNewRaster;IRasterBand pRasterBand = pRasterBC.Item(0);ITable pTabl... 阅读全文

posted @ 2009-06-08 20:50 kisstome88 阅读(3017) 评论(2) 推荐(0)

2009年6月7日

ArcEngine可视分析

摘要: ArcEngine可视分析IRasterLayer pRasterLayer = new RasterLayerClass();pRasterLayer = (IRasterLayer)SC1.Scene.get_Layer(1);//Raster图层IRaster pRaster = pRasterLayer.Raster;ISurfaceOp pSurfaceOp = new RasterSu... 阅读全文

posted @ 2009-06-07 11:54 kisstome88 阅读(1282) 评论(0) 推荐(0)

2009年5月31日

C#进度条(Backgroudworker)

摘要: C#进度条(Backgroudworker) using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace 进度条2{ pub... 阅读全文

posted @ 2009-05-31 09:29 kisstome88 阅读(1699) 评论(0) 推荐(0)

2009年5月22日

GlobeControl画的类似Google Earth中的网格线

摘要: GlobeControl画的类似Google Earth中的网格线IGraphicsContainer3D pGCon3D = GC1.GlobeDisplay.Scene.BasicGraphicsLayer as IGraphicsContainer3D; IRgbColor pColor = new RgbColorClass(); pColor.Green = 255; ISimpleLi... 阅读全文

posted @ 2009-05-22 16:26 kisstome88 阅读(1000) 评论(0) 推荐(0)

2009年5月20日

更改文件夹图标

摘要: 更改文件夹图标1.新建一个文件夹并且更改这个文件夹的图标(更改图村你会吧)2.经过更改后的文件夹会在目录下产生一个desktop.ini的文件(工具->文件夹选项->查看->去掉“隐藏受保护的操作系统文件”并选中显示所有文件和文件夹)双击desktop.ini会看到[.ShellClassInfo]IconFile=%SystemRoot%\system3... 阅读全文

posted @ 2009-05-20 20:17 kisstome88 阅读(456) 评论(0) 推荐(0)

2009年4月8日

File GeoDatabase先添加列,后添加行,最后添加记录

摘要: File GeoDatabase先添加列,后添加行,最后添加记录 IWorkspaceFactory pGDBworkspaceFactory = new FileGDBWorkspaceFactoryClass(); IWorkspace pGDBWorkspace = pGDBworkspaceFactory.OpenFromFile(@"D:\GIS\GuangYuan\GuangYua... 阅读全文

posted @ 2009-04-08 18:58 kisstome88 阅读(606) 评论(0) 推荐(0)

2009年4月5日

得到Raster的一些基本信息(高程值,列数,列数)

摘要: 得到Raster的一些基本信息(高程值,列数,列数) IRasterLayer pRasterLayer = (IRasterLayer)pSC1.Scene.get_Layer(0); IRaster pRaster = pRasterLayer.Raster; int pRowCount = pRasterLayer.RowCount; IRa... 阅读全文

posted @ 2009-04-05 14:26 kisstome88 阅读(1227) 评论(2) 推荐(0)

ArcEngine+Raster坡度分析

摘要: Raster坡度分析 IRasterLayer pRasterLayer=new RasterLayerClass (); pRasterLayer =(IRasterLayer ) SC1 .Scene .get_Layer (0); IRaster pIRaster = pRasterLayer.Raster ; ISurfaceOp pSurfaceOp=new RasterSurf... 阅读全文

posted @ 2009-04-05 14:16 kisstome88 阅读(1822) 评论(1) 推荐(0)