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


Python ArcGIS Geotab用法及代码示例


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

用法:

class arcgis.realtime.velocity.feeds.Geotab(label, description, url, database, username, password, groups=None, diagnostics_ids=None, data_format=None, track_id_field=None, geometry=None, time=None, run_interval=RunInterval(cron_expression='0 * * ? * * *', timezone='America/Los_Angeles'))

可选参数:

  • groups: String 。要包含在函数架构中的组列表。使用 semi-colon (;) 分隔多个值。
  • diagnostics_ids: String 。要包含在函数架构中的诊断 ID 列表。使用 semi-colon (;) 分隔多个值。
  • data_format: JsonFormat 。包含此 feed 的数据格式配置的实例。仅配置允许的格式。如果在初始化期间未正确设置,则会自动检测格式并根据传入数据的样本进行设置。该示例将从 init 中迄今为止提供的配置中获取。
  • track_id_field: String 。应设置为轨道 ID 的传入数据的字段名称。
  • geometry: [XYZGeometrySingleFieldGeometry]。几何配置的实例,将用于从传入数据创建几何对象。
  • time: [TimeInstantTimeInterval]。时间配置实例,将用于根据传入数据创建时间信息。
  • run_interval: RunInterval 。调度程序配置的实例。默认为:RunInterval(cron_expression=”0 * * ? * * *”, timezone=”America/Los_Angeles”)

返回:

具有 Geotab 提要配置的数据类。

轮询 Geotab 以获取事件数据。该数据类可用于定义提要配置并创建提要。

Parameter

Description

label

String 。此 Feed 实例的唯一标签。

description

String 。饲料说明。

url

String 。用于验证 Geotab 的 URL。

database

String 。提供数据的 Geotab 数据库的名称。

username

String 。指定用于验证 Geotab 的用户名。

password

String 。指定用于验证 Geotab 的密码。

例子:

# Usage Example

from arcgis.realtime.velocity.feeds import Geotab
from arcgis.realtime.velocity.feeds.geometry import XYZGeometry, SingleFieldGeometry
from arcgis.realtime.velocity.feeds.time import TimeInterval, TimeInstant

geotab = Geotab(
    label="feed_name",
    description="feed_description",
    url="Geotab_url",
    database="Geotab_database",
    username="Geotab_user_name",
    password="Geotab_password",
    data_format=None
)

# use velocity object to get the FeedsManager instance
feeds = velocity.feeds

# use the FeedsManager object to create a feed from this feed configuration
geotab_feed = feeds.create(geotab)
geotab_feed.start()
feeds.items

相关用法


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