属性
属性 | 说明 | 数据类型 |
tolerances (只读) | 容差是一个属性集,其中包括:
| Object |
代码示例
以下独立脚本显示了 coverage 的容差属性。
import arcpy
# Create a describe object from a coverage
desc = arcpy.Describe("C:/data/tongass1")
# Get the tolerances property set from the describe object
tolProps = desc.tolerances
# Print all eight tolerance properties
print("Tolerances")
print("==========")
print("%-10s %s" % ("fuzzy:", tolProps.fuzzy))
print("%-10s %s" % ("dangle:", tolProps.dangle))
print("%-10s %s" % ("ticMatch:", tolProps.ticMatch))
print("%-10s %s" % ("edit:", tolProps.edit))
print("%-10s %s" % ("nodeSnap:", tolProps.nodeSnap))
print("%-10s %s" % ("weed:", tolProps.weed))
print("%-10s %s" % ("grain:", tolProps.grain))
print("%-10s %s" % ("snap:", tolProps.snap))