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

为我们的世界建模

导航

2011年9月27日

PostGIS学习笔记

摘要: http://download.csdn.net/detail/kisstome88/3639724 阅读全文

posted @ 2011-09-27 11:32 kisstome88 阅读(203) 评论(0) 推荐(0) 编辑

2011年8月21日

Asp.net中EditItemTemplate绑定数据方法

摘要: protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e){#region 绑定ItemTemplate的方法if (e.Row.RowType == DataControlRowType.DataRow){ DropDownList ddl = (DropDownList)e.Row.FindControl("DropDownList1");List<string> source = new List<string>();source.Add(" 阅读全文

posted @ 2011-08-21 21:35 kisstome88 阅读(1130) 评论(0) 推荐(0) 编辑

2011年7月28日

Ext官方学习教程

摘要: Tutorial:EXT简介 http://extjs.com/learn/Tutorial:Introduction_to_Ext_2.0_(Chinese) Tutorial:Ext 2简述 http://extjs.com/learn/Ext_2_Overview_(Chinese) Tutorial:EXT新手建议 http://extjs.com/learn/Tutorial:EXT新手建议 Tutorial:怎么轻松地进入Ext的世界? http://extjs.com/learn/Tutorial:Playing_With_Ext_The_Easy_Way_(Chinese) T 阅读全文

posted @ 2011-07-28 13:51 kisstome88 阅读(1232) 评论(0) 推荐(0) 编辑

2011年5月25日

ArcSDE中创建要素类

摘要: IFields pFields = new FieldsClass();IFieldsEdit pFieldsEdit = (IFieldsEdit)pFields; IGeometryDef pGometryDef = new GeometryDefClass();IGeometryDefEdit pGeometryDefEdit = (IGeometryDefEdit)pGometryDef;{pGeometryDefEdit.GeometryType_2 = esriGeometryType.esriGeometryPolygon; pGeometryDefEdit.HasM_2 = f 阅读全文

posted @ 2011-05-25 15:51 kisstome88 阅读(683) 评论(0) 推荐(0) 编辑

2011年1月29日

地图分辨率、比例尺

摘要: 地面分辨率(GroundResolution)  地面分辨率是以一个像素(pixel)代表的地面尺寸(米)。以微软Bing Maps为例,当Level为1时,图片大小为512*512(4个Tile),那么赤道空间分辨率为:赤道周长/512。其他纬度的空间分辨率则为纬度圈长度/512,极端的北极则为0。Level为2时,赤道的空间分辨率为赤道周长/1024,其他纬度为纬度圈长度1024。很明显,GroundResolution取决于两个参数,缩放级别Level和纬度latitude,Level决定像素的多少,latitude决定地面距离的长短。  地面分辨率的公式为,单位:米/像素:  grou 阅读全文

posted @ 2011-01-29 10:45 kisstome88 阅读(4028) 评论(0) 推荐(0) 编辑

2011年1月11日

The Product License has not been initialized

摘要: The Product License has not been initialized报错原因:未初始化许可证解决方法:IAoInitialize m_AoInitialize = new AoInitialize(); m_AoInitialize.Initialize(esriLicenseProductCode.esriLicenseProductCodeArcInfo); 阅读全文

posted @ 2011-01-11 17:25 kisstome88 阅读(1729) 评论(0) 推荐(0) 编辑

2010年10月29日

C#GDI+双缓冲高效绘图

摘要: Rectangle rectangle = e.ClipRectangle;BufferedGraphicsContext GraphicsContext = BufferedGraphicsManager.Current;BufferedGraphics myBuffer = GraphicsContext.Allocate(e.Graphics, e.ClipRectangle);Graphi... 阅读全文

posted @ 2010-10-29 13:57 kisstome88 阅读(1126) 评论(1) 推荐(0) 编辑

2010年10月8日

获取指定坐标处的栅格单元格的值

摘要: privatedouble getRasterCellValue(IPoint pPoint, IRasterLayer pRasterLayer) { IIdentify pIdentify = (IIdentify)pRasterLayer; IArray pArray = pIdentify.Identify(pPoint); IRasterIdentifyObj2 pRasterIde... 阅读全文

posted @ 2010-10-08 13:50 kisstome88 阅读(841) 评论(0) 推荐(0) 编辑

2010年6月12日

C#在线程中调用控件的方法

摘要: C#在线程中调用控件的方法public delegate void CallSetLogin();private void btnOK_Click(object sender, EventArgs e){Thread pThread = new Thread(new ThreadStart(Login)); pThread.Start();}private void Login(){SetLogi... 阅读全文

posted @ 2010-06-12 15:16 kisstome88 阅读(589) 评论(0) 推荐(0) 编辑

2010年6月9日

Oracle ora-01045错误解决方法

摘要: 问题:在用PL/SQL进行登录时,出现:”ora-01045 :user system lacks create session privilege; logon denied”。原因:没有权限在Google找到这段的说明:What does “ORA-01045: user USERNAME lacks CREATE SESSION privilege;log... 阅读全文

posted @ 2010-06-09 10:40 kisstome88 阅读(12470) 评论(1) 推荐(0) 编辑