• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

gisoracle

  • 博客园
  • 联系
  • 订阅
  • 管理

公告

03 2020 档案

ArcGIS Pro批量加字段测试代码,很慢
摘要:private async void BatchAddField() { MapView mapView = MapView.Active; if (mapView == null) { return; } FeatureLayer featureLayer = mapView.Map.Layers 阅读全文

posted @ 2020-03-31 16:35 gisai 阅读(299) 评论(0) 推荐(0)

ArcGIS Pro线延长
摘要:ExtendFlags含义0 Default = 0 // By default, extension considers both ends of parts. The old ends remain and new // points are added at the extended ends 阅读全文

posted @ 2020-03-29 19:34 gisai 阅读(789) 评论(0) 推荐(0)

ArcGIS Pro 屏幕画框矩形打印含四周注记
摘要:ArcGIS Pro 屏幕画框矩形打印含四周注记 阅读全文

posted @ 2020-03-29 09:35 gisai 阅读(298) 评论(0) 推荐(0)

ArcGIS Pro 地图刷新和布局刷新
摘要:MapView.Active.Redraw(true); await QueuedTask.Run(() => layoutView.Refresh()); 阅读全文

posted @ 2020-03-29 08:34 gisai 阅读(807) 评论(0) 推荐(0)

枚举转字符串
摘要:string str = Enum.GetName(typeof(FontStyle), fontDialog1.Font.Style); MessageBox.Show(str); 阅读全文

posted @ 2020-03-28 16:09 gisai 阅读(301) 评论(0) 推荐(0)

VS2019 Visual Studio 2019 Key
摘要:原文地址:https://bbs.csdn.net/topics/392562434 Visual Studio 2019 Enterprise 企业版:BF8Y8-GN2QH-T84XB-QVY3B-RC4DF Visual Studio 2019 Professional 专业版:NYWVH-H 阅读全文

posted @ 2020-03-27 09:41 gisai 阅读(485) 评论(0) 推荐(0)

ArcGIS Pro Pagex保存和导入
摘要:await QueuedTask.Run(() => { layout.SaveAsFile(filePath); }); IProjectItem pagx = ItemFactory.Instance.Create(@"C:\Temp\gisoracle.pagx") as IProjectIt 阅读全文

posted @ 2020-03-27 08:05 gisai 阅读(377) 评论(0) 推荐(0)

ArcGIS Pro界面定义XML
摘要:<?xml version="1.0" encoding="UTF-8"?> <ArcGIS defaultAssembly="ArcGIS.Desktop.Layouts.dll" defaultNamespace="ArcGIS.Desktop.Layouts" xmlns="http://sc 阅读全文

posted @ 2020-03-27 07:55 gisai 阅读(641) 评论(0) 推荐(0)

Can annotations be created or edited in ArcGIS Pro?
摘要:No, annotations cannot be created or edited in ArcGIS Pro. Furthermore, the Convert Annotation to Text function in ArcMap is not currently available i 阅读全文

posted @ 2020-03-26 12:21 gisai 阅读(188) 评论(0) 推荐(0)

ArcGIS Pro 新建一个Aprx,导入Mxd
摘要:CreateProjectSettings projectSettings = new CreateProjectSettings() { //Sets the project's name Name = "New Project", //Path where new project will be 阅读全文

posted @ 2020-03-26 11:57 gisai 阅读(1586) 评论(0) 推荐(0)

ArcGIS Pro项目保存和数据编辑保存
摘要:await Project.Current.SaveAsAsync(@"C:\Data\MyProject1\MyNewProject1.aprx"); bool saveResult = await Project.Current.SaveEditsAsync(); 阅读全文

posted @ 2020-03-26 11:42 gisai 阅读(1322) 评论(0) 推荐(0)

ArcGIS Pro批量线分割面,也可以线分割线
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-26 11:21 gisai 阅读(1474) 评论(0) 推荐(0)

ArcGIS Pro 删除选择范围的数据和批量裁剪clip
摘要:protected override Task<bool> OnSketchCompleteAsync(Geometry geometry) { QueuedTask.Run(() => { var deleteFeatures = new EditOperation(); deleteFeatur 阅读全文

posted @ 2020-03-26 10:25 gisai 阅读(1100) 评论(0) 推荐(0)

ArcGIS Pro NearestVertex和NearestPoint
摘要:ArcGIS Pro NearestVertex和NearestPoint 阅读全文

posted @ 2020-03-26 10:06 gisai 阅读(375) 评论(0) 推荐(0)

ArcGIS Pro打印预览
摘要:ArcGIS Pro打印预览 阅读全文

posted @ 2020-03-25 10:15 gisai 阅读(374) 评论(0) 推荐(0)

ArcGIS Pro 二次开发添加连接,断开连接,导入mxd
摘要:#region AddFolderConnectionProjectItem /// Add a folder connection to a project Item folderToAdd = ItemFactory.Instance.Create(@"C:\gisoracle\Oregon\C 阅读全文

posted @ 2020-03-23 20:42 gisai 阅读(527) 评论(0) 推荐(0)

无法将类型“System.Threading.Tasks.Task<string>”隐式转换为“string”
摘要:学习加微信公众号 我的微信公众号 private Task<string> methodAsync() { Thread.Sleep(10000); return "Hello"; //Error: Cannot implicitly convert type 'string' to 'System 阅读全文

posted @ 2020-03-23 20:12 gisai 阅读(5671) 评论(0) 推荐(0)

ArcGIS Pro 读写BLOB字段
摘要:public async Task WriteBlobField(Table table, string blobFieldName, string imageFileName) { await ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask. 阅读全文

posted @ 2020-03-23 14:19 gisai 阅读(654) 评论(0) 推荐(0)

ArcGIS Pro二次开发--增加数据到地图,打开影像
摘要:if (MapView.Active == null) return; Map map = MapView.Active.Map; if (map == null) return; try { string Layerurl = @"E:\ff\G48G082023.gdb\jfb10000注记"; 阅读全文

posted @ 2020-03-23 09:56 gisai 阅读(562) 评论(0) 推荐(0)

C#一个简单的含参数,控件调用多线程调用
摘要:} public void myStaticThreadMethod(int n) { for (int i = 0; i < n; i++) { this.Invoke((EventHandler)delegate { this.label1.Text ="gisoracle"+ n.ToStri 阅读全文

posted @ 2020-03-20 21:30 gisai 阅读(232) 评论(0) 推荐(0)

ArcGIS Pro标准分幅地图批量打印
摘要:ArcGIS Pro标准分幅地图批量打印 阅读全文

posted @ 2020-03-19 19:34 gisai 阅读(1352) 评论(0) 推荐(0)

ArcGIS Pro-二次开发,屏幕任意范围矩形打印
摘要:ArcGIS Pro-二次开发,屏幕任意范围矩形打印 阅读全文

posted @ 2020-03-19 19:19 gisai 阅读(448) 评论(0) 推荐(1)

ArcGIS Pro添加一个图片
摘要:// get the current mapview and point var mapView = MapView.Active; if (mapView == null) return; var pictureGraphic = new CIMPictureGraphic(); pictureG 阅读全文

posted @ 2020-03-18 20:58 gisai 阅读(1217) 评论(0) 推荐(0)

ArcGIS Pro获得地图选择记录数
摘要:map.SelectionCount() 阅读全文

posted @ 2020-03-18 20:51 gisai 阅读(276) 评论(0) 推荐(0)

ArcGIS Pro Arcpy获得图层选择的对象
摘要:aprx = arcpy.mp.ArcGISProject("CURRENT")m = aprx.activeMaplyrs = m.listLayers()for lyr in lyrs: if lyr.getSelectionSet(): print("{}: {}".format(lyr.na 阅读全文

posted @ 2020-03-18 17:17 gisai 阅读(698) 评论(0) 推荐(0)

List<T>转IEnumerable<T>
摘要:public static Polyline gettwoLine(double x1, double y1, double x2, double y2) { Coordinate2D p1 = new Coordinate2D(x1, y1); Coordinate2D p2 = new Coor 阅读全文

posted @ 2020-03-18 16:07 gisai 阅读(1393) 评论(0) 推荐(0)

ArcGIS Pro执行矩形选择
摘要:FrameworkApplication.SetCurrentToolAsync("esri_mapping_selectByRectangleTool"); // or use ICommand.Execute ICommand cmd = FrameworkApplication.GetPlug 阅读全文

posted @ 2020-03-18 14:54 gisai 阅读(442) 评论(0) 推荐(0)

ArcGIS Pro 屏幕上一点转换为地图上点
摘要:/* Copyright 2018 Esri Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License 阅读全文

posted @ 2020-03-18 14:48 gisai 阅读(281) 评论(0) 推荐(0)

ArcGIS Pro二次开发,定制开发,参考资料
摘要:ESRIwiki文档:https://github.com/esri/arcgis-pro-sdk/wiki#requirements ArcGIS Pro帮助文档:http://pro.arcgis.com/zh-cn/pro-app/sdk/ ArcGIS Pro API参考:http://pr 阅读全文

posted @ 2020-03-17 13:22 gisai 阅读(613) 评论(0) 推荐(0)

ArcGIS Pro二次开发--数据库篇
摘要:获得一个的要素的数据库: Geodatabase gdb = featureLayer.GetFeatureClass().GetDatastore() as Geodatabase; 表 var id = row.GetTable().GetID(); 打开数据库 Geodatabase file 阅读全文

posted @ 2020-03-17 09:23 gisai 阅读(816) 评论(0) 推荐(0)

ArcGIS Pro二次开发-插入文本,图例和指北针
摘要:// Add text for title Coordinate2D titleTxt_ll = new Coordinate2D(4.5, 9.5); CIMTextSymbol arial36bold = SymbolFactory.Instance.ConstructTextSymbol(Co 阅读全文

posted @ 2020-03-16 17:00 gisai 阅读(1816) 评论(0) 推荐(0)

ArcGIS Pro二次开发地图MapSeries序列设置
摘要:/* Copyright 2019 Esri Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License 阅读全文

posted @ 2020-03-16 15:32 gisai 阅读(368) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得Objectid字段
摘要:var oidName = featureClass.GetDefinition().GetObjectIDField(); 阅读全文

posted @ 2020-03-16 15:28 gisai 阅读(472) 评论(0) 推荐(0)

ArcGIS Pro定制和开发-执行GP环境变量的设置
摘要:var in_table = main_lyr; var out_table = Path.Combine(Project.Current.DefaultGeodatabasePath, GVar.FtrLyr + " Results"); var statistics_fields = [["Sh 阅读全文

posted @ 2020-03-15 10:37 gisai 阅读(602) 评论(0) 推荐(0)

ArcGIS Pro二次开发-按lyrx符号化图层
该文被密码保护。

posted @ 2020-03-14 15:35 gisai 阅读(0) 评论(0) 推荐(0)

ArcGIS Pro二次开发-图层标注
摘要:if (MapView.Active.GetSelectedLayers().Count != 1) { ArcGIS.Desktop.Framework.Dialogs.MessageBox.Show("One feature layer must be selected in the Conte 阅读全文

posted @ 2020-03-14 15:01 gisai 阅读(615) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得一个要素的字段
摘要:var featLayer = MapView.Active.GetSelectedLayers().First() as FeatureLayer; QueuedTask.Run(() => { List<FieldDescription> pFieldList = featLayer.GetFi 阅读全文

posted @ 2020-03-14 14:32 gisai 阅读(411) 评论(0) 推荐(0)

ArcGIS Pro二次开发-点层符号化
摘要:public static void ApplySymbol(string symbolChoice) { QueuedTask.Run(() => { // Check for an active 2D mapview, if not, then prompt and exit. if (MapV 阅读全文

posted @ 2020-03-14 12:37 gisai 阅读(639) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得符号类别
摘要:var styles = Project.Current.GetItems<StyleProjectItem>(); foreach (StyleProjectItem pitem in styles) { MessageBox.Show(pitem.Name + ":" + pitem.ID + 阅读全文

posted @ 2020-03-14 12:31 gisai 阅读(252) 评论(0) 推荐(0)

ArcGIS Pro二次开发--提示系统信息
摘要:Notification notification = new Notification(); protected override void OnClick() { //ApplySymbol("graduated color"); try { if (Project.Current == nul 阅读全文

posted @ 2020-03-14 11:00 gisai 阅读(335) 评论(0) 推荐(0)

ArcGIS Pro二次开发-关闭目录
摘要:foreach (DockPane Pane in FrameworkApplication.DockPaneManager.DockPanes) { MessageBox.Show(Pane.Caption+":"+Pane.TabText+":"+Pane.Tooltip+":"+Pane.To 阅读全文

posted @ 2020-03-14 10:49 gisai 阅读(267) 评论(0) 推荐(0)

ArcGIS Pro二次开发-有用的ID
摘要:<toolPalette refID="esri_mapping_newMapPalette" /> 新建地图和 <button refID="esri_core_saveProjectButton" /> 保存工程 <button refID="esri_core_saveProjectAsBut 阅读全文

posted @ 2020-03-14 08:07 gisai 阅读(288) 评论(0) 推荐(0)

ArcGIS Pro二次开发-布局导出PDF
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-14 07:59 gisai 阅读(925) 评论(0) 推荐(0)

ArcGIS Pro新建一个布局
摘要:https://developers.arcgis.com/labs/pro/build-a-map-layout/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using 阅读全文

posted @ 2020-03-14 00:19 gisai 阅读(924) 评论(0) 推荐(0)

ArcGIS Pro注记操作 https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Editing-Annotation#creating-annotation-features
摘要:ProConcepts Editing Annotation Jump to bottom uma2526 edited this page on 6 Feb · 8 revisions This concepts document covers special considerations for 阅读全文

posted @ 2020-03-14 00:10 gisai 阅读(733) 评论(0) 推荐(0)

ArcGIS Pro二次开发获得符号库的符号
摘要:1 string customStyleToAdd = @"F:\2020book\toolforpro\MyProject3\ed-fh.stylx"; 2 //AsyncMethod(customStyleToAdd); 3 4 5 StyleProjectItem style = Projec 阅读全文

posted @ 2020-03-13 23:48 gisai 阅读(971) 评论(1) 推荐(0)

ArcGIS Pro二次开发-条件查询
摘要:ArcGIS Pro学习加微信公众号 我的微信公众号 //searching and returning number of features where value in 'Class' field in 'city' QueryFilter qf = new QueryFilter() { Wh 阅读全文

posted @ 2020-03-13 22:56 gisai 阅读(834) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得地图的信息和打开图层
摘要:Map map = MapView.Active.Map; IEnumerable<Layer> layers = map.GetLayersAsFlattenedList(); //.Where(l => l.Name.Contains("world")) foreach (Layer lyr i 阅读全文

posted @ 2020-03-13 22:51 gisai 阅读(780) 评论(0) 推荐(0)

ArcGIS Pro二次开发-创建新的地图
摘要:// create custom basemap in your current project Map basemap = null; Task task = QueuedTask.Run(() => { basemap =MapFactory.Instance.CreateMap("gisora 阅读全文

posted @ 2020-03-13 22:39 gisai 阅读(422) 评论(0) 推荐(0)

ArcGIS Pro二次开发-打开已存在的地图
摘要:// open an existing map var mapProjectItems = Project.Current.GetItems<MapProjectItem>(); var mapProjectItem = mapProjectItems.FirstOrDefault(mpi => m 阅读全文

posted @ 2020-03-13 22:27 gisai 阅读(467) 评论(0) 推荐(0)

ArcGIS Pro设置当前地图的背景底图
摘要:Map map = MapView.Active.Map; QueuedTask.Run(() => { map.SetBasemapLayers(Basemap.Gray); }); 阅读全文

posted @ 2020-03-13 22:13 gisai 阅读(1875) 评论(0) 推荐(0)

ArcGIS Pro二次开发属性更新,把所有选择的ID为1
摘要:public void UpdateValues() { // This sample is intended for use with a featureclass with a default text field named "Description". // You can replace 阅读全文

posted @ 2020-03-13 21:58 gisai 阅读(430) 评论(0) 推荐(0)

ArcGIS Pro二次开发-设置地图和第一图层的坐标系一致
摘要:SpatialReference spatialReference = MapView.Active.Map.Layers[0].GetSpatialReference(); MapView.Active.Map.SetSpatialReference(spatialReference); 阅读全文

posted @ 2020-03-13 21:41 gisai 阅读(458) 评论(0) 推荐(0)

python3和python2
摘要:print(2/3) 在python3是0.666666666666,python2是0 print(2//3) 在python3是0,python2是0 阅读全文

posted @ 2020-03-12 21:23 gisai 阅读(235) 评论(0) 推荐(0)

ArcGIS Pro二次开发-执行已有的命令
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-12 16:05 gisai 阅读(336) 评论(0) 推荐(0)

ArcGIS Pro二次开发执行GP工具
摘要:using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System.Text; using Syst 阅读全文

posted @ 2020-03-12 12:33 gisai 阅读(430) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得一个栅格
摘要:/// <summary> /// Open a Raster Dataset given a folder and a dataset name. /// </summary> /// <param name="folder">Full path to the folder containing 阅读全文

posted @ 2020-03-12 11:24 gisai 阅读(327) 评论(0) 推荐(0)

ArcGIS Pro二次开发-添加一个栅格数据到当前窗口
摘要:using System;using System.Collections.Generic;using System.Linq;//using System.Windows;//using System.Windows.Forms; using System.Text; using System.T 阅读全文

posted @ 2020-03-12 11:01 gisai 阅读(585) 评论(0) 推荐(0)

ArcGIS Pro二次开发-画线分割面工具
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-12 10:12 gisai 阅读(973) 评论(0) 推荐(0)

ArcGIS Pro二次开发-根据屏幕几个像素创建要素
摘要:/// <summary> /// Create a circular polygon around a mappoint for with a radius in pixels. /// </summary> /// <param name="mapPoint">Center of the cir 阅读全文

posted @ 2020-03-12 10:02 gisai 阅读(308) 评论(0) 推荐(0)

ArcGIS Pro二次开发-空间查询
摘要:public static RowCursor Search(this BasicFeatureLayer searchLayer, Geometry searchGeometry, SpatialRelationship spatialRelationship) { RowCursor rowCu 阅读全文

posted @ 2020-03-12 10:00 gisai 阅读(512) 评论(0) 推荐(0)

ArcGIS Pro二次开发判断要素是否为空
摘要:public static bool IsNullOrEmpty(this Geometry geometry) { if (geometry == null) return true; return geometry.IsEmpty; } 阅读全文

posted @ 2020-03-12 09:52 gisai 阅读(496) 评论(0) 推荐(0)

ArcGIS Pro二次开发画注记
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 22:49 gisai 阅读(452) 评论(0) 推荐(0)

ArcGIS Pro二次开发-创建图层
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 22:08 gisai 阅读(839) 评论(0) 推荐(0)

ArcGIS Pro二次开发获得图层的数据源
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 21:53 gisai 阅读(529) 评论(0) 推荐(0)

ArcGIS Pro二次开发-放大要素
摘要:来自:https://github.com/Esri/arcgis-pro-sdk-community-samples internal void ZoomToFeature(long oid) { if (oid == -1) return; var mapView = MapView.Activ 阅读全文

posted @ 2020-03-11 20:42 gisai 阅读(288) 评论(0) 推荐(0)

ArcGIS Pro二次开发-判断表,要素是否存在
摘要:// Must be called within QueuedTask.Run9) public static bool FeatureClassExists(string tableName, string FileName) { List<string> pList = new List<str 阅读全文

posted @ 2020-03-11 20:34 gisai 阅读(508) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得一个gdb所有数据放入面板中
摘要:ListContentDockpaneViewModel.cs using System; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; 阅读全文

posted @ 2020-03-11 19:41 gisai 阅读(739) 评论(0) 推荐(0)

ArcGIS Pro二次开发-添加字段
摘要:using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System; using System.Co 阅读全文

posted @ 2020-03-11 19:13 gisai 阅读(691) 评论(0) 推荐(0)

ArcGIS Pro C#二次开发-删除字段
摘要:using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System; using System.Co 阅读全文

posted @ 2020-03-11 19:06 gisai 阅读(664) 评论(0) 推荐(0)

ArcGIS Pro二次开发-地图上画线
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 18:41 gisai 阅读(992) 评论(0) 推荐(0)

ArcGIS Pro二次开发-在地图上插入一个点
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 18:23 gisai 阅读(939) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得所有图层
摘要:var mv = MapView.Active; var lyrs = mv.Map.Layers; var sb = new StringBuilder(); foreach (var lyr in lyrs) { sb.AppendLine(lyr.Name); } MessageBox.Sho 阅读全文

posted @ 2020-03-11 15:48 gisai 阅读(609) 评论(0) 推荐(0)

ArcGIS Pro二次开发-识别工具
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 15:38 gisai 阅读(764) 评论(0) 推荐(0)

ArcGIS Pro二次开发-放大缩小工具
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 15:22 gisai 阅读(682) 评论(0) 推荐(0)

ArcGIS Pro二次开发-选择工具
摘要:多边形选择 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using 阅读全文

posted @ 2020-03-11 15:09 gisai 阅读(407) 评论(0) 推荐(0)

ArcGIS Pro二次开发计算一个面层的总面积
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System 阅读全文

posted @ 2020-03-11 14:37 gisai 阅读(688) 评论(0) 推荐(0)

arcgis pro二次开发官方文档
摘要:ArcGIS Pro二次开发 阅读全文

posted @ 2020-03-11 11:52 gisai 阅读(1722) 评论(0) 推荐(0)

ArcGIS Pro二次开发-选择gdb
摘要:ArcGIS Pro二次开发,版本是2.5,Vs2019,.net4.8 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Task 阅读全文

posted @ 2020-03-11 10:28 gisai 阅读(664) 评论(0) 推荐(0)

arcgis pro2.5 改变地图范围
摘要:import arcpy, os aprx = arcpy.mp.ArcGISProject('current')mv = aprx.activeView # Change the extent of the map viewext = mv.camera.getExtent()ext.XMin = 阅读全文

posted @ 2020-03-09 13:50 gisai 阅读(624) 评论(0) 推荐(0)

创建用户SQL
摘要:rem SDE drop user SDE CASCADE;drop user SDE CASCADE;rem gisoracle 用于存放用户数据 密码为landCREATE USER SDE PROFILE "DEFAULT" IDENTIFIED BY SDE DEFAULT TABLESPA 阅读全文

posted @ 2020-03-05 09:13 gisai 阅读(230) 评论(0) 推荐(0)

ArcGIS Pro基本操作教程提高篇(二)时空立方体
摘要:本次案例是通过ArcGIS Pro提供的时空立方体展示地理位置相关的事件。利用时空立方体的工具把空间和时间维度展示不同数据在不同的角度展示热点信息。 第一步,加载ViolentCrime2014到ArcGIS Pro中,然后在分析面板中调出工具箱—在时空模式挖掘工具箱下 通过聚合点创建时空立方体 利 阅读全文

posted @ 2020-03-03 20:24 gisai 阅读(1363) 评论(0) 推荐(0)

arcgis pro从0到1入门培训视频完成
摘要:arcgis pro从0到1入门培训视频完成 阅读全文

posted @ 2020-03-03 18:45 gisai 阅读(1746) 评论(5) 推荐(1)

arcgis 999999错误解决方法
摘要:ArcGIS Pro学习加微信公众号 我的微信公众号 异常错误导致工具失败,并且未进行异常处理以提供特定错误消息。在某些情况下,此错误可能包含其他消息,这些消息有助于您了解问题。 解决方案 由于工具中缺少异常处理,因此该错误将视为漏洞。请联系 Esri 技术支持 (http://esriurl.co 阅读全文

posted @ 2020-03-02 12:28 gisai 阅读(8559) 评论(0) 推荐(1)

 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3