码迷,mamicode.com
首页 >  
搜索关键字:arcpy    ( 97个结果
ArcPy之生成msd文件
https://blog.csdn.net/esrichinacd/article/details/9147079 ...
分类:其他好文   时间:2021-03-10 13:27:47    阅读次数:0
ArcPy函数-更新游标UpdateCursor
ArcGIS 帮助 10.2 摘要 UpdateCursor 函数创建一个用于更新或删除指定要素类、shapefile 和表中的行的游标。该游标将数据锁定保留至脚本完成或更新游标对象被删除时。 讨论 以迭代方式更新游标的方式有两种:for 循环或者 while 循环(通过游标的 next 方法返回下 ...
分类:其他好文   时间:2021-02-09 11:44:54    阅读次数:0
ArcGIS Python任意多边形
# -*- coding: utf-8 -*- #by gisoracle 2021.01.23 import arcpy import math #保存数据 def Save(polygon,rows): row = rows.newRow() #row.setValue(shapefieldna ...
分类:编程语言   时间:2021-01-27 13:04:10    阅读次数:0
ArcGIS Python拱形面
# -*- coding: utf-8 -*- #by gisoracle 2021.01.23 import arcpy import math #保存数据 def Save(polygon,rows): row = rows.newRow() #row.setValue(shapefieldna ...
分类:编程语言   时间:2021-01-26 12:35:59    阅读次数:0
Arcpy功能总结
1. 导入arcpy的库,一般不会超出以下用到的库 import sys, string, os, arcgisscripting gp = arcgisscripting.create() gp.CheckOutExtension("spatial") gp.AddToolbox(r"D:\Pro ...
分类:其他好文   时间:2020-08-02 12:43:00    阅读次数:125
ArcGIS Python工具箱.pyt裁剪工具
# coding: utf-8 import arcpy class Toolbox(object): def __init__(self): """Define the toolbox (the name of the toolbox is the name of the .pyt file)." ...
分类:编程语言   时间:2020-07-18 22:16:15    阅读次数:119
Arcpy—updateCursor更新和删除字段数据
1 # -*- coding: utf-8 -*- 2 import arcpy 3 4 arcpy.env.workspace = "F:\ArcpyBook\Ch8\WildfireData\WildlandFires.mdb" #S设置工作空间,这里是shp所在的位置 5 6 f = open ...
分类:其他好文   时间:2020-07-05 17:15:34    阅读次数:104
ArcGIS Pro Python根据要素名查找要素
#coding=utf8 import arcpy import os import sys import math from arcpy.sa import * def FindFC(indir,FindText): arcpy.env.workspace = indir workspaces = ...
分类:编程语言   时间:2020-06-19 23:29:17    阅读次数:122
解决ArcPy脚本工具中文乱码问题
ArcPy是一个很香的地理空间数据库处理模块,但它必须依赖ArcGIS和Python环境,由于常用的ArcGIS版本默认支持的是Python2.7,它对中文支持并不好,因此,编码问题是入门时必须解决的问题。 这里不细说ASCII、GB2312、Unicode、UTF-8的区别,可自行百度之;Pyth ...
分类:其他好文   时间:2020-06-08 23:29:36    阅读次数:156
arcpy获得工具箱工具的个数
import arcpy import string ##多少个工具箱 toolboxes = arcpy.ListToolboxes() for toolbox in toolboxes: #截取工具箱的别名 #arcpy.AddMessage(" " + toolbox) first=toolb ...
分类:其他好文   时间:2020-05-17 13:23:50    阅读次数:63
97条   1 2 3 4 ... 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!