创建要素图层和表视图
操作方法:
下面按照步骤学习如何使用Make Feature Layer和Make Table View工具
1.在arcmap中打开活动地图文档
2.导入arcpy模块
3.设置工作空间
arcpy.env.workspace = "<>"
4.使用try语句,使用Make Feature Layer工具创建内存副本
try:
flayer = arcpy.MakeFeatureLayer_management"("")
5.添加except语句和输出错误信息的代码行.若有问题就会输出错误信息
except Exception as e:
print(e.message)
运行脚本,新的图层将会添加到arcmap的内容列表中