Questions tagged «list»

3
在arcpy.ListFeatureClasses中使用多个通配符参数
我知道必须有一种方法可以做到这一点,但是我很难弄清楚该怎么做。我想创建一个要素类列表以对其执行操作,但是,我希望该列表包含要素类,这些要素类具有2个单独且不同的文件名标识符。代码如下所示: FCS = arcpy.ListFeatureClasses("X_*" OR "*_Y") 我知道OR是不正确的,但是有某种方法可以执行此操作而不必重新编写代码以使用第二个通配符。感谢您帮助痛风,我知道Select By Attributes中有一个选择方法,该方法允许使用OR语句使用多个通配符。
12 arcpy  list  wildcard 

6
python中有没有更快的方法来查找字段中的最小数字?
使用arcgis桌面10.3.1,我有一个脚本,该脚本使用搜索光标将值附加到列表中,然后使用min()查找最小的整数。该变量然后在脚本中使用。Feature类具有200,000行,脚本需要很长时间才能完成。有办法更快地做到这一点吗?目前,我认为我会手动完成此操作,而不是因为花费时间而编写脚本。 import arcpy fc = arcpy.env.workspace = arcpy.GetParameterAsText(0) Xfield = "XKoordInt" cursor = arcpy.SearchCursor(fc) ListVal = [] for row in cursor: ListVal.append(row.getValue(Xfield)) value = min(ListVal)-20 print value expression = "(!XKoordInt!-{0})/20".format(value) arcpy.CalculateField_management (fc, "Matrix_Z" ,expression, "PYTHON")
10 arcpy  list 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.