资源简介
利用arcpy 将mxd转换为msd,然后让脚本转换为tbx以供GP调用 来发布服务
代码片段和文件信息
import arcpy
import os
# Read the parameter values:
mxdFile = arcpy.GetParameterAsText(0)
layerName = arcpy.GetParameterAsText(1)
msdFile = arcpy.GetParameterAsText(2)
print(mxdFile)
try:
if not mxdFile.endswith(‘mxd‘):
arcpy.AddError(“not mxd“)
raise Exception(‘not mxd‘)
if not msdFile:
msdFile = os.path.splitext(mxdFile)[0] + ‘.msd‘
mxd = arcpy.mapping.MapDocument(mxdFile)
df = arcpy.mapping.ListDataframes(mxd layerName)[0]
arcpy.mapping.ConvertToMSD(mxd msdFile df “NORMAL“ “NORMAL“)
except:
arcpy.AddError(“Exception occurred - debug the source script“)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 667 2017-10-25 23:24 MxdToMsdTest\MxdToMsd.py
文件 8704 2017-10-26 09:01 MxdToMsdTest\MxdToMsd.tbx
文件 215552 2017-10-25 00:17 MxdToMsdTest\无标题.mxd
目录 0 2017-10-27 10:31 MxdToMsdTest
----------- --------- ---------- ----- ----
224923 4
相关资源
- \\VS2005C《图像编程精髓从开发自己的
- hex转coe工具
- Crypto++用户指南
- Newtonsoft.Json.Compact .dll v3.5.0.8
- MT65xx Preloader 驱动安装失败解决方法
- syn.exe --(HUC SYN Flood Tool V0.2)
- Solidworks2015_SP5.0.torrent
- PDFFactoryProversion4.05.Keygen.zip
- atheros ar8171网卡驱动 CentOS6.4 已调通
- 文件校验工具MD5SHA1SHA210.2TOKYOHOT含源码
- wx-showToast
- 自己做的FEMTOCELL环境仿真
- 修片动作photoshop修片用的磨皮动作)
- CallTifftoy.rar
- gromacs tutorial 4.0 中文版
-
NWli
nk IPX/SPX/NetBIOS Compatible Transport - stock data
- 飞思卡尔s12g128移植最新的FreeRTOS_V10
- arm板上实现usb摄像头采集及显示(q
- ExtendedPropSelector
- 基于FreeRTOS的FreeModbus移植
- ScanWebDirectory 网站目录扫描工具
- cocos creator打砖块游戏
- CentOS-7-x86_64镜像文件
- introduction to lens design with zemax homewor
- IEEE754 to DSP(VC33)(64位转40位) 改进
- kafka和storm整合
- BEncode Editor迅雷种子修改器,解决违规
- Composite kernel for hyperspectral classificat
- nvidia-docker2-2.0.3-3.docker18.09.6.ce.noarch
评论
共有 条评论