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

gisoracle

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

公告

03 2021 档案

ArcGIS Pro开发Pro没有IWorkspace只有Geodatabase
摘要:ArcGIS Pro开发Pro没有IWorkspace只有Geodatabase 原来create,变成Builder 阅读全文

posted @ 2021-03-14 21:41 gisai 阅读(294) 评论(0) 推荐(0)

await运算符只能用于异步方法中。请考虑用async修饰符标记此方法,并将其返回类型更改为Task...
摘要:private void button1_Click(object sender, EventArgs e) { string url = "http://localhost:35234/api/Products"; //创建HttpClient(注意传入HttpClientHandler) var 阅读全文

posted @ 2021-03-13 09:34 gisai 阅读(936) 评论(0) 推荐(0)

arcgis pro加载其他数据
摘要:https://landsat2.arcgis.com/arcgis/services/Landsat/MS/ImageServer http://sampleserver6.arcgisonline.com/arcgis/rest/services/CharlotteLAS/ImageServer 阅读全文

posted @ 2021-03-09 21:41 gisai 阅读(307) 评论(0) 推荐(0)

ArcGIS Pro运行Python脚本
摘要:// TODO: fix the path to test1.py so that it points to the proper file location 关注微信公众号:gisoracle var pathProExe = System.IO.Path.GetDirectoryName((ne 阅读全文

posted @ 2021-03-09 21:18 gisai 阅读(582) 评论(0) 推荐(0)

获得ArcGIS Pro的版本
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文

posted @ 2021-03-09 20:58 gisai 阅读(187) 评论(0) 推荐(0)

ArcGIS Pro使用键盘控制地图平移
摘要:/* 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 @ 2021-03-09 20:24 gisai 阅读(406) 评论(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 @ 2021-03-09 20:09 gisai 阅读(581) 评论(0) 推荐(0)

ArcGIS Pro二次开发添加网络图层
摘要:protected override void OnClick() { AddLayerToMap(); } private async Task AddLayerToMap() { try { // Get the first map called "Map" from the current p 阅读全文

posted @ 2021-03-09 19:42 gisai 阅读(293) 评论(0) 推荐(0)

ArcGIS Pro放大缩小按钮
摘要:/* 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 @ 2021-03-08 09:40 gisai 阅读(456) 评论(0) 推荐(0)

ArcGIS Pro做一个矩形选择按钮
摘要:/* 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 @ 2021-03-08 09:38 gisai 阅读(188) 评论(0) 推荐(0)

ArcGIS Pro获得一个图层的样式
摘要:private CIMPointSymbol GetPointSymbolFromLayer(Layer layer) { if (!(layer is FeatureLayer)) return null; var fLyr = layer as FeatureLayer; var rendere 阅读全文

posted @ 2021-03-08 09:34 gisai 阅读(244) 评论(0) 推荐(0)

ArcGIS Pro二次开发闪烁对象
摘要:private async void FlashFeaturesAsync(IReadOnlyDictionary<BasicFeatureLayer, List<long>> flashFeatures) { //Get the active map view. var mapView = Map 阅读全文

posted @ 2021-03-08 09:32 gisai 阅读(170) 评论(0) 推荐(0)

ArcGIS word字体单位
摘要:文本字号 ArcGIS Pro 使用软件可缩放字体显示文本。这样,用户能够在使标注和注记显示属性保持不变的同时以不同地图比例对这些内容进行绘制。例如,Arial (Open Type) 即属于软件可缩放字体。 显示文本时,文本字符的实际高度因字体而异。类型字符的高度是指其上伸线顶部到下伸线底部的距离 阅读全文

posted @ 2021-03-07 21:40 gisai 阅读(503) 评论(0) 推荐(0)

获得版本ArcGIS Pro
摘要:获得版本 print(arcpy.GetInstallInfo()['Version']) https://github.com/esri/arcgis-pro-sdk-community-samples 阅读全文

posted @ 2021-03-07 21:38 gisai 阅读(108) 评论(0) 推荐(0)

微信公众号图片抓取
摘要:# coding=utf-8 import re import requests def spider(paperurl, picpat): headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKi 阅读全文

posted @ 2021-03-06 18:57 gisai 阅读(264) 评论(0) 推荐(0)

ArcGIS Pro SDK开发从别的收集
摘要:来自https://blog.csdn.net/baidu_28157641/article/details/109499943 粘贴图层符号系统: 注意:并且这个操作不能被撤销和重做,事实上,使用Pro中自带的 应用图层的符号设置 工具执行这一操作也不能被撤销和重做。 protected over 阅读全文

posted @ 2021-03-06 16:52 gisai 阅读(341) 评论(0) 推荐(0)

ARCGIS Pro试用申请教程以及登录页面脚本错误解决办法
摘要:ARCGIS Pro试用版申请教程 1、注册账户信息 2、登录online分配许可到账号 3、ARCGIS Pro的试用 4、关于ARCGIS Pro登陆界面出现脚本问题以及无法链接账号 当前arcgis pro的应用越来愈广泛,怎样合理的申请pro的21天试用的named used账户,网上有很多 阅读全文

posted @ 2021-03-05 09:32 gisai 阅读(1043) 评论(0) 推荐(0)

ArcMap python IndentationError: unexpected indent 莫名的错误解决
摘要:ArcMap python IndentationError: unexpected indent 莫名的错误解决,太烦恼了,搞了好久,搞定 关注我的微信公众号 打开源代码,保存为ansi格式,如图 阅读全文

posted @ 2021-03-02 22:29 gisai 阅读(162) 评论(0) 推荐(0)

ArcGIS Python更新顺序2种方法
摘要:# -*- coding: utf-8 -*- import arcpy import sys def updatebsm(inFeature,inField): i=1 cursor=arcpy.UpdateCursor(inFeature) for row in cursor: row.setV 阅读全文

posted @ 2021-03-01 10:29 gisai 阅读(312) 评论(0) 推荐(0)

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