GetParameterAsText (arcpy)
摘要
按照参数在参数列表中的索引位置来获取文本字符串形式的指定参数。
讨论
无论参数的数据类型是什么,所有值都将作为字符串返回;要将参数用作 ArcPy 或 Python 对象,请参阅 GetParameter。
语法
GetParameterAsText (index)
参数 | 说明 | 数据类型 |
index |
The numeric position of the parameter in the parameter list. | Integer |
数据类型 | 说明 |
String |
以字符串形式返回的指定参数值。 |
代码实例
GetParameterAsText 示例
以文本字符串形式获取指定参数。
import os
import arcpy
# Set the input workspace, get the feature class name to copy
# and the output location.
arcpy.env.workspace = arcpy.GetParameterAsText(0)
in_featureclass = arcpy.GetParameterAsText(1)
out_workspace = arcpy.GetParameterAsText(2)
out_featureclass = os.path.join(out_workspace,
os.path.basename(in_featureclass))
# Copy feature class to output location
arcpy.CopyFeatures_management(in_featureclass, out_featureclass)
相关主题
5/10/2014