मैं या तो इस क्षेत्र में बहुत मजबूत नहीं हूं, लेकिन मैंने स्निपेट्स मॉड्यूल को संशोधित किया है और बहुत ही सरल कार्यों के लिए एक युगल आवरण बनाया है। मेरे पास बस लाइन तत्वों को जोड़ने का एक उदाहरण है। मुख्य ब्लॉक के नीचे का उदाहरण दस्तावेज़ के ठीक बाहर लेआउट दृश्य के लिए एक त्रिकोण बनाता है।
मैं इस स्क्रिप्ट का उपयोग व्यक्तिगत रेखाओं और पाठ तत्वों से लेआउट में ग्राफिक तालिकाओं को बनाने के लिए एक और आर्कषक खोज कर्सर के साथ करता हूं, लेकिन यह "सरल" उदाहरण से जल्दी से दूर हो जाता है। नीचे दिया गया कोड काफी सरल है और स्निपेट के संशोधित संस्करण का उपयोग करता है:
from snippets import *
def add_line(pApp=None, name='Line', x=None, y=None, end_x=None, end_y=None,
x_len=0, y_len=0, anchor=0, view='layout'):
'''adds a line to an ArcMap Document
Required:
pApp -- reference to either open ArcMap document or path on disk
name -- name of line element
Optional:
x -- start x coordinate, if none, middle of the extent will be used (data view)
y -- start y coordinate, if none, middle of the extent will be used (data view)
end_x -- end x coordinate, if making straight lines use x_len
end_y -- end y coordinate, if making straight lines use y_len
x_len -- length of line in east/west direction
y_len -- length of line in north/south direction
anchor -- anchor point for line element
view -- choose view for text element (layout|data)
Anchor Points:
esriTopLeftCorner 0 Anchor to the top left corner.
esriTopMidPoint 1 Anchor to the top mid point.
esriTopRightCorner 2 Anchor to the top right corner.
esriLeftMidPoint 3 Anchor to the left mid point.
esriCenterPoint 4 Anchor to the center point.
esriRightMidPoint 5 Anchor to the right mid point.
esriBottomLeftCorner 6 Anchor to the bottom left corner.
esriBottomMidPoint 7 Anchor to the bottom mid point.
esriBottomRightCorner 8 Anchor to the botton right corner.
'''
GetDesktopModules()
import comtypes.gen.esriFramework as esriFramework
import comtypes.gen.esriArcMapUI as esriArcMapUI
import comtypes.gen.esriSystem as esriSystem
import comtypes.gen.esriGeometry as esriGeometry
import comtypes.gen.esriCarto as esriCarto
import comtypes.gen.esriDisplay as esriDisplay
import comtypes.gen.stdole as stdole
# set mxd
if not pApp:
pApp = GetApp()
pDoc = pApp.Document
pMxDoc = CType(pDoc, esriArcMapUI.IMxDocument)
pMap = pMxDoc.FocusMap
pMapL = pMap
if view.lower() == 'layout':
pMapL = pMxDoc.PageLayout
pAV = CType(pMapL, esriCarto.IActiveView)
pSD = pAV.ScreenDisplay
# set coords for elment
pFact = CType(pApp, esriFramework.IObjectFactory)
if view.lower() == 'data':
pEnv = pAV.Extent
if x == None:
x = (pEnv.XMin + pEnv.XMax) / 2
if y == None:
y = (pEnv.YMin + pEnv.YMax) / 2
else:
# default layout position, move off page
if x == None: x = -4
if y == None: y = 4
# from point
pUnk_pt = pFact.Create(CLSID(esriGeometry.Point))
pPt = CType(pUnk_pt, esriGeometry.IPoint)
pPt.PutCoords(x, y)
# to point
pUnk_pt2 = pFact.Create(CLSID(esriGeometry.Point))
pPt2 = CType(pUnk_pt2, esriGeometry.IPoint)
if x_len or y_len:
pPt2.PutCoords(x + x_len, y + y_len)
elif end_x or end_y:
pPt2.PutCoords(end_x, end_y)
# line (from point - to point)
pUnk_line = pFact.Create(CLSID(esriGeometry.Polyline))
pLg = CType(pUnk_line, esriGeometry.IPolyline)
pLg.FromPoint = pPt
pLg.ToPoint = pPt2
# preset color according to RGB values
pUnk_color = pFact.Create(CLSID(esriDisplay.RgbColor))
pColor = CType(pUnk_color, esriDisplay.IRgbColor)
pColor.Red, pColor.Green, pColor.Blue = (0,0,0) #black line
# set line properties
pUnk_line = pFact.Create(CLSID(esriDisplay.SimpleLineSymbol))
pLineSymbol = CType(pUnk_line, esriDisplay.ISimpleLineSymbol)
pLineSymbol.Color = pColor
# create the actual element
pUnk_elm = pFact.Create(CLSID(esriCarto.LineElement))
pLineElement = CType(pUnk_elm, esriCarto.ILineElement)
pLineElement.Symbol = pLineSymbol
pElement = CType(pLineElement, esriCarto.IElement)
# elm properties
pElmProp = CType(pElement, esriCarto.IElementProperties3)
pElmProp.Name = name
pElmProp.AnchorPoint = esriCarto.esriAnchorPointEnum(anchor)
pElement.Geometry = pLg
# add to map
pGC = CType(pMapL, esriCarto.IGraphicsContainer)
pGC.AddElement(pElement, 0)
pGCSel = CType(pMapL, esriCarto.IGraphicsContainerSelect)
pGCSel.SelectElement(pElement)
iOpt = esriCarto.esriViewGraphics + \
esriCarto.esriViewGraphicSelection
pAV.PartialRefresh(iOpt, None, None)
return pElement
if __name__ == '__main__':
# testing (make a triangle)
add_line(name='hypot', end_x=-2, end_y=2, anchor=3)
add_line(name='vertLine', y_len=-2, anchor=1)
add_line(name='bottom', y=2, end_x=-2, end_y=2)
संपादित करें:
@ मट्ट विल्की
आयातों का पता लगाने के लिए, जहाँ आपको आर्कओबजेक्ट्स मॉडल आरेखों को देखना होगा या यह देखना होगा कि .NET SDK हेल्प डॉक्स में किसी विशेष वर्ग या इंटरफ़ेस से किस नामस्थान को बुलाया जा रहा है। कुछ मामलों में विरासत के कारण एक से अधिक नाम स्थान का उपयोग किया जा सकता है।
मैं ArcObjects में कोई विशेषज्ञ नहीं हूं, इसलिए आमतौर पर मुझे यह पता लगाने में थोड़ा समय लगता है कि सीटीपे () के साथ चीजों को कब डालना है। इस सबसे, मैंने नमूनों को ऑनलाइन उठाया है। इसके अलावा, VB.NET उदाहरणों से वाक्यविन्यास आप पायथन में क्या करते हैं, के करीब लगता है, लेकिन C # उदाहरण मेरे लिए पठनीयता के संदर्भ में अधिक समझ में आता है (यदि इसका कोई मतलब है)। लेकिन, अंगूठे के एक नियम के रूप में, मैं आमतौर पर इन चरणों को पूरा करता हूं:
- किसी नए COM ऑब्जेक्ट (आमतौर पर एक वर्ग) के लिए एक चर बनाने के लिए एक वस्तु तात्कालिक
- विधियों और भविष्यवाणियों तक पहुंच की अनुमति देने के लिए COM ऑब्जेक्ट को एक इंटरफ़ेस (ओं) में डालने के लिए CType का उपयोग करें। CType, QueryInterface () के माध्यम से comtypes Interface Pointer को भी लौटाएगा। एक बार पॉइंटर वापस आने के बाद, आप इसके गुणों और विधियों के साथ बातचीत कर सकते हैं।
सुनिश्चित नहीं है कि मैं उचित शब्दावली का उपयोग कर रहा हूं या नहीं ... मैं मुख्य रूप से एक पायथन डेवलपर हूं जो कुछ आर्कोबजेक्ट्स में "डबल्स" करता है ... मैंने केवल हिमशैल के सिरे को छुआ है हालांकि।
साथ ही, यह हेल्पर फंक्शन सभी आर्कबजेक्ट्स ऑब्जेक्ट लाइब्रेरीज़ (.olb) को लोड करेगा।
def load_all():
'''loads all object libraries'''
from comtypes.client import GetModule
mods = glob.glob(os.path.join(GetLibPath(), '*.olb'))
for mod in mods:
GetModule(mod)
return
def GetLibPath():
'''Reference to com directory which houses ArcObjects
Ojbect Libraries (*.OLB)'''
return glob.glob(os.path.join(arcpy.GetInstallInfo()['InstallDir'], 'com'))[0]