मैंने खेतों को फिर से व्यवस्थित करने के लिए पायथन टूलबॉक्स टूल बनाया और फिर से बनाए गए फ़ील्ड के साथ एक नया फीचर क्लास बनाया। उपकरण अच्छी तरह से काम करता है और मैं एक मूल्य तालिका का उपयोग करने में सक्षम हूं ताकि उपयोगकर्ता अपने द्वारा चुने गए क्रम में फ़ील्ड को व्यवस्थित कर सकें या वे प्रत्येक फ़ील्ड के लिए रैंक मान भर सकें। हालांकि, इस उपकरण का कष्टप्रद हिस्सा यह है कि सभी क्षेत्रों को मूल्य तालिका में पुन: व्यवस्थित करने से पहले जोड़ा जाना चाहिए।
मैं इसे सभी क्षेत्रों में डिफ़ॉल्ट रूप से मान तालिका में लाने के लिए सेट करने का प्रयास कर रहा हूं और किसी भी अवांछित फ़ील्ड को पुनः व्यवस्थित करने से पहले हटाया जा सकता है। क्या किसी को इससे पहले ऐसा कुछ करने में सफलता मिली है? मैं UpdateParameters विधि में इसे प्राप्त करने की कोशिश कर रहा हूं। यहाँ कोड मैं कोशिश कर रहा हूँ:
import arcpy
import os
class Toolbox(object):
def __init__(self):
"""Define the toolbox (the name of the toolbox is the name of the
.pyt file)."""
self.label = "Reorder Fields"
self.alias = "Reorder Fields"
# List of tool classes associated with this toolbox
self.tools = [ReorderFields]
class ReorderFields(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = "Reorder Fields"
self.description = ""
self.canRunInBackground = False
def getParameterInfo(self):
"""Define parameter definitions"""
fc = arcpy.Parameter(displayName='Features',
name='features',
datatype='Feature Layer',
parameterType='Required',
direction='Input')
vt = arcpy.Parameter(
displayName='Fields',
name='Fields',
datatype='Value Table',
parameterType='Required',
direction='Input')
output = arcpy.Parameter(
displayName='Output Features',
name='output_features',
datatype='Feature Class',
parameterType='Required',
direction='Output')
vt.columns = [['Field', 'Fields'], ['Long', 'Ranks']]
vt.parameterDependencies = [fc.name]
params = [fc, vt, output]
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."""
if parameters[0].value:
if not parameters[1].altered:
fields = [f for f in arcpy.Describe(str(parameters[0].value)).fields
if f.type not in ('OID', 'Geometry')]
vtab = arcpy.ValueTable(2)
for field in fields:
vtab.addRow("{0} {1}".format(field.name, ''))
parameters[1].value = vtab
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."""
fc = parameters[0].valueAsText
vt = parameters[1].valueAsText
output = parameters[2].valueAsText
मैं डिफ़ॉल्ट रूप से ऊपर के मान तालिका में दिखाए गए अनुसार सभी फ़ील्ड लाना चाहता हूं। मैंने parameters[1].value
GUI से विशिष्ट मूल्य तालिका पंक्तियों को जोड़ने के लिए भी उपयोग करने की कोशिश की , लेकिन इससे मुझे त्रुटियां हुईं। मैं ArcGIS 10.2.2 का उपयोग कर रहा हूं।