ARCGIS:将功能开放到目录中

发布于 2024-10-12 15:51:19 字数 133 浏览 2 评论 0原文

我正在尝试使用 python 脚本自动打开 1000 个地图并一一导出。

有人可以告诉我如何使用 python 脚本而不是手动打开它们到目录吗? 另外,如何使用 python 更改可见性而不是手动更改可见性。

干杯 演员

I'm trying to open 1000 maps automated with python script and export one by one.

Can some tell me how to open them to the TOC with the python script instead of doing by hand.
Also how do I change the visibility with python instead of doing by hand.

cheers
eactor

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-10-19 15:51:19

第一部分完成:

addLayer = arcpy.mapping.Layer(r"C:/example.lyr")

第二部分您只打开您想要查看的内容并删除其他内容:

arcpy.Delete_management(layername)

注意:图层名称不必与 lyr 文件名相同!它是目录中出现的名称。

part one is done with:

addLayer = arcpy.mapping.Layer(r"C:/example.lyr")

part two you only open the ones you would like to see and remove the other ones:

arcpy.Delete_management(layername)

note: layername does not have to be the same as the lyr file name! It is the name which occurs in the TOC.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文