क्या आर्कगिस प्रो कार्य पायथन टूलबॉक्स टूल का समर्थन करता है जो मैप फ्रेम्स पर काम करता है?
मेरे द्वारा पूछे जाने का कारण यह है कि मैं निम्नलिखित करने की कोशिश कर रहा हूं:
- आरकेजीआईएस प्रो 1.1.1 शुरू करें
- एक नया प्रोजेक्ट बनाएं - मैंने मेरा टेस्टप्रोजेक्ट बुलाया और C: \ Temp में रखा
- जहाँ मैं प्राकृतिक पृथ्वी () से दुनिया के देशों का एक आकार का है फ़ोल्डर जोड़ने के लिए प्रोजेक्ट फलक का उपयोग करें
- Ne_10m_admin_0_countries नामक परत बनाने के लिए मानचित्र में ne_10m_admin_0_countries.shp खींचें और छोड़ें
- एक नया लेआउट सम्मिलित करें - मैंने A3 लैंडस्केप का उपयोग किया
- लेआउट पर एक नया मानचित्र फ़्रेम डालें
- प्रोजेक्ट फलक में TestProject फ़ोल्डर में एक नया पायथन टूलबॉक्स बनाएं - मुझे मेरा TestPYT कहा जाता है
- इसे संपादित करने के लिए प्रोजेक्ट फलक में TestPYT पर राइट-क्लिक करें
- चिली और स्विट्जरलैंड नामक पायथन टूलबॉक्स को दो उपकरण देने के लिए उस कोड को नीचे से बदलें
- स्क्रिप्ट को सहेजें और दो नए टूल को देखने के लिए पायथन टूलबॉक्स को रिफ्रेश करें
- चिली ज़ूम करने के लिए लेआउट पर नक्शा फ्रेम देखने के लिए चिली टूल चलाएं
- स्विट्जरलैंड ज़ूम करने के लिए लेआउट पर नक्शा फ्रेम देखने के लिए स्विट्जरलैंड उपकरण चलाएँ
- एक नया कार्य आइटम सम्मिलित करें
- टास्क आइटम 1 में एक नया टास्क डालें और इसे चिली कहें
- चिली टास्क में एक नया कदम डालें और इसे ज़ूम टू चिली कहें
- स्टेप बिहेवियर के लिए इसे ऑटोमैटिक और हिडन बनाएं
- क्रियाएँ टैब पर मैं कमांड / जियोप्रोसेसिंग को चिली टूल चुनने वाले जियोप्रोसेसिंग टूल के रूप में सेट करने का प्रयास करता हूं
- जब मैं ठीक चुनता हूं तो यह चिपक जाता है
- ऐसा लगता है कि जब मैंने Done पर क्लिक किया तो यह टूल "खो" गया
विशेष रूप से, मैं जो बनाने की कोशिश कर रहा हूं वह दो कार्यों के साथ एक वर्कफ़्लो है जिसे मैं ज़ूम टू चिली या ज़ूम टू स्विट्जरलैंड पर क्लिक कर सकता हूं लेकिन मैं ऊपर चरण 19 पर अटका हुआ हूं।
जो मैं करने की कोशिश कर रहा हूं, उन देशों को ज़ूम करने के लिए दो बटन (चिली और स्विटजरलैंड) के साथ आर्कपी (आर्कगिस 10.x आर्किटेक्चर के लिए) में पायथन ऐडइन टूलबार के बराबर एक आर्कपी (आर्कजीआईएस प्रो के लिए) ढूंढना है।
मैं इस प्रक्रिया के माध्यम से कुछ बार चला चुका हूं, और एक अवसर पर मैं चिली और स्विटजरलैंड के उपकरण को कार्यों के रूप में चिपकाने में सक्षम था, लेकिन तब भी वे मैप फ्रेम के साथ बातचीत नहीं करते थे (कोई त्रुटि नहीं, बस कोई बदलाव नहीं जब वे दौड़े तो मैप फ्रेम में क्या प्रदर्शित किया गया था), भले ही पायथन टूलबॉक्स से चलने वाले उपकरण बिना किसी समस्या के काम करते रहे।
यह पायथन टूलबॉक्स (TestPYT) में कॉपी / पेस्ट करने का कोड है।
import arcpy
class Toolbox(object):
def __init__(self):
"""Define the toolbox (the name of the toolbox is the name of the
.pyt file)."""
self.label = "Toolbox"
self.alias = ""
# List of tool classes associated with this toolbox
self.tools = [Slide1,Slide2]
class Slide1(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = "Chile"
self.description = ""
self.canRunInBackground = False
def getParameterInfo(self):
"""Define parameter definitions"""
params = None
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal
validation is performed. This method is called whenever a parameter
has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool
parameter. This method is called after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
aprx = arcpy.mp.ArcGISProject("CURRENT")
mapx = aprx.listMaps()[0]
lyt = aprx.listLayouts()[0]
lyr = mapx.listLayers("ne_10m_admin_0_countries")[0]
lyr.definitionQuery = '"ADMIN" = ' + "'Chile'"
mFrame = lyt.listElements("MAPFRAME_ELEMENT")[0]
mFrame.camera.setExtent(mFrame.getLayerExtent(lyr, False, True))
lyr.definitionQuery = ""
return
class Slide2(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = "Switzerland"
self.description = ""
self.canRunInBackground = False
def getParameterInfo(self):
"""Define parameter definitions"""
params = None
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal
validation is performed. This method is called whenever a parameter
has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool
parameter. This method is called after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
aprx = arcpy.mp.ArcGISProject("CURRENT")
mapx = aprx.listMaps()[0]
lyt = aprx.listLayouts()[0]
lyr = mapx.listLayers("ne_10m_admin_0_countries")[0]
lyr.definitionQuery = '"ADMIN" = ' + "'Switzerland'"
mFrame = lyt.listElements("MAPFRAME_ELEMENT")[0]
mFrame.camera.setExtent(mFrame.getLayerExtent(lyr, False, True))
lyr.definitionQuery = ""
return