摘要: protected DockpaneCadastralMapViewModel() { QueuedTask.Run(() => { LayersRemovedEvent.Subscribe(OnLayerRemoved); LayersAddedEvent.Subscribe(OnLayerAdd 阅读全文
posted @ 2025-08-02 17:00 yzhyingcool 阅读(16) 评论(0) 推荐(0)
摘要: /// <summary> /// 向Combobox加载要素图层名集合。 /// </summary> public ICommand LoadFeatureLayerNamesCommand { get; set; } private void LoadFeatureLayerNames() { 阅读全文
posted @ 2025-08-02 16:53 yzhyingcool 阅读(18) 评论(0) 推荐(0)
摘要: 源:[1052] Add the ArcPy Python interpreter in VS Code - McDelfino - 博客园 How to configure Visual Studio Code with ArcGIS Pro’s Python Environment To add 阅读全文
posted @ 2025-03-06 11:00 yzhyingcool 阅读(129) 评论(0) 推荐(0)
摘要: vmware安装包下载地址: https://softwareupdate.vmware.com/cds/vmw-desktop/ vmware fusion下载地址: https://softwareupdate.vmware.com/cds/vmw-desktop/fusion/ Win11AR 阅读全文
posted @ 2025-03-03 22:39 yzhyingcool 阅读(884) 评论(0) 推荐(0)
摘要: 修改项目的csproj文件 <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net6.0-windows</TargetFramework> <Nullable>enable</Nullable> <UseWPF>tr 阅读全文
posted @ 2023-11-26 11:39 yzhyingcool 阅读(345) 评论(0) 推荐(1)
摘要: 1 public static class StandardSubdivisionConvertor 2 { 3 /// <summary> 4 /// 通过图幅号获取四角经纬度坐标 5 /// </summary> 6 /// <param name="subdivCode"></param> 7 阅读全文
posted @ 2023-11-05 22:10 yzhyingcool 阅读(113) 评论(0) 推荐(0)
摘要: 在updateMessages方法中检查输入图层数据源的工作空间是否是本地数据,如果不是,设置错误。在updateParameters方法中从图层派生出第4个参数,即输出要素类的路径。注意该参数的类型需要是“派生(Derived)” import arcpy class ToolValidator( 阅读全文
posted @ 2023-10-28 17:56 yzhyingcool 阅读(165) 评论(0) 推荐(0)
摘要: Word里有插入特殊符号的功能,如下图。 通过编程语言实现在Word表格插入特殊符号操作,可以参考下面VBA代码。 ActiveDocument.Tables(1).Range.Cells(2).Select Selection.MoveEnd Unit:=wdCharacter, Count:=- 阅读全文
posted @ 2023-05-07 09:28 yzhyingcool 阅读(425) 评论(0) 推荐(0)
摘要: RPA是机器人流程自动化(Robotic process automation)的简称,它可以通过低代码开发方式,模仿最终用户在电脑的手动操作,创建工作流,实现工作流程的自动化。该技术起源于上世纪90年代,2015年至今进入高速发展阶段,应用链条更长,功能不断增强。“影刀”便是一款值得推荐的RPA工 阅读全文
posted @ 2023-04-23 15:05 yzhyingcool 阅读(4125) 评论(0) 推荐(0)
摘要: 使用ArcPy创建要素的代码段前面有发布,【arcpy】创建点、线、面(孔洞、环、多部件)要素、要素类 Q:这些代码里创建要素后会存在XY精度损失的问题,如何解决? A:解决方案是在创建要素过程中指定正确的空间参考。 答案来自 geometry - How to handle coordinates 阅读全文
posted @ 2023-04-16 17:04 yzhyingcool 阅读(312) 评论(0) 推荐(0)