手抄报 安全手抄报 手抄报内容 手抄报图片 英语手抄报 清明节手抄报 节约用水手抄报

gis脚本错IndentationError: unexpected indent

时间:2024-10-12 12:19:31

1、首先,分析问题,一般arcgis脚本中报错为:IndentationError: unexpected indent,这种为代码的格式问题,行前空格不一致,格式不规范造成的。

gis脚本错IndentationError: unexpected indent

2、然后,关闭提示,打开脚本。

gis脚本错IndentationError: unexpected indent

3、再根据提示行列号,找到问题所在:for i in p: a = i.replace("-","f媪青怍牙") b = a.replace("/","f") abc = os.path.join(s,b) arcpy.Select_analysis(sss,abc,"DLMC= '"+i+"'")cc = arcpy.ListFeatureClasses()

gis脚本错IndentationError: unexpected indent

4、然后,对该段代码进行判断。很明显, b = a.replace("/","f")这一段,与其他段前空格数不一致。

gis脚本错IndentationError: unexpected indent

5、再修改代码:for i in p: a = i.replace("-"巳呀屋饔,"f") b = a.replace("/","f") abc = os.path.join(s,b) arcpy.Select_analysis(sss,abc,"DLMC= '"+i+"'")cc = arcpy.ListFeatureClasses()删除b前空格。使其与上下一致(一般这种情况,前面比上一行多4个空格)

gis脚本错IndentationError: unexpected indent

6、最后,保存脚本,重新运行该脚本,就不会再提示该错误了。

gis脚本错IndentationError: unexpected indent
© 手抄报圈