我想创建一个参数框作为输入,代码是:
param = arcpy.Parameter(
displayName="TARIKH",
name="date_feature",
datatype="Date",
parameterType="Required",
direction="Input")
,输出如下:
out_path = "C:/Last"
geometry_type = "POLYGON"
out_name = #DATEINPUT
result = arcpy.CreateFeatureclass_management(out_path, out_name,geometry_type)
新要素类的名称基于参数的数据输入。