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


Python ArcGIS FeatureLayer用法及代码示例


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

用法:

class arcgis.realtime.velocity.feeds.FeatureLayer(label, description, query='1=1', fields='*', outSR=4326, url=None, portal_item_id=None, extent=None, time_stamp_field=None, track_id_field=None, time=None, run_interval=RunInterval(cron_expression='0 * * ? * * *', timezone='America/Los_Angeles'))

可选参数:

  • portal_item_id: String 。要素图层的 Portal Item ID。
    注意: portal_item_id 或 url 是必需的。
  • extent: 字典[str,任意]。定义要素图层的空间范围的 Geometry 对象。
    # Sample Value
    {
        "spatialReference": {
            "latestWkid": 3857,
            "wkid": 102100
        },
        "xmin": -14784278.027601289,
        "ymin": 2604610.848073723,
        "xmax": -11451317.846255329,
        "ymax": 6852675.132049575
    }
  • time_stamp_field: String 。最新函数的可选日期字段。或者,指定一个日期字段,用于仅检索要素图层中的最新要素。 如果未指定时间戳字段,ArcGIS Velocity 将在轮询要素图层时加载符合 WHERE 子句条件的所有要素。 如果指定了时间戳字段,则 ArcGIS Velocity 第一次轮询要素图层时,它将加载时间戳字段日期时间在过去一分钟内且小于也满足 WHERE 子句条件的首次 Feed 轮询时间的所有要素。对于后续的每次轮询,只会加载时间戳字段值介于上次轮询时间和当前轮询时间之间并且也满足 WHERE 子句条件的要素。
  • track_id_field: String 。应设置为轨道 ID 的传入数据的字段名称。
  • time: [TimeInstantTimeInterval]。时间配置实例,将用于根据传入数据创建时间信息。
  • run_interval: RunInterval 。调度程序配置的实例。默认为:RunInterval(cron_expression=”0 * * ? * * *”, timezone=”America/Los_Angeles”)

返回:

具有要素图层馈送配置的数据类。

按固定时间表轮询要素图层以获取要素。该数据类可用于定义提要配置并创建提要。

数据格式是要素图层。 ArcGIS Velocity 将自动为您处理位置。

Parameter

Description

label

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

description

String 。饲料说明。

query

String 。要素图层查询参数。默认为:1=1。

fields

String 。请求的要素图层输出字段。

例如:

“field1, field2”

默认为:*。

outSR

国际。请求的输出空间参考。默认值为:4326。

注意:

要了解有关投影坐标系和地理坐标系的更多信息,请参阅Using spatial references

例子:

# Usage Example

from arcgis.realtime.velocity.feeds import FeatureLayer
from arcgis.realtime.velocity.http_authentication_type import (
    NoAuth,
    BasicAuth,
    CertificateAuth,
)

from arcgis.realtime.velocity.input.format import DelimitedFormat
from arcgis.realtime.velocity.feeds.geometry import XYZGeometry, SingleFieldGeometry
from arcgis.realtime.velocity.feeds.time import TimeInterval, TimeInstant
from arcgis.realtime.velocity.feeds.run_interval import RunInterval

extent = {
    "spatialReference": {
        "latestWkid": 3857,
        "wkid": 102100
    },
    "xmin": "xmin",
    "ymin": "ymin",
    "xmax": "xmax",
    "ymax": "ymax"
}

# Feature Layer Properties

feature_layer_config = FeatureLayer(
    label="feed_name",
    description="feed_description",
    query="1=1",
    fields="*",
    outSR=4326,
    url="feed_sample_server_link",
    extent=extent,
    time_stamp_field="date_field"
)

feature_layer_config

# Set recurrence
feature_layer_config.run_interval = RunInterval(
    cron_expression="0 * * ? * * *", timezone="America/Los_Angeles"
)

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

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

相关用法


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