ListDirectionsLanguages (arcpy.na)

摘要

返回语言列表,您可以在其中为网络分析期间所创建的路径生成方向。可用语言的列表取决于您计算机上所安装的方向语言包。

讨论

对可用语言的选择取决于您所安装的 ArcGIS 语言包。要在方向中支持更多语言,请安装更多的语言包。

在自定义脚本工具验证中可使用该功能来填充可用方向语言的 ValueList 以供用户从中进行选择,这与查找最近设施点工具的“方向语言”参数相类似。

语法

ListDirectionsLanguages (network_dataset_path)
参数说明数据类型
network_dataset_path

A variable that references the catalog path of the network dataset. The catalog path of a network dataset can be obtained from the dataSource property of a network dataset layer or a network analysis layer object. It can also be obtained from the catalogPath property of a network dataset describe object.

String
返回值
数据类型说明
String

可用方向语言的输出列表中包含由两个或五个字符组成的字符串,代表您计算机上所安装的语言。它将是以下语言的子集:

  • ar阿拉伯语
  • de德语
  • zh-cn英语
  • es西班牙语
  • fr法语
  • it意大利语
  • ja日语
  • pt-BR巴西葡萄牙语
  • ru俄语
  • zh-CN简体中文

代码实例

读取网络数据集中的可用语言并将它们存储在变量中。

# Path to an on-disk network dataset
nds = r'C:\arcgis\ArcTutor\Network Analyst\Tutorial\SanDiego.gdb\Transportation\Streets_ND'

# Create a list of directions languages available with your ArcGIS installation
languages = arcpy.na.ListDirectionsLanguages(nds)

相关主题

5/10/2014