आर्किगिस में मल्टीवैल्यू चॉइस लिस्ट जनरेट कर रहा है टूल फ्रीक्वेंसी के बिना फ्रीक्वेंसी का उपयोग करके?


11

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

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

यहाँ छवि विवरण दर्ज करें

..इसकी पुष्टि स्क्रिप्ट पर ठीक से काम करने पर की जाती है। सत्यापन के बिना, मैं सूची के रूप में प्रदर्शित होने के लिए क्षेत्र से मान प्राप्त करने में असमर्थ हूं। क्या कुछ ऐसा है जिसे मैं इस सत्यापन स्क्रिप्ट से हटा सकता हूं, जिस कार्यक्षमता के बाद मैं हूं, या क्या कोई वर्कअराउंड है? मैं सत्यापन प्रक्रिया से अपरिचित हूं। यहाँ सत्यापन के लिए कोड है (मैं एक कोड नमूने के रूप में पोस्ट करने जा रहा था, लेकिन ऐसा लगता है कि इसका पालन करना आसान हो सकता है): यहाँ छवि विवरण दर्ज करें

[ संपादक ध्यान दें: यहाँ वास्तविक सत्यापन कोड है, छवि सही नहीं है]

import arcpy

class ToolValidator(object):
  """Class for validating a tool's parameter values and controlling
  the behavior of the tool's dialog."""

  def __init__(self):
    """Setup arcpy and the list of tool parameters."""
    self.params = arcpy.GetParameterInfo()

  def initializeParameters(self):
    """Refine the properties of a tool's parameters.  This method is
    called when the tool is opened."""
    return

  def updateParameters(self):
    """Modify the values and properties of parameters before internal
    validation is performed.  This method is called whenever a parmater
    has been changed."""
    if self.params[1].altered: #Set condition - if the input field value changes
        if self.params[1].value: #if the field parameter has a value
            for field in arcpy.Describe(self.params[0].value).fields: #iterate through fields in the input dataset
                if field.name.lower() == self.params[1].value.value.lower(): #find the field object with the same name as field parameter
                    try:
                        if self.params[2].values: #if this parameter has seleted values
                            oldValues = self.params[2].values #set old values to the selected values
                    except Exception:
                        pass
                    values = set() #create an empty set
                    fieldname = self.params[1].value.value #set the value of variable fieldname equal to the input field value
                    FrequencyTable = arcpy.Frequency_analysis (self.params[0].value, "in_memory\Frequency", self.params[1].value.value, "") #for large tables create a frequency table
                    cursor = arcpy.SearchCursor(FrequencyTable, "", "", self.params[1].value.value, "{0} A".format(self.params[1].value.value)) #open a search cursor on the frequency table
                    for row in cursor: #loop through each value
                        values.add(row.getValue(fieldname)) #add the value to the set
                    self.params[2].filter.list = sorted(values) #set the filter list equal to the sorted values
                    newValues = self.params[2].filter.list
                    try:
                        if len(oldValues): # if some values are selected
                            self.params[2].values = [v for v in oldValues if v in newValues] # check if seleted values in new list,
                            # if yes, retain the seletion.
                    except Exception:
                        pass

  def updateMessages(self):
    """Modify the messages created by internal validation for each tool
    parameter.  This method is called after internal validation."""
    return

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


1
आप किस संस्करण का उपयोग कर रहे हैं? मैं पूछता हूं क्योंकि 10.1 arcpy.da.SearchCursorसे अधिक तेज और पुराने की तुलना में इस कार्य के लिए अधिक उपयुक्त है arcpy.SearchCursor
blah238

1
आपके द्वारा लिंक किए गए टूलबॉक्स के लिए सत्यापन कोड आपके द्वारा लिंक की गई छवि में सत्यापन कोड से अलग है। पूर्व में एक उन्नत लाइसेंस की आवश्यकता होती है क्योंकि यह फ़्रीक्वेंसी टूल का उपयोग करता है। बाद के, पहले के ब्लॉग पोस्ट में विस्तृत, यह नहीं होना चाहिए क्योंकि यह सिर्फ SearchCursor जैसे मानक आर्करी कार्यों का उपयोग करता है। मेरे पास आपके लिए कोई उत्तर नहीं है लेकिन अगर आप दोनों को एक साथ जोड़ते हैं तो शायद आप इसका पता लगा सकते हैं।
blah238

