arcgis10.2.2工具箱python2.7的脚本代码出理凡是SHAPE_Area < 数值的图斑进行自动删除并导出剩余图斑数据
时间: 2024-01-22 10:19:10 浏览: 64
arcgis10结合python生成脚本
以下是一个示例脚本,可以实现你的需求:
```python
import arcpy
# 设置工作空间和要素类路径
arcpy.env.workspace = r"C:\data"
fc = "my_shapefile.shp"
# 创建游标遍历要素
with arcpy.da.UpdateCursor(fc, ["SHAPE_Area"]) as cursor:
for row in cursor:
# 如果SHAPE_Area小于指定值,删除要素
if row[0] < 数值:
cursor.deleteRow()
# 完成游标操作
del cursor
# 导出剩余要素到新的 shapefile 文件
out_fc = r"C:\output\remaining_shapefile.shp"
arcpy.CopyFeatures_management(fc, out_fc)
```
你需要将代码中的 `C:\data` 替换为你自己的工作空间路径,将 `my_shapefile.shp` 替换为你的要素类名称,将 `数值` 替换为你想要删除的 SHAPE_Area 的最小值,将 `C:\output\remaining_shapefile.shp` 替换为你想要导出剩余要素的输出路径。
阅读全文