นี่ไม่ใช่คำตอบแบบสแตนด์อโลนจริง ๆ เพิ่มเติมจากคำตอบของ@ PolyGeoเนื่องจากมันระบุถึง 'การสร้าง mxd ตั้งแต่เริ่มต้น' ในปัญหางูหลาม
คุณสามารถสร้าง MXD จากรอยขีดข่วนในหลามถ้าคุณเข้าถึง ArcObjects คุณจะต้องมีแพ็คเกจcomtypesและหากใช้ ArcGIS 10.1 คุณจะต้องทำการเปลี่ยนแปลงautomation.py
เล็กน้อย ดูArcObjects + comtypes ที่ 10.1
ด้านล่างเป็นรหัสบางอย่างเพื่อสร้าง MXD ตั้งแต่เริ่มต้นในหลาม:
import arcpy
import comtypes,os
def CreateMXD(path):
GetModule('esriCarto.olb')
import comtypes.gen.esriCarto as esriCarto
pMapDocument = CreateObject(esriCarto.MapDocument, esriCarto.IMapDocument)
pMapDocument.New(path)
pMapDocument.Save() #probably not required...
def GetLibPath():
""" Get the ArcObjects library path
It would be nice to just load the module directly instead of needing the path,
they are registered after all... But I just don't know enough about COM to do this
"""
compath=os.path.join(arcpy.GetInstallInfo()['InstallDir'],'com')
return compath
def GetModule(sModuleName):
""" Generate (if not already done) wrappers for COM modules
"""
from comtypes.client import GetModule
sLibPath = GetLibPath()
GetModule(os.path.join(sLibPath,sModuleName))
def CreateObject(COMClass, COMInterface):
""" Creates a new comtypes POINTER object where
COMClass is the class to be instantiated,
COMInterface is the interface to be assigned
"""
ptr = comtypes.client.CreateObject(COMClass, interface=COMInterface)
return ptr
if __name__=='__main__':
#testing...
arcpy.SetProduct('arcview')
filepath='c:/temp/testing123.mxd'
if os.path.exists(filepath):os.unlink(filepath)
CreateMXD(filepath)