当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ArcGIS RunInterval用法及代码示例


本文简要介绍 python 语言中 arcgis.realtime.velocity.feeds.RunInterval 的用法。

用法:

class arcgis.realtime.velocity.feeds.RunInterval(cron_expression, timezone='America/Los_Angeles')

返回:

True如果操作成功

设置饲料的运行间隔。

Parameter

Description

cron_expression

String 。指定运行间隔的 Cron 表达式。您可以使用以下链接中的 cron 生成器来生成 cron 表达式:Cron Expression Generator & Explainer

默认为每一分钟,由以下表达式表示:

0 * * ? * * *

timezone

String 。运行要使用的间隔时区。默认为:“America/Los_Angeles”

注意:

要了解有关时区的更多信息,请参阅 Wikipedia 上的List of tz database time zones 页面。

例子:

# Usage Example

feed.run_interval = RunInterval(
    cron_expression="0 * * ? * * *", timezone="America/Los_Angeles",
)

# Seconds value must be between 10 and 59
# Minutes value must be between 1 and 59
# Hours value must be between 1 and 23

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.realtime.velocity.feeds.RunInterval。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。