注意栅格名称中不要出现中文字符。 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
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
arcpy.Select_analysis("p","kk") arcpy.analysis.Select("p","kk1") ...
分类:
编程语言 时间:
2019-09-20 12:20:39
阅读次数:
114
情景再现 现需要将Excel表信息批量赋值(不是挂接)到Shp文件的属性表,两张表的字段、记录数一模一样,至于为什么会出现这样的问题,咱也不敢问,只有想个法子把它搞定! 原始的Excel信息表共57列,总共3万多条记录,包含了正确的记录数据,如下: 目标的ArcGIS属性表也是57列(不是Table ...
分类:
其他好文 时间:
2019-09-14 17:11:37
阅读次数:
371
try: # Update the spatial index(es) # r = arcpy.CalculateDefaultGridIndex_management(outFeatures) arcpy.AddSpatialIndex_management(outFeatures, r.getO... ...
分类:
编程语言 时间:
2019-08-19 09:39:04
阅读次数:
103
arcpy.RefreshActiveView() 刷新地图和布局窗口 arcpy.RefreshTOC() 刷新内容列表 arcpy.RefreshCatalog(r"F:\tknew106\tool") 刷新目录树 ...
分类:
编程语言 时间:
2019-08-18 15:39:44
阅读次数:
80
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
mxd.pageSizePageSize(width=21.59004318008636, height=27.940055880111764) ...
分类:
其他好文 时间:
2019-08-11 22:41:22
阅读次数:
82
arcpy.UpdateCursor arcpy.da.UpdateCursor 比较如下: 上面是1.22s,下面是0.25s,差5倍 gisoracle测试 另一个数据,11.85s,下面是1.8,差6倍 gisoracle测试 ...
分类:
其他好文 时间:
2019-07-20 09:47:26
阅读次数:
396
# -*- 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