ListTimeZones

摘要

列出要与 LayerTime 类的 timeZone 属性配合使用的有效时区字符串。

说明

LayerTime 类的 timeZone 属性仅适用于特定的时区字符串。 此功能可用于查看有效的字符串列表。

语法

ListTimeZones ({wildcard})
参数说明数据类型
wildcard

A wildcard is based on the time zone string and is not case sensitive. A combination of asterisks (*) and characters can be used to help limit the resulting list.

(默认值为 None)

String
返回值
数据类型说明
List

列出要与 LayerTime 类的 timeZone 属性配合使用的有效时区字符串。

代码示例

ListTimeZones 示例

以下脚本将打印包含文本 Canada 的所有时区。

import arcpy
tzList = arcpy.mp.ListTimeZones("*Canada*")
print(tzList)