GetParameterAsText ArcMap 10.8 | Архивсправки ArcGIS Desktopс истекающейподдержкойибудетудален 1 марта 2026 года. Будущихвыпусков ArcGIS Desktop непланируется, ирекомендуетс...
GetParameterAsText example Get specified parameter as text string. importosimportarcpy# 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...
简而言之,GetParameter()获取的是对象,不能直接用print()打印;而GetParameterAsText()获取的是字符串,可以直接打印输出。
Class/Type:GetParameterAsText 导入包:arcpy 每个示例代码都附有代码来源和完整的源代码,希望对您的程序开发有帮助。 示例1 defmain():#get parameters from a tool interfacetitle=GetParameterAsText(0)description=GetParameterAsText(1)dataTitles=GetParameterAsText(2)dataTypes=GetParameterAsText(3)dataDownloads=...
# 需要导入模块: import arcpy [as 别名]# 或者: from arcpy importGetParameterAsText[as 别名]defmain():xml_file = arcpy.GetParameterAsText(1) input_workspace = arcpy.GetParameterAsText(0) field = arcpy.GetParameterAsText(2) checked = [] ...
0是位置号,作为函数参数传递。GetParameterAsText 从参数列表中的索引位置号获取文本字符串,0就是第一个参数,1是第二个参数,以此类推。
最近在学python,对gp中的getparameterastext()函数不解,看了一些大侠写的程序,仍然不知道数据是怎么输...
Пример GetParameterAsText Получитьуказанныйпараметрвкачестветекстовойстроки. importosimportarcpy# Set the input workspace, get the feature class name to copy# and the output location.arcpy.env.workspace = arcpy.GetParameterAsTex...
GetParameterAsText (index) パラメーター説明データ タイプ index The numeric position of the parameter in the parameter list. Integer 戻り値 データ タイプ説明 String The value of the specified parameter, returned as a string. コードのサンプル ...
GetParameterAsText(): https://pro.arcgis.com/zh-cn/pro-app/arcpy/functions/getparameterastext.htm 总结:在写arcpy的时候,获取参数是很常用的。简而言之,GetParameter()获取的是对象,不能直接用print()打印;而GetParameterAsText()获取的是字符串,可以直接打印输出。