在ArcGIS中利用arcpy获取属性内容
学习地址:https://desktop.arcgis.com/zh-cn/arcmap/latest/analyze/arcpy-functions/searchcursor.htm
代码:
>>> zone = 'zone31' # 'zone31'指添加到数据框中的要素
>>> rows = arcpy.SearchCursor(zone)
>>> for row
本文记录了在ArcGIS中通过Python的arcpy模块获取地图图层属性内容的学习过程,参考了官方文档(https://desktop.arcgis.com/zh-cn/arcmap/latest/analyze/arcpy-functions/searchcursor.htm),介绍了相关代码实现。
学习地址:https://desktop.arcgis.com/zh-cn/arcmap/latest/analyze/arcpy-functions/searchcursor.htm
>>> zone = 'zone31' # 'zone31'指添加到数据框中的要素
>>> rows = arcpy.SearchCursor(zone)
>>> for row
6623
1360

被折叠的 条评论
为什么被折叠?