আমি ইএসআরআইয়ের ব্লগ সাইটে 'একটি মাল্টিভালু পছন্দ তালিকা তৈরি করা' শিরোনামে পাওয়া একটি মডেল এবং স্ক্রিপ্ট সংমিশ্রণটি খাপ খাইবার চেষ্টা করছি ।
যাইহোক, আমি এই সিদ্ধান্তে পৌঁছেছি যে এম্বেড স্ক্রিপ্টটিতে ব্যবহৃত বৈধতার অংশটি সঠিকভাবে কাজ করার জন্য 'ফ্রিকোয়েন্সি' সরঞ্জামের উপর নির্ভরশীল, তবে এটি কেবলমাত্র এবং অ্যাডভান্সড লাইসেন্স (পঙ্গু) দিয়ে উপলভ্য। ব্লগ পোস্টটি ওয়ার্কফ্লো এবং কোথায় মডেলগুলি এবং স্ক্রিপ্টগুলি ডাউনলোড করবেন তা ব্যাখ্যা করেছে (তবে আমি অনুরোধের পরে সেগুলি এখানে আনন্দের সাথে পোস্ট করব)। আমি যতদূর বলতে পারি, কার্যকারিতার মূল কারণটি আমি করছি, একটি মাল্টিভালু পছন্দ তালিকা তৈরি করা:
..এটি বৈধতা স্ক্রিপ্টটি সঠিকভাবে কাজ করার বিষয়ে পূর্বাভাস দিয়েছে। বৈধতা ছাড়াই, আমি ক্ষেত্র থেকে মান হিসাবে একটি তালিকা হিসাবে উপস্থিত হতে অক্ষম। আমি যা যা করছি তার পরে কার্যকারিতাটি পাওয়ার জন্য এই বৈধতা স্ক্রিপ্টটি থেকে সরিয়ে দেওয়ার মতো কিছু আছে কি না কোনও কার্যকারিতা আছে? আমি বৈধতা প্রক্রিয়া সম্পর্কে অপরিচিত। বৈধতার জন্য কোডটি এখানে রয়েছে (আমি একটি কোড নমুনা হিসাবে পোস্ট করতে যাচ্ছিলাম তবে এটি অনুসরণ করা আরও সহজ হতে পারে বলে মনে হচ্ছে):
[ সম্পাদক দ্রষ্টব্য: এখানে আসল বৈধতা কোডটি রয়েছে, চিত্রটি সঠিক নয়]
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
এটা কি সম্ভব যে আমার অনুমান (পরীক্ষার মাধ্যমে) যাচাইকরণটি মূল অংশটি মিথ্যা, এবং অন্য কোনও কিছু মানকে বাছাইযোগ্য তালিকা হিসাবে প্রকাশ করতে দিচ্ছে না? অগ্রিম ধন্যবাদ. এই ধরণের কার্যকারিতা থাকা সত্ত্বেও আমি আমাদের সংস্থায় বিতরণের চেষ্টা করছি এমন কয়েকটি মূল কর্মপ্রবাহ গ্রহণ শুরু করব!
arcpy.da.SearchCursor
এই কাজের জন্য পুরানোের চেয়ে অনেক বেশি দ্রুত এবং উপযুক্তarcpy.SearchCursor
।