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


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