@ blah268 इसकी 10.2, कि लापता के लिए खेद है। हम्म, अब यह एक बहुत ही दिलचस्प अवलोकन है। मैं उस पर गौर करूंगा, लेकिन मैं उत्सुक हूं: क्या मैं सही ढंग से समझता हूं कि सत्यापन वह है जो एक विकल्प सूची के रूप में मूल्यों को पारित करता है? बहु विकल्प के बाद मैं कार्यक्षमता हूं। मैं तुम्हें वापस मिल जाएगा, और प्रतिक्रिया के लिए बहुत धन्यवाद!
क्लिकिनावे

1
स्क्रिप्ट टूल पैरामीटर गुण वह जगह है जहाँ आप पैरामीटर और उनके गुणों की सूची सेट करते हैं (जिसमें मल्टीवैल्यू प्रॉपर्टी शामिल है)। स्क्रिप्ट टूल सत्यापन वह जगह है जहां यह विशेष उपकरण अन्य पैरामीटर मानों (सुविधा वर्ग और फ़ील्ड नाम) के आधार पर मल्टीवॉल पैरामीटर मानों को पॉप्युलेट करता है। बड़ी सुविधा कक्षाओं के लिए इसके साथ खेलना, मैं इसे उत्पादन में नहीं डालूँगा। बहुत धीमी गति से, और यह भी त्रुटि है कि अगर आपके पास "जियोप्रोसेसिंग ऑपरेशन के आउटपुट को अधिलेखित न करें" जियोप्रोसेसिंग विकल्पों में जाँच की गई है।
blah238

1
मैं चैट नहीं कर पा रहा हूं, लेकिन जो मैं सुझाऊंगा, वह आपकी आवश्यकताओं के विस्तार के लिए आपके प्रश्न का संपादन कर रहा है, आपने क्या प्रयास किया है और क्या काम नहीं कर रहा है।
blah238

जवाबों:


9

मुझे लगा कि कुछ लोगों को यह मूल्यवान लग सकता है। ईएसआरआई इस माध्यम से काम करने में मदद करने के लिए पर्याप्त रूप से अनुग्रहित था और ब्लॉग पोस्ट में उपयोग किए गए सत्यापन का एक विकल्प ढूंढता है जिसके लिए एक उन्नत लाइसेंस की आवश्यकता नहीं होती है। हालांकि मुझे निश्चित रूप से कुछ अतिरिक्त वस्तुओं का पता लगाना था, मैं सत्यापन कोड का श्रेय नहीं ले सकता। लेकिन, सिरों का मतलब औचित्य है और यह मेरे प्रश्न के उत्तर के रूप में योग्य है। हेयर यू गो:

import arcpy
class ToolValidator(object):
  """Class for validating a tool's parameter values and controlling
  the behavior of the tool's dialog."""

  def __init__(self):
    """Setup arcpy and the list of tool parameters."""
    self.params = arcpy.GetParameterInfo()

  def initializeParameters(self):
    """Refine the properties of a tool's parameters.  This method is
    called when the tool is opened."""
    return

  def updateParameters(self):
    """Modify the values and properties of parameters before internal
    validation is performed.  This method is called whenever a parameter
    has been changed."""
    if self.params[0].value and self.params[1].value:
        self.params[2].filter.list = sorted({row[0] for row in arcpy.da.SearchCursor(self.params[0].value, self.params[1].value.value) if row[0]})

  def updateMessages(self):
    """Modify the messages created by internal validation for each tool
    parameter.  This method is called after internal validation."""
    return

Arcpy.da.SearchCursor का उपयोग करके चुने हुए फ़ील्ड से बहुत तेज़ी से मान लौटाता है, रिकॉर्ड की संख्या को देखते हुए इसकी खोज (कम से कम मेरे डेटा में)। मैं यह देखने के लिए एक नया थ्रेड शुरू कर सकता हूं कि किसी के पास क्वेरी के आधार पर मान्यता के लिए फ़िल्टर लागू करने के बारे में कोई विचार है या नहीं। मुझे आशा है कि यह किसी की मदद करता है, लेकिन मुझे खुशी है कि हमारे पास इसका जवाब है!


1

मैंने इसे दूसरे तरीके से किया: डेटाबेस का उपयोग पांच एल स्तरों से मिलकर, आकार स्तर या क्षेत्रों को चुनने के बिना सिर्फ पहले स्तर से आइटम का चयन करके सत्यापन स्क्रिप्ट पहले स्तर में आपकी पसंद के अनुसार दूसरे स्तर के लिए मान उत्पन्न करता है, उसकी स्क्रिप्ट:

import arcpy
class ToolValidator(object):
  """Class for validating a tool's parameter values and controlling
  the behavior of the tool's dialog."""

  def __init__(self):  
    """Setup arcpy and the list of tool parameters."""  
    self.params = arcpy.GetParameterInfo()  



  def initializeParameters(self):  
    """Refine the properties of a tool's parameters.  This method is  
    called when the tool is opened."""  
    return  

  def updateParameters(self):

    fc="C:/LUCS/System_shapes/sys.shp"
##    fc = arcpy.MakeFeatureLayer_management(Lucssys)  
    """Modify the values and properties of parameters before internal  
    validation is performed.  This method is called whenever a parmater  
    has been changed."""  
##    if self.params[0].value and self.params[0].value:


    fc="C:/LUCS/System_shapes/sys.shp"  
    col=  ("L1_NAM") 
    self.params[0].filter.list = [str(val) for val in  
                                    sorted(  
                                      set(  
                                        row.getValue(col)  
                                        for row in arcpy.SearchCursor(fc, None, None,col)))]  
    if self.params[0].value not in self.params[0].filter.list:  
      self.params[0].value = self.params[0].filter.list[0]


    if self.params[0].value:

        fc="C:/LUCS/System_shapes/sys.shp"  
        col1=  ("L1_NAM")
        col2=  ("L2_NAM") 
        fields=(col1,col2)
##___________level2___________________________________________________________
    fc="C:/LUCS/System_shapes/sys.shp" 
    col1=  ("L1_NAM")
    col2=  ("L2_NAM") 
    fields=(col1,col2)

    Level0list=[]
    Level0list_uniq=[]
    cursor = arcpy.SearchCursor(fc)
    for row in cursor:
              if (row.getValue(col1)) ==(str(self.params[0].value)):
                      Level0list.append (row.getValue(col2))

    for elem in Level0list:
              if elem not in Level0list_uniq:
                  Level0list_uniq.append(elem)


    if self.params[1].value not in self.params[1].filter.list:  
        self.params[1].filter.list =Level0list_uniq
##________________level3______________________________________________________        
    fc="C:/LUCS/System_shapes/sys.shp" 
    col2=  ("L2_NAM")
    col3=  ("L3_NAM") 
    fields=(col2,col3)
    Level2list=[]
    Level2list_uniq=[]
    cursor = arcpy.SearchCursor(fc)
    for row in cursor:
              if (row.getValue(col2)) ==(str(self.params[1].value)):
                      Level2list.append (row.getValue(col3))
    for elem in Level2list:
              if elem not in Level2list_uniq:
                  Level2list_uniq.append(elem)
    if self.params[2].value not in self.params[2].filter.list:  
        self.params[2].filter.list =Level2list_uniq
##________________level4______________________________________________________        
    fc="C:/LUCS/System_shapes/sys.shp" 
    col3=  ("L3_NAM")
    col4=  ("L4_NAM") 
    fields=(col3,col4)

    Level3list=[]
    Level3list_uniq=[]
    cursor = arcpy.SearchCursor(fc)
    for row in cursor:
              if (row.getValue(col3)) ==(str(self.params[2].value)):
                      Level3list.append (row.getValue(col4))
    for elem in Level3list:
              if elem not in Level3list_uniq:
                  Level3list_uniq.append(elem)
    if self.params[3].value not in self.params[3].filter.list:  
        self.params[3].filter.list =Level3list_uniq
##________________level5______________________________________________________        
    fc="C:/LUCS/System_shapes/sys.shp" 
    col4=  ("L4_NAM")
    col5=  ("L5_NAM") 
    fields=(col4,col5)

    Level4list=[]
    Level4list_uniq=[]
    cursor = arcpy.SearchCursor(fc)
    for row in cursor:
              if (row.getValue(col4)) ==(str(self.params[3].value)):
                      Level4list.append (row.getValue(col5))
    for elem in Level4list:
              if elem not in Level4list_uniq:
                  Level4list_uniq.append(elem)
    if self.params[4].value not in self.params[4].filter.list:  
        self.params[4].filter.list =Level4list_uniq

  def updateMessages(self):  
    """Modify the messages created by internal validation for each tool  
    parameter.  This method is called after internal validation."""  

0
Add new conditions to ensure a single option when the same term exists in more than one category. ِand to force arcpy to deal with arabic fonts

import arcpy
import sys

reload(sys)

sys.setdefaultencoding('utf-8')

class ToolValidator(object):
  """Class for validating a tool's parameter values and controlling
  the behavior of the tool's dialog."""



  def __init__(self):  
    """Setup arcpy and the list of tool parameters."""  
    self.params = arcpy.GetParameterInfo()  




  def updateParameters(self):

    fc="C:/LUCS/System_shapes/sys.shp"
    col=  ("L1_NAM")
 ##________________level1_________________

    self.params[0].filter.list = [str(val) for val in  
                                    sorted(  
                                      set(  
                                        row.getValue(col)  
                                        for row in arcpy.SearchCursor(fc, None, None,col)))]  
    if self.params[0].value not in self.params[0].filter.list:  
      self.params[0].value = self.params[0].filter.list[0]



    if self.params[0].value:

        fc="C:/LUCS/System_shapes/sys.shp"  
        col1=  ("L1_NAM")
        col2=  ("L2_NAM")
        col3=  ("L3_NAM") 
        col4=  ("L4_NAM")
        col5=  ("L5_NAM") 
        fields=(col1,col2,col3,col4,col5)
        Level1list=[]
        Level1list_uniq=[]
        Level2list=[]
        Level2list_uniq=[]
        Level3list=[]
        Level3list_uniq=[]
        Level4list=[]
        Level4list_uniq=[]
        Level5list=[]
        Level5list_uniq=[]

        cursor = arcpy.SearchCursor(fc)
        for row in cursor:
                        if (row.getValue(col1)) ==(str(self.params[0].value)):
                                Level1list.append (row.getValue(col2))

        for elem in Level1list:
                        if elem not in Level1list_uniq:
                            Level1list_uniq.append(elem)


        if self.params[1].value not in self.params[1].filter.list:  
              self.params[1].filter.list =Level1list_uniq
      ##________________level3_________________        
        cursor = arcpy.SearchCursor(fc)
        for row in cursor:
                  if (row.getValue(col1)) ==(str(self.params[0].value)):
                    if (row.getValue(col2)) ==(str(self.params[1].value)):
                            Level2list.append (row.getValue(col3))
        for elem in Level2list:
                    if elem not in Level2list_uniq:
                        Level2list_uniq.append(elem)
        if self.params[2].value not in self.params[2].filter.list:  
              self.params[2].filter.list =Level2list_uniq
      ##________________level4_______________       
        cursor = arcpy.SearchCursor(fc)
        for row in cursor:
              if (row.getValue(col1)) ==(str(self.params[0].value)):

                    if (row.getValue(col3)) ==(str(self.params[2].value)):
                            Level3list.append (row.getValue(col4))
        for elem in Level3list:
                    if elem not in Level3list_uniq:
                        Level3list_uniq.append(elem)
        if self.params[3].value not in self.params[3].filter.list:  
              self.params[3].filter.list =Level3list_uniq
      ##________________level5_______________      
        cursor = arcpy.SearchCursor(fc)
        for row in cursor:
            if (row.getValue(col1)) ==(str(self.params[0].value)):
                    if (row.getValue(col4)) ==(str(self.params[3].value)):
                            Level4list.append (row.getValue(col5))
        for elem in Level4list:
                    if elem not in Level4list_uniq:
                        Level4list_uniq.append(elem)
        if self.params[4].value not in self.params[4].filter.list:  
              self.params[4].filter.list =Level4list_uniq

    return

कृपया आप पूरे कोड को ठीक से प्रारूपित करें।
मार्सेलो विला-पीनरोस

यह किया गया था, 10.5.0 में इसका काम कर रहा है
Younes Idriss

आप का एक भाग तैयार किया गया है, लेकिन जैसा कि आप देख सकते हैं कि अन्य लाइनें नहीं हैं ( उदाहरण के लिए आपके कोड के आयात विवरण)। { }अपने कोड को ठीक से प्रारूपित करने के लिए बटन का उपयोग करें ।
मार्सेलो विला-पीनरोस

ऐसा भी लगता है कि आप एक कक्षा की परिभाषा याद कर रहे हैं।
मार्सेलो विला-पीनरोस
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.