當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。