登录
首页 » C# » GISAlgRasterLine

GISAlgRasterLine

于 2010-11-09 发布 文件大小:140KB
0 195
下载积分: 1 下载次数: 37

代码说明:

  实现GIS算法的基本功能,如绘画,矢量转栅格,橡皮筋技术,点选要素等功能。(Algorithm to achieve the basic functions of GIS, such as painting, Vector to raster, the rubber band technique, click on elements of other functions.)

文件列表:

GISAlgRasterLine
................\Geometry
................\........\bin
................\........\...\Debug
................\........\...\.....\Geometry.dll,20480,2010-10-14
................\........\...\.....\Geometry.pdb,24064,2010-10-14
................\........\ClassDiagram1.cd,1480,2004-01-02
................\........\Geometry.csproj,2178,2004-01-02
................\........\Geometry_T.cs,150,2004-01-02
................\........\Line_T.cs,1326,2004-01-02
................\........\obj
................\........\...\Debug
................\........\...\.....\Geometry.dll,20480,2010-10-14
................\........\...\.....\Geometry.pdb,24064,2010-10-14
................\........\...\.....\Refactor
................\........\...\.....\........\Geometry.dll,16384,2010-11-04
................\........\...\.....\TempPE
................\........\...\Geometry.csproj.FileList.txt,138,2010-11-09
................\........\Path_T.cs,1265,2004-01-03
................\........\Point_T.cs,844,2004-01-02
................\........\Properties
................\........\..........\AssemblyInfo.cs,1319,2004-01-02
................\........\Ring_T.cs,348,2004-01-02
................\GISAlg
................\......\bin
................\......\...\Debug
................\......\...\.....\Geometry.dll,20480,2010-10-14
................\......\...\.....\Geometry.pdb,24064,2010-10-14
................\......\...\.....\GISAlg.exe,36864,2010-11-09
................\......\...\.....\GISAlg.pdb,65024,2010-11-09
................\......\...\.....\GISAlg.vshost.exe,44544,2010-10-28
................\......\CompareX.cs,341,2010-11-09
................\......\CompareY.cs,341,2010-11-09
................\......\Form1.cs,26028,2010-11-09
................\......\Form1.Designer.cs,11844,2010-11-09
................\......\Form1.resx,7704,2010-11-09
................\......\GISAlg.csproj,3684,2010-11-09
................\......\GISAlg.csproj.user,250,2004-01-11
................\......\Map_T.cs,422,2004-01-02
................\......\obj
................\......\...\Debug
................\......\...\.....\GISAlg.csproj.GenerateResource.Cache,842,2010-11-09
................\......\...\.....\GISAlg.exe,36864,2010-11-09
................\......\...\.....\GISAlg.Form1.resources,1158,2010-11-09
................\......\...\.....\GISAlg.pdb,65024,2010-11-09
................\......\...\.....\GISAlg.Properties.Resources.resources,180,2010-10-14
................\......\...\.....\Refactor
................\......\...\.....\ResolveAssemblyReference.cache,5778,2010-11-09
................\......\...\.....\TempPE
................\......\...\GISAlg.csproj.FileList.txt,309,2010-11-09
................\......\PixelPosition_T.cs,555,2010-11-04
................\......\Program.cs,500,2004-01-02
................\......\Properties
................\......\..........\AssemblyInfo.cs,1168,2010-09-09
................\......\..........\Resources.Designer.cs,2866,2010-09-09
................\......\..........\Resources.resx,5612,2010-09-09
................\......\..........\Settings.Designer.cs,1089,2010-09-09
................\......\..........\Settings.settings,249,2010-09-09
................\......\Raster_T.cs,979,2010-11-04
................\GISAlg.sln,1385,2004-01-02
................\实验三、图形编辑.doc,65024,2010-10-14
................\实验四、矢量栅格化算法.doc,73216,2010-10-24

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • liti
    《C++程序设计教程(第2版)》例题源码,看看是不是你需要的(" C++ programming tutorial (2) Example source code to see is not what you need)
    2013-03-27 12:36:49下载
    积分:1
  • Mapinfo
    Mapinfo 数字化 概念 原理 应用(Mapinfo digitization conception principle application)
    2011-12-26 16:55:58下载
    积分:1
  • 直流电机调速驱动
    通过485通讯控制直流电机实现:正反转控制、速度调节、位置记忆等功能。
    2020-04-07下载
    积分:1
  • ipmsg342_installer
    ip messanger installer
    2013-12-31 03:08:57下载
    积分:1
  • ZNodes
    说明:  qt中提供了QGphicsView,QGraphicsScene,QGraphicsItem,QGraphicsPixmapItem是QGraphicsItem的子类 分辨创建它们的实例:view,scene,item,然后通过各自的方法scene->addItem(item);view->setScene(scene);就可以达到类似下图的效果,想要进一步定制,则要继承QGraphicsItem或QGraphicsPixmapItem,然后重写paint()、boundingRect()等方法,此外如果还想要获取鼠标事件,重写mousePressEvent等事件就好了,注意,一旦重写了mousePressEvent方法,就以为了qt不会再自动处理item的任何press事件了,可以在你重写的mousePressEvent方法中最后添加QGraphicsItem::mousePressEvent(event);解决这个问题,就是说你获取到了鼠标事件,但是依然让qt处理这个鼠标事件。(QGphics View, QGraphics Scene, QGraphics Item and QGraphics PixmapItem are provided in qt. They are subclasses of QGraphics Item. Resolve the instances of creating them: view, scene, item, and then use their respective methods scene - > addItem (item); view - > setScene (scene); you can achieve the effect similar to the figure below. If you want to further customize, you need to inherit QGraphics Item or QGraphics Pixmap Item, and then rewrite paint (), boundingRect () and other methods, and if you want to do so. If you want to get mouse events, rewrite events like mousePressEvent. Note that once you rewrite the mousePressEvent method, you think that QT will no longer automatically handle any press events of item. You can finally add QGraphics Item:: mousePressEvent (event) to your rewritten mousePressEvent method to solve this problem. That is, you get the mouse event, but still let QT handle the mouse event.)
    2020-06-16 20:20:01下载
    积分:1
  • u
    说明:  C#U盘识别代码。 我找了半天才找得到的(C# U disc identification code. I am looking for a long time to find the)
    2008-06-13 17:32:33下载
    积分:1
  • ShortMessageSystem
    短信群发系统,在一些业务范围广泛的公司中,当公司有了新的通知要告诉在外地的员工,通常使用拨打电话的方式,这样虽然能把事情说清楚,但是当在外的员工比较多时,工作量很大,为了解决这个问题,可以开发一个企业短信群发管理系统。企业短信群发管理系统主要利用硬件短信猫发送短信,并且可以查看SIM卡中收到的短信。(Mass messaging system, in a number of business a wide range of companies, when the company has a new notification to tell the staff in the field, normally used by calling the way, so although things can make it clear, but when the staff out for a long time compared , the heavy workload, in order to resolve this problem, can develop an enterprise management system for mass text messaging. Short Message management system for enterprises mainly use the hardware to send SMS text messages a cat and can view the SIM card text messages received.)
    2009-07-16 13:00:21下载
    积分:1
  • VisualCnetProgramming100
    Visual C++.NET小游戏开发时尚编程百例 各种益智类 射击类 等等的小游戏开发(Visual C++. NET Programming 100 cases of fashion a small game developers)
    2009-10-28 10:48:41下载
    积分:1
  • BFS
    Breadth First Search Algorithm
    2014-10-25 12:54:10下载
    积分:1
  • CGps
    GPS 单点定位,高度角随机模型加权,电离层K8模型改正。(GPS single point positioning, elevation weighted random model, ionosphere corrections K8 model.)
    2015-05-22 13:42:16下载
    积分:1
  • 696516资源总数
  • 106442会员总数
  • 11今日下载