码迷,mamicode.com
首页 >  
搜索关键字:arcpy    ( 97个结果
arcpy-栅格转其他格式
注意栅格名称中不要出现中文字符。 RasterToOtherFormat_conversion帮助页:http://desktop.arcgis.com/zh-cn/arcmap/10.3/tools/conversion-toolbox/raster-to-other-format.htm ...
分类:其他好文   时间:2019-09-23 20:58:30    阅读次数:201
arcpy-字段唯一值、重复值、最值、平均值、方差、标准差、中数、众数
1 import arcpy 2 import numpy 3 from arcpy import da 4 5 def GetFieldUniqueValue(inTable,inField): 6 value_list=[] 7 rows=arcpy.da.SearchCursor(inTabl... ...
分类:其他好文   时间:2019-09-23 20:57:28    阅读次数:155
arcgis python 调用工具两种两种方法
arcpy.Select_analysis("p","kk") arcpy.analysis.Select("p","kk1") ...
分类:编程语言   时间:2019-09-20 12:20:39    阅读次数:114
如何将Excel表批量赋值到ArcGIS属性表
情景再现 现需要将Excel表信息批量赋值(不是挂接)到Shp文件的属性表,两张表的字段、记录数一模一样,至于为什么会出现这样的问题,咱也不敢问,只有想个法子把它搞定! 原始的Excel信息表共57列,总共3万多条记录,包含了正确的记录数据,如下: 目标的ArcGIS属性表也是57列(不是Table ...
分类:其他好文   时间:2019-09-14 17:11:37    阅读次数:371
arcgis python 新生成的数据设置
try: # Update the spatial index(es) # r = arcpy.CalculateDefaultGridIndex_management(outFeatures) arcpy.AddSpatialIndex_management(outFeatures, r.getO... ...
分类:编程语言   时间:2019-08-19 09:39:04    阅读次数:103
arcgis python 刷新
arcpy.RefreshActiveView() 刷新地图和布局窗口 arcpy.RefreshTOC() 刷新内容列表 arcpy.RefreshCatalog(r"F:\tknew106\tool") 刷新目录树 ...
分类:编程语言   时间:2019-08-18 15:39:44    阅读次数:80
ArcGIS Python 唯一值专题
import arcpy mxd = arcpy.mapping.MapDocument("current") lyr = arcpy.mapping.ListLayers(mxd)[0] if lyr.symbologyType == "UNIQUE_VALUES": lyr.symbology.... ...
分类:编程语言   时间:2019-08-14 21:34:05    阅读次数:83
arcpy 获得是否为布局mxd.activeView
mxd.pageSizePageSize(width=21.59004318008636, height=27.940055880111764) ...
分类:其他好文   时间:2019-08-11 22:41:22    阅读次数:82
arcpy.UpdateCursor和arcpy.da.UpdateCursor计算面积时间的比较
arcpy.UpdateCursor arcpy.da.UpdateCursor 比较如下: 上面是1.22s,下面是0.25s,差5倍 gisoracle测试 另一个数据,11.85s,下面是1.8,差6倍 gisoracle测试 ...
分类:其他好文   时间:2019-07-20 09:47:26    阅读次数:396
arcpy利用XY创建点
# -*- coding: utf-8 -*-"""Created on Sun Apr 7 15:32:24 2019@author: """ # XYTableToPoint.py# Description: Creates a point feature class from input ta ...
分类:其他好文   时间:2019-06-11 09:27:53    阅读次数:209
97条   上一页 1 2 3 4 5 6 ... 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!