पायथन का उपयोग करके आर्कपैक में ड्राइंग को अक्षम और सक्षम कैसे करें?


13

वह स्क्रिप्ट जो मैं दो डेटा फ़्रेम रिपोजिशन लिख रहा हूं और उनके अंश सेट करता हूं।

ऐसा करते समय, यह संपूर्ण सक्रिय दृश्य को 4 बार रीड करता है, स्क्रिप्ट को काफी हद तक धीमा कर देता है।

F9 दबाने या स्क्रिप्ट चलाने से पहले 'पॉज ड्रॉइंग' बटन पर क्लिक करने से ड्राइंग डिसएबल हो जाती है और स्क्रिप्ट बहुत तेजी से चलती है, लेकिन मैं चाहता हूं कि स्क्रिप्ट अपने आप ऐसा हो जाए।

मैं स्क्रिप्ट की शुरुआत में ArcMap 10 ड्राइंग को अक्षम करना चाहता हूं, और इसे अंत में सक्षम करना चाहता हूं।

मैं यह कैसे करु?

जवाबों:


13

मुझे आर्कपी में कुछ भी देशी नहीं दिखाई दिया। सबसे आसान बात यह है कि SendKeys मॉड्यूल का उपयोग करके संभवत: F9 कीस्ट्रोके को आर्कपैक विंडो पर भेजें ।

मैंने इस सिंटैक्स के साथ परीक्षण किया और यह ठीक काम किया:

import SendKeys
# Send the keystroke for F9
SendKeys.SendKeys("{F9}")

एकमात्र चेतावनी यह है कि आपको स्क्रिप्ट गुणों के सामान्य टैब पर "हमेशा अग्रभूमि में चलाने" को अनचेक करने की आवश्यकता हो सकती है। अन्यथा स्क्रिप्ट प्रगति विंडो द्वारा कीस्ट्रोक को पकड़ा जा सकता है।


धन्यवाद! हालांकि मैंरे पास भी एक सवाल है। हमारे नेटवर्क के किसी भी कंप्यूटर को इस स्क्रिप्ट का उपयोग करने में सक्षम होना चाहिए। क्या हमारे सर्वर पर SendKeys मॉड्यूल को होस्ट करना संभव है ताकि हमें इसे हर कंप्यूटर पर स्थापित न करना पड़े? मैं नए मॉड्यूल जोड़ने से परिचित नहीं हूं
टान्नर

1
मॉड्यूल आयात करते समय पायथन दिखने वाली डिफ़ॉल्ट निर्देशिकाओं को जोड़ने के लिए आप PYTHONPATH का उपयोग कर सकते हैं। मैंने कभी इसका उपयोग नहीं किया है इसलिए मैं कोई मार्गदर्शन नहीं दे सकता। यहाँ अधिक जानकारी: docs.python.org/tutorial/modules.html#the-module-search-path
इवान

धन्यवाद। SendKeys तब काम करता है जब मैं 'हमेशा अग्रभूमि में चलता हूं' को बंद कर देता हूं, लेकिन समस्या यह है कि यदि आप चापलूसी का उपयोग कर रहे हैं तो एक स्क्रिप्ट उपकरण को अग्रभूमि में चलाना होगा। ArcObjects में? फिर दोबारा, मैंने कभी भी आर्कोबजेक्ट्स का इस्तेमाल नहीं किया है
टैनर

1
आप स्क्रिप्ट टूल प्रॉपर्टीज़ डायलॉग से हमेशा अग्रभूमि में चलने के लिए टूल को ही बदल सकते हैं।
जेसन शहीर

SendKeys मॉड्यूल का वह लिंक मेरे लिए काम नहीं करता है। किसी और को इसके साथ समस्या है? क्या आपके पास उस मॉड्यूल को डाउनलोड करने के लिए एक और लिंक है?
user3697700

6

मुझे पता है कि यह सवाल बहुत पहले बंद हो गया था, लेकिन मेरे पास कुछ पुराने उपकरण हैं जो इस समस्या के लिए नए थे और SendKeys समाधान अब काम नहीं कर रहा है, इसलिए मैंने प्रयोग करने के बाद अपना खुद का समाधान रोल किया। यह ड्राइंग को अक्षम नहीं करता है, लेकिन परतों को अक्षम करने और जब किया जाता है, तब उन्हें फिर से सक्षम करके प्रदर्शन के बराबर बनाता है। बैकग्राउंड में स्क्रिप्ट चलने से समस्या का समाधान नहीं होता (हालाँकि मुझे लगा कि यह होगा), इसलिए मैंने सभी लेयर्स को बंद करने की कोशिश की - और यह काम कर गया! एक खाली दस्तावेज़ में समकक्ष कोड के लिए पूर्ण गति। तो यहाँ कुछ कोड है कि पूरा करने के लिए।

संयुक्त होने पर, ये दो कार्य, दस्तावेज़ की सभी परतों को बंद कर देते हैं, परतों की सहेजे गए स्थिति को लौटाते हैं। फिर, जब आपके ऑपरेशन किए जाते हैं, तो आप दूसरे फ़ंक्शन में उस सहेजे गए राज्य को प्रदान करके उन्हें वापस चालू कर सकते हैं। अनुशंसित उपयोग:

try:
    layer_state = turn_off_all_layers("CURRENT")
    # Do interesting things here
finally:  # put it in a finally block so that if your interesting code fails, your layers still get reenabled
    turn_on_layers("CURRENT", layer_state)

और फ़ंक्शन नीचे हैं - सुधार, टिप्पणियां, आदि - बहुत नए कोड का स्वागत करते हैं, इसलिए इसमें कुछ बग हो सकते हैं, लेकिन कुछ का परीक्षण किया गया है।

def turn_off_all_layers(document="CURRENT"):
    """
        A speedup function for map generation in ArcMap - turns off all layers so that it doesn't try to rerender them while we're using tools (since these tools need
        to run in the foreground and background processesing didn't seem to speed it up).

        Creates a dictionary keyed on the arcpy layer value longName which contains True or False values for whether or not the layers were enabled before running this.
        Allows us to then use turn_on_layers on the same document to reenable those layers

    :param document: a map document. defaults to "CURRENT"
    :return: dict: a dictionary keyed on layer longName values with True or False values for whether the layer was enabled.
    """
    visiblity = {}

    doc = arcpy.mapping.MapDocument(document)
    for lyr in arcpy.mapping.ListLayers(doc):
        if lyr.visible is True:
            try:
                visiblity[lyr.longName] = True
                lyr.visible = False
            except NameError:
                visiblity[lyr.longName] = False  # if we have trouble setting it, then let's not mess with it later
        else:
            visiblity[lyr.longName] = False

    return visiblity


def turn_on_layers(document="CURRENT", storage_dict=None, only_change_visible=True):

    if not storage_dict:
        raise ValueError("storage_dict must be defined and set to a list of layer names with values of False or True based on whether the layer should be on or off")

    doc = arcpy.mapping.MapDocument(document)
    for lyr in arcpy.mapping.ListLayers(doc):
        if lyr.longName in storage_dict:
            if not only_change_visible or (only_change_visible is True and storage_dict[lyr.longName] is True):  # if we're only supposed to set the ones we want to make visible and it is one, or if we want to set all
                try:
                    lyr.visible = storage_dict[lyr.longName]  # set the visibility back to what we cached
                except NameError:
                    arcpy.AddWarning("Couldn't turn layer %s back on - you may need to turn it on manually" % lyr.longName)  # we couldn't turn a layer back on... too bad
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.