arcgis10.2.2工具箱python2.7的脚本代码:凡是SHAPE_Area < 数值的图斑进行自动删除并导出剩余图斑数据
时间: 2024-01-22 15:19:07 浏览: 39
以下是可以实现你所描述功能的 Python 代码:
```python
import arcpy
# 设置工作空间
arcpy.env.workspace = "C:/data"
# 设置要素类
fc = "myFeatures.shp"
# 创建查询表达式,删除 SHAPE_Area 小于指定值的要素
expression = "SHAPE_Area < 1000"
arcpy.SelectLayerByAttribute_management(fc, "NEW_SELECTION", expression)
arcpy.DeleteFeatures_management(fc)
# 导出剩余的要素到新的要素类
out_fc = "myRemainingFeatures.shp"
arcpy.FeatureClassToFeatureClass_conversion(fc, arcpy.env.workspace, out_fc)
```
你可以将这段代码复制到 Python 环境中运行,确保你的工作空间和要素类名称正确。
相关问题
arcgis10.2.2工具箱python2.7的脚本代码出理凡是SHAPE_Area < 数值的图斑进行自动删除并导出剩余图斑数据
以下是一个示例脚本,可以实现你的需求:
```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` 替换为你想要导出剩余要素的输出路径。
写一个arcgis10.2.2工具箱python2.7的脚本代码:输入数据,凡是在SHAPE_Area < 多少字符串值情况下的图斑进行自动删除并导出剩余要素
下面是一个简单的脚本,可以实现你的需求:
```python
import arcpy
# 设置输入和输出路径
input_fc = arcpy.GetParameterAsText(0)
output_fc = arcpy.GetParameterAsText(1)
# 设置删除的阈值
threshold = float(arcpy.GetParameterAsText(2))
# 创建游标循环遍历要素
with arcpy.da.UpdateCursor(input_fc, ["SHAPE@AREA"]) as cursor:
for row in cursor:
if row[0] < threshold:
cursor.deleteRow()
# 导出结果
arcpy.CopyFeatures_management(input_fc, output_fc)
```
在工具箱中,你需要添加三个输入参数:
- 输入要素类(Feature Class)
- 输出要素类(Feature Class)
- 删除阈值(Double)
然后将这个脚本作为工具箱的一个工具使用即可。
阅读全文