实例介绍
【实例简介】基于C# AE构建GIS桌面端应用系统框架-全代码
(2)开发了一些常用的空间分析功能,如距离计算、密度分析、栅格插值、表面分析、象素统计、数据转换等。(3)网络分析功能,如计算最临近服务设施。(4)几何网络设施分析,如水管和阀门关停、上朔追踪、剖面分析...
文件清单
└── 基于C# AE构建GIS桌面端应用系统框架-全代码
├── app.config
├── AssemblyInfo.cs
├── Backup
│ ├── AssemblyInfo.cs
│ ├── Controls.csproj
│ ├── Controls.csproj.user
│ ├── Controls.sln
│ ├── Controls.suo
│ ├── DisConnectEditCMDCheckin.cs
│ ├── DisConnectEditCMDCheckout.cs
│ ├── DisconnectEditingFunction.cs
│ ├── DrawPolygonTool.cs
│ ├── frmAbout.cs
│ ├── frmAbout.resx
│ ├── frmAnalysisOption.cs
│ ├── frmAnalysisOption.resx
│ ├── frmClosestFacility.cs
│ ├── frmClosestFacility.resx
│ ├── frmCostWeightLineDis.cs
│ ├── frmCostWeightLineDis.resx
│ ├── frmCreateShapeFile.cs
│ ├── frmCreateShapeFile.resx
│ ├── frmDensity.cs
│ ├── frmDensity.resx
│ ├── frmDotDensity.cs
│ ├── frmDotDensity.resx
│ ├── frmFind.cs
│ ├── frmFind.resx
│ ├── frmPointQuery.cs
│ ├── frmPointQuery.resx
│ ├── frmRasterIDW.cs
│ ├── frmRasterIDW.resx
│ ├── frmRasterSpline.cs
│ ├── frmRasterSpline.resx
│ ├── frmRender.cs
│ ├── frmRender.resx
│ ├── frmRoute.cs
│ ├── frmRoute.resx
│ ├── frmScene.cs
│ ├── frmScene.resx
│ ├── frmShortestPath.cs
│ ├── frmShortestPath.resx
│ ├── frmSmoothRaster.cs
│ ├── frmSmoothRaster.resx
│ ├── frmStraightLineDis.cs
│ ├── frmStraightLineDis.resx
│ ├── GISHelperFunction.cs
│ ├── LicenseInitializer.cs
│ ├── Mainfrm.cs
│ ├── Mainfrm.resx
│ ├── ModPublicClass.cs
│ ├── moveFeatureTool.cs
│ ├── NetworkAnalysisToolBar.cs
│ ├── SelectedFeature.cs
│ ├── slovePathTool.cs
│ ├── SpatialAnalysisOption.cs
│ ├── SpatialHelperFunction.cs
│ ├── testRenderer.cs
│ ├── TOCHelper.cs
│ ├── UpStreamTrace.cs
│ └── Utility.cs
├── bin
│ └── Debug
│ ├── Controls.exe
│ ├── Controls.exe.config
│ ├── Controls.pdb
│ ├── Controls.vshost.exe
│ ├── Controls.vshost.exe.config
│ ├── Controls.xml
│ ├── QueryControl.dll
│ ├── QueryControl.pdb
│ ├── QueryControl.xml
│ ├── reg.bat
│ └── unreg.bat
├── clsProfileStruct.cs
├── ComboBoxEx.cs
├── ComboBoxEx.resx
├── ComboxBoxExItem.cs
├── comClass.cs
├── Controls
│ └── Controls.suo
├── Controls.csproj
├── Controls.csproj.user
├── Controls.sln
├── Controls.xml
├── DisconnectEditingFunction.cs
├── ExtentUpdatedEventArgs.cs
├── frm3DAnalyst.cs
├── frm3DAnalyst.Designer.cs
├── frm3DAnalyst.resx
├── frmAbout.cs
├── frmAbout.resx
├── frmAddSDEData.cs
├── frmAddSDEData.Designer.cs
├── frmAddSDEData.resx
├── frmAllocation.cs
├── frmAllocation.Designer.cs
├── frmAllocation.resx
├── frmAnalysisOption.cs
├── frmAnalysisOption.resx
├── frmAspect.cs
├── frmAspect.Designer.cs
├── frmAspect.resx
├── frmBurstReport.cs
├── frmBurstReport.Designer.cs
├── frmBurstReport.resx
├── frmCellStatistic.cs
├── frmCellStatistic.Designer.cs
├── frmCellStatistic.resx
├── frmChangeVersion.cs
├── frmChangeVersion.Designer.cs
├── frmChangeVersion.resx
├── frmClosestFacility.cs
├── frmClosestFacility.resx
├── frmContour.cs
├── frmContour.Designer.cs
├── frmContour.resx
├── frmCostWeightLineDis.cs
├── frmCostWeightLineDis.resx
├── frmCRNetASetting.cs
├── frmCRNetASetting.Designer.cs
├── frmCRNetASetting.resx
├── frmCutFill.cs
├── frmCutFill.Designer.cs
├── frmCutFill.resx
├── frmDensity.cs
├── frmDensity.resx
├── frmDrawProfile.cs
├── frmDrawProfile.Designer.cs
├── frmDrawProfile.resx
├── frmFeatureToRaster.cs
├── frmFeatureToRaster.Designer.cs
├── frmFeatureToRaster.resx
├── frmFind.cs
├── frmFind.resx
├── frmGlobeControl.cs
├── frmGlobeControl.Designer.cs
├── frmGlobeControl.resx
├── frmHillShade.cs
├── frmHillShade.Designer.cs
├── frmHillShade.resx
├── frmLoadLocations.cs
├── frmLoadLocations.resx
├── frmLoadNetworkData.cs
├── frmLoadNetworkData.Designer.cs
├── frmLoadNetworkData.resx
├── frmNetAnalystSetting.cs
├── frmNetAnalystSetting.Designer.cs
├── frmNetAnalystSetting.resx
├── frmPointQuery.cs
├── frmPointQuery.resx
├── frmRasterCalculate.cs
├── frmRasterCalculate.Designer.cs
├── frmRasterCalculate.resx
├── frmRasterIDW.cs
├── frmRasterIDW.resx
├── frmRasterSpline.cs
├── frmRasterSpline.resx
├── frmRasterToFeature.cs
├── frmRasterToFeature.Designer.cs
├── frmRasterToFeature.resx
├── frmRoute.cs
├── frmRoute.resx
├── frmSetLayerTips.cs
├── frmSetLayerTips.Designer.cs
├── frmSetLayerTips.resx
├── frmShortestPath.cs
├── frmShortestPath.resx
├── frmSlope.cs
├── frmSlope.Designer.cs
├── frmSlope.resx
├── frmStraightLineDis.cs
├── frmStraightLineDis.resx
├── frmSymbolSet.cs
├── frmSymbolSet.Designer.cs
├── frmSymbolSet.resx
├── frmUpstreamCreateOwnerList.cs
├── frmUpstreamCreateOwnerList.Designer.cs
├── frmUpstreamCreateOwnerList.resx
├── frmUtilityImageMap.cs
├── frmUtilityImageMap.Designer.cs
├── frmUtilityImageMap.resx
├── frmViewshed.cs
├── frmViewshed.Designer.cs
├── frmViewshed.resx
├── GISHelperFunction.cs
├── LicenseInitializer.cs
├── LoadLocations.cs
├── Mainfrm.cs
├── Mainfrm.resx
├── ModPublicClass.cs
├── moveFeatureTool.cs
├── obj
│ ├── Controls.csproj.FileList.txt
│ └── Debug
│ ├── Controls.ComboBoxEx.resources
│ ├── Controls.csproj.GenerateResource.Cache
│ ├── Controls.csproj.ResolveComReference.cache
│ ├── Controls.exe
│ ├── Controls.frm3DAnalyst.resources
│ ├── Controls.frmAbout.resources
│ ├── Controls.frmAddSDEData.resources
│ ├── Controls.frmAllocation.resources
│ ├── Controls.frmAnalysisOption.resources
│ ├── Controls.frmAspect.resources
│ ├── Controls.frmBurstReport.resources
│ ├── Controls.frmCellStatistic.resources
│ ├── Controls.frmChangeVersion.resources
│ ├── Controls.frmClosestFacility.resources
│ ├── Controls.frmContour.resources
│ ├── Controls.frmCostWeightLineDis.resources
│ ├── Controls.frmCRNetASetting.resources
│ ├── Controls.frmCutFill.resources
│ ├── Controls.frmDensity.resources
│ ├── Controls.frmDrawProfile.resources
│ ├── Controls.frmFeatureToRaster.resources
│ ├── Controls.frmFind.resources
│ ├── Controls.frmGlobeControl.resources
│ ├── Controls.frmHillShade.resources
│ ├── Controls.frmLoadNetworkData.resources
│ ├── Controls.frmNetAnalystSetting.resources
│ ├── Controls.frmPointQuery.resources
│ ├── Controls.frmRasterCalculate.resources
│ ├── Controls.frmRasterIDW.resources
│ ├── Controls.frmRasterSpline.resources
│ ├── Controls.frmRasterToFeature.resources
│ ├── Controls.frmRoute.resources
│ ├── Controls.frmSetLayerTips.resources
│ ├── Controls.frmShortestPath.resources
│ ├── Controls.frmSlope.resources
│ ├── Controls.frmStraightLineDis.resources
│ ├── Controls.frmSymbolSet.resources
│ ├── Controls.frmUpstreamCreateOwnerList.resources
│ ├── Controls.frmUtilityImageMap.resources
│ ├── Controls.frmViewshed.resources
│ ├── Controls.MainFrm.resources
│ ├── Controls.pdb
│ ├── Controls.projdata
│ ├── Controls.Properties.Resources.resources
│ ├── NAEngine.frmLoadLocations.resources
│ ├── Refactor
│ ├── ResolveAssemblyReference.cache
│ ├── rpaulo.toolbar.ToolBarDockArea.resources
│ ├── rpaulo.toolbar.ToolBarDockHolder.resources
│ ├── temp
│ └── TempPE
│ └── Properties.Resources.Designer.cs.dll
├── Properties
│ ├── Resources.Designer.cs
│ └── Resources.resx
├── Resources
│ ├── adddata.bmp
│ ├── open.bmp
│ ├── openNetSeetingWin.bmp
│ ├── save.bmp
│ ├── Thumbs.db
│ └── Unique.bmp
├── rpaulo
│ └── toolbar
│ ├── AllowedBorders.cs
│ ├── DockLocation.cs
│ ├── ToolBarDockArea.cs
│ ├── ToolBarDockArea.resx
│ ├── ToolBarDockHolder.cs
│ ├── ToolBarDockHolder.resx
│ └── ToolBarManager.cs
├── SelectedFeature.cs
├── slovePathTool.cs
├── SpatialAnalysisOption.cs
├── SpatialHelperFunction.cs
├── TOCHelper.cs
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
├── UpStreamTrace.cs
└── Utility.cs
15 directories, 265 files
(2)开发了一些常用的空间分析功能,如距离计算、密度分析、栅格插值、表面分析、象素统计、数据转换等。(3)网络分析功能,如计算最临近服务设施。(4)几何网络设施分析,如水管和阀门关停、上朔追踪、剖面分析...
【实例截图】
文件清单
└── 基于C# AE构建GIS桌面端应用系统框架-全代码
├── app.config
├── AssemblyInfo.cs
├── Backup
│ ├── AssemblyInfo.cs
│ ├── Controls.csproj
│ ├── Controls.csproj.user
│ ├── Controls.sln
│ ├── Controls.suo
│ ├── DisConnectEditCMDCheckin.cs
│ ├── DisConnectEditCMDCheckout.cs
│ ├── DisconnectEditingFunction.cs
│ ├── DrawPolygonTool.cs
│ ├── frmAbout.cs
│ ├── frmAbout.resx
│ ├── frmAnalysisOption.cs
│ ├── frmAnalysisOption.resx
│ ├── frmClosestFacility.cs
│ ├── frmClosestFacility.resx
│ ├── frmCostWeightLineDis.cs
│ ├── frmCostWeightLineDis.resx
│ ├── frmCreateShapeFile.cs
│ ├── frmCreateShapeFile.resx
│ ├── frmDensity.cs
│ ├── frmDensity.resx
│ ├── frmDotDensity.cs
│ ├── frmDotDensity.resx
│ ├── frmFind.cs
│ ├── frmFind.resx
│ ├── frmPointQuery.cs
│ ├── frmPointQuery.resx
│ ├── frmRasterIDW.cs
│ ├── frmRasterIDW.resx
│ ├── frmRasterSpline.cs
│ ├── frmRasterSpline.resx
│ ├── frmRender.cs
│ ├── frmRender.resx
│ ├── frmRoute.cs
│ ├── frmRoute.resx
│ ├── frmScene.cs
│ ├── frmScene.resx
│ ├── frmShortestPath.cs
│ ├── frmShortestPath.resx
│ ├── frmSmoothRaster.cs
│ ├── frmSmoothRaster.resx
│ ├── frmStraightLineDis.cs
│ ├── frmStraightLineDis.resx
│ ├── GISHelperFunction.cs
│ ├── LicenseInitializer.cs
│ ├── Mainfrm.cs
│ ├── Mainfrm.resx
│ ├── ModPublicClass.cs
│ ├── moveFeatureTool.cs
│ ├── NetworkAnalysisToolBar.cs
│ ├── SelectedFeature.cs
│ ├── slovePathTool.cs
│ ├── SpatialAnalysisOption.cs
│ ├── SpatialHelperFunction.cs
│ ├── testRenderer.cs
│ ├── TOCHelper.cs
│ ├── UpStreamTrace.cs
│ └── Utility.cs
├── bin
│ └── Debug
│ ├── Controls.exe
│ ├── Controls.exe.config
│ ├── Controls.pdb
│ ├── Controls.vshost.exe
│ ├── Controls.vshost.exe.config
│ ├── Controls.xml
│ ├── QueryControl.dll
│ ├── QueryControl.pdb
│ ├── QueryControl.xml
│ ├── reg.bat
│ └── unreg.bat
├── clsProfileStruct.cs
├── ComboBoxEx.cs
├── ComboBoxEx.resx
├── ComboxBoxExItem.cs
├── comClass.cs
├── Controls
│ └── Controls.suo
├── Controls.csproj
├── Controls.csproj.user
├── Controls.sln
├── Controls.xml
├── DisconnectEditingFunction.cs
├── ExtentUpdatedEventArgs.cs
├── frm3DAnalyst.cs
├── frm3DAnalyst.Designer.cs
├── frm3DAnalyst.resx
├── frmAbout.cs
├── frmAbout.resx
├── frmAddSDEData.cs
├── frmAddSDEData.Designer.cs
├── frmAddSDEData.resx
├── frmAllocation.cs
├── frmAllocation.Designer.cs
├── frmAllocation.resx
├── frmAnalysisOption.cs
├── frmAnalysisOption.resx
├── frmAspect.cs
├── frmAspect.Designer.cs
├── frmAspect.resx
├── frmBurstReport.cs
├── frmBurstReport.Designer.cs
├── frmBurstReport.resx
├── frmCellStatistic.cs
├── frmCellStatistic.Designer.cs
├── frmCellStatistic.resx
├── frmChangeVersion.cs
├── frmChangeVersion.Designer.cs
├── frmChangeVersion.resx
├── frmClosestFacility.cs
├── frmClosestFacility.resx
├── frmContour.cs
├── frmContour.Designer.cs
├── frmContour.resx
├── frmCostWeightLineDis.cs
├── frmCostWeightLineDis.resx
├── frmCRNetASetting.cs
├── frmCRNetASetting.Designer.cs
├── frmCRNetASetting.resx
├── frmCutFill.cs
├── frmCutFill.Designer.cs
├── frmCutFill.resx
├── frmDensity.cs
├── frmDensity.resx
├── frmDrawProfile.cs
├── frmDrawProfile.Designer.cs
├── frmDrawProfile.resx
├── frmFeatureToRaster.cs
├── frmFeatureToRaster.Designer.cs
├── frmFeatureToRaster.resx
├── frmFind.cs
├── frmFind.resx
├── frmGlobeControl.cs
├── frmGlobeControl.Designer.cs
├── frmGlobeControl.resx
├── frmHillShade.cs
├── frmHillShade.Designer.cs
├── frmHillShade.resx
├── frmLoadLocations.cs
├── frmLoadLocations.resx
├── frmLoadNetworkData.cs
├── frmLoadNetworkData.Designer.cs
├── frmLoadNetworkData.resx
├── frmNetAnalystSetting.cs
├── frmNetAnalystSetting.Designer.cs
├── frmNetAnalystSetting.resx
├── frmPointQuery.cs
├── frmPointQuery.resx
├── frmRasterCalculate.cs
├── frmRasterCalculate.Designer.cs
├── frmRasterCalculate.resx
├── frmRasterIDW.cs
├── frmRasterIDW.resx
├── frmRasterSpline.cs
├── frmRasterSpline.resx
├── frmRasterToFeature.cs
├── frmRasterToFeature.Designer.cs
├── frmRasterToFeature.resx
├── frmRoute.cs
├── frmRoute.resx
├── frmSetLayerTips.cs
├── frmSetLayerTips.Designer.cs
├── frmSetLayerTips.resx
├── frmShortestPath.cs
├── frmShortestPath.resx
├── frmSlope.cs
├── frmSlope.Designer.cs
├── frmSlope.resx
├── frmStraightLineDis.cs
├── frmStraightLineDis.resx
├── frmSymbolSet.cs
├── frmSymbolSet.Designer.cs
├── frmSymbolSet.resx
├── frmUpstreamCreateOwnerList.cs
├── frmUpstreamCreateOwnerList.Designer.cs
├── frmUpstreamCreateOwnerList.resx
├── frmUtilityImageMap.cs
├── frmUtilityImageMap.Designer.cs
├── frmUtilityImageMap.resx
├── frmViewshed.cs
├── frmViewshed.Designer.cs
├── frmViewshed.resx
├── GISHelperFunction.cs
├── LicenseInitializer.cs
├── LoadLocations.cs
├── Mainfrm.cs
├── Mainfrm.resx
├── ModPublicClass.cs
├── moveFeatureTool.cs
├── obj
│ ├── Controls.csproj.FileList.txt
│ └── Debug
│ ├── Controls.ComboBoxEx.resources
│ ├── Controls.csproj.GenerateResource.Cache
│ ├── Controls.csproj.ResolveComReference.cache
│ ├── Controls.exe
│ ├── Controls.frm3DAnalyst.resources
│ ├── Controls.frmAbout.resources
│ ├── Controls.frmAddSDEData.resources
│ ├── Controls.frmAllocation.resources
│ ├── Controls.frmAnalysisOption.resources
│ ├── Controls.frmAspect.resources
│ ├── Controls.frmBurstReport.resources
│ ├── Controls.frmCellStatistic.resources
│ ├── Controls.frmChangeVersion.resources
│ ├── Controls.frmClosestFacility.resources
│ ├── Controls.frmContour.resources
│ ├── Controls.frmCostWeightLineDis.resources
│ ├── Controls.frmCRNetASetting.resources
│ ├── Controls.frmCutFill.resources
│ ├── Controls.frmDensity.resources
│ ├── Controls.frmDrawProfile.resources
│ ├── Controls.frmFeatureToRaster.resources
│ ├── Controls.frmFind.resources
│ ├── Controls.frmGlobeControl.resources
│ ├── Controls.frmHillShade.resources
│ ├── Controls.frmLoadNetworkData.resources
│ ├── Controls.frmNetAnalystSetting.resources
│ ├── Controls.frmPointQuery.resources
│ ├── Controls.frmRasterCalculate.resources
│ ├── Controls.frmRasterIDW.resources
│ ├── Controls.frmRasterSpline.resources
│ ├── Controls.frmRasterToFeature.resources
│ ├── Controls.frmRoute.resources
│ ├── Controls.frmSetLayerTips.resources
│ ├── Controls.frmShortestPath.resources
│ ├── Controls.frmSlope.resources
│ ├── Controls.frmStraightLineDis.resources
│ ├── Controls.frmSymbolSet.resources
│ ├── Controls.frmUpstreamCreateOwnerList.resources
│ ├── Controls.frmUtilityImageMap.resources
│ ├── Controls.frmViewshed.resources
│ ├── Controls.MainFrm.resources
│ ├── Controls.pdb
│ ├── Controls.projdata
│ ├── Controls.Properties.Resources.resources
│ ├── NAEngine.frmLoadLocations.resources
│ ├── Refactor
│ ├── ResolveAssemblyReference.cache
│ ├── rpaulo.toolbar.ToolBarDockArea.resources
│ ├── rpaulo.toolbar.ToolBarDockHolder.resources
│ ├── temp
│ └── TempPE
│ └── Properties.Resources.Designer.cs.dll
├── Properties
│ ├── Resources.Designer.cs
│ └── Resources.resx
├── Resources
│ ├── adddata.bmp
│ ├── open.bmp
│ ├── openNetSeetingWin.bmp
│ ├── save.bmp
│ ├── Thumbs.db
│ └── Unique.bmp
├── rpaulo
│ └── toolbar
│ ├── AllowedBorders.cs
│ ├── DockLocation.cs
│ ├── ToolBarDockArea.cs
│ ├── ToolBarDockArea.resx
│ ├── ToolBarDockHolder.cs
│ ├── ToolBarDockHolder.resx
│ └── ToolBarManager.cs
├── SelectedFeature.cs
├── slovePathTool.cs
├── SpatialAnalysisOption.cs
├── SpatialHelperFunction.cs
├── TOCHelper.cs
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
├── UpStreamTrace.cs
└── Utility.cs
15 directories, 265 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论