এটি সত্যিই একটি স্বতন্ত্র উত্তর নয়, এটি পাইথন ইস্যুতে 'স্ক্র্যাচ থেকে এমএক্সডি ক্রিয়েশন' সম্বোধন করার সাথে @ পলিজিওর জবাব আরও যুক্ত করেছে।
আপনি যদি আর্কওবজেক্টস অ্যাক্সেস করেন তবে অজগর থেকে স্ক্র্যাচ থেকে এমএক্সডি তৈরি করতে পারেন । আপনার কমপিপস প্যাকেজটি প্রয়োজন হবে এবং যদি আর্কজিআইএস 10.1 ব্যবহার করা হয় তবে আপনাকে এতে একটি ছোট পরিবর্তন করতে হবে automation.py
। আরকোবজেক্টস + কমপিপগুলি 10.1 এ দেখুন
পাইথনে স্ক্র্যাচ থেকে একটি এমএক্সডি তৈরি করার জন্য নীচে কিছু কোড দেওয়া হয়েছে:
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)