• 大小: 2KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-16
  • 语言: Python
  • 标签: Python  ArcGIS  

资源简介

利用Python创建ArcGis批量输出地图影工具,实现地图批量输出JPEG

资源截图

代码片段和文件信息

import arcpy
from arcpy import env
import os
import sys
reload(sys)
sys.setdefaultencoding( “utf-8“ )

in_file = arcpy.GetParameterAsText(0)

Map_document = []

for rootdirsfiles in os.walk(in_file):
    
    for afile in files:
        
        if afile[-4:].lower() == ‘.mxd‘:
            
           a = root + os.sep + afile
          
           Map_document.append(a)


for map_document in Map_document:

    my_document = arcpy.mapping.MapDocument(map_document)
    
    out_jpeg = map_document.replace(‘.mxd‘‘.jpg‘)

    arcpy.mapping.ExportToJPEG(my_documentout_jpeg)


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         612  2017-11-24 22:11  批量输出地图\批量输出地图.py
     文件        6144  2017-11-24 22:31  批量输出地图\批量输出地图.tbx
     目录           0  2017-11-24 22:30  批量输出地图\

评论

共有 条评论