从ArcGIS 10开始,ArcGIS开始支持后台地理处理。使用Geoprocessor.ExecuteAsync()方法,可以在ArcGIS应用程序的后台执行工具或模型工具。也就是说当工具在后台进程中执行时,ArcGIS控件(例如,MapControl、PageLayoutControl、Glob ...
分类:
其他好文 时间:
2020-04-06 17:16:14
阅读次数:
195
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Input; using System.Threading.Tasks; using ...
分类:
其他好文 时间:
2020-04-06 14:00:06
阅读次数:
71
public void ShowCustomPopup() { //Get the active map view. var mapView = MapView.Active; if (mapView == null) return; //Create custom popup content va ...
分类:
其他好文 时间:
2020-04-06 00:01:25
阅读次数:
97
https://www.oreilly.com/radar/questioning-the-lambda-architecture/ What is a Lambda Architecture and how do I become one? The Lambda Architecture look ...
分类:
其他好文 时间:
2020-04-05 22:13:21
阅读次数:
68
try{ var mapView = MapView.Active; if (mapView != null) { var map = mapView.Map; if (map != null) { foreach (StandaloneTable table in map.StandaloneTa ...
分类:
其他好文 时间:
2020-04-04 00:15:12
阅读次数:
66
protected override async void OnClick(){ using (var progress = new ProgressDialog("Showing Progress", "Canceled", 100, false)) { var status = new Canc ...
分类:
其他好文 时间:
2020-04-04 00:03:48
阅读次数:
114
前言:Cadence是一个比AD更加强大的电路设计IDE,因此掌握Cadence也是提升自我的一大路径。 建立原理图库 1.打开Orcad Capture CIS , 选择File-New-Library. 2.选中.olb文件,右键:New Part,建立新的元器件原理图库。 3.绘制一个矩形外框 ...
分类:
其他好文 时间:
2020-04-03 21:48:51
阅读次数:
150
The easiest way is to check the well-known id. if (sr.Wkid == SpatialReferences.WGS84.Wkid) IsWGS84 = true; or you could use the hard-coded wkid = 432 ...
分类:
其他好文 时间:
2020-04-02 19:33:38
阅读次数:
108
一、描述Spring遇到嵌套事务时,当被嵌套的事务被定义为“PROPAGATION_REQUIRES_NEW”时,内层Service的方法被调用时,外层方法的事务被挂起;内层事务相对于外层事务是完全独立的,有独立的隔离性等等。二、实验但实验时却遇到一个奇怪的问题:1、当ServiceA.a()方法调 ...
分类:
其他好文 时间:
2020-04-01 14:49:55
阅读次数:
132
CAD ObjectARX扩展工具的源码(三)//得到文本边界oid CDrawFunction::getTextBoundary(AcDbObjectId objectId,double offset,AcDbObjectId &textBoundaryId){AcDbExtents Ext;Ac ...
分类:
其他好文 时间:
2020-04-01 01:19:09
阅读次数:
101