本文簡要介紹 python 語言中 arcgis.realtime.velocity.feeds.StreamLayer
的用法。
用法:
class arcgis.realtime.velocity.feeds.StreamLayer(label, description, portal_item_id, query='1=1', fields='*', outSR=4326, extent=None, track_id_field=None, time=None)
可選參數:
- WHERE 子句: String 。查詢以檢索特征的子集。
- 輸出字段: String 。用於處理的以逗號分隔的字段列表。
- 輸出空間參考: String 。查詢要素應返回的空間參考。
- extent:
字典[str,任意]。 JSON 表示由 ArcGIS REST API 的 JSON 幾何架構定義的信封。
# Sample Value { "spatialReference": { "latestWkid": 3857, "wkid": 102100 }, "xmin": -14784278.027601289, "ymin": 2604610.848073723, "xmax": -11451317.846255329, "ymax": 6852675.132049575 }
- track_id_field: String 。應設置為軌道 ID 的傳入數據的字段名稱。
- time:
[
TimeInstant
,TimeInterval
]。時間配置實例,將用於根據傳入數據創建時間信息。
返回:
具有流層饋送配置的數據類。
從流層接收特征。該數據類可用於定義提要配置並創建提要。
數據格式是Esri流層。 ArcGIS Velocity 將自動為您處理位置。
Parameter
Description
label
String 。 feed 實例的唯一標簽。
description
String 。飼料說明。
portal_item_id
String 。流層的Portal item ID。
query
String 。流層查詢參數。默認為:“1=1”
fields
String 。請求的流層輸出字段。
例如:
“field1,field2”
默認為:“*”。
outSR
國際。請求的輸出空間參考。默認值為:4326。
注意:要了解有關投影坐標係和地理坐標係的更多信息,請參閱Using spatial references。
data_format
String 。指定傳入數據的總體格式。
例子:
# Usage Example from arcgis.realtime.velocity.feeds import StreamLayer from arcgis.realtime.velocity.feeds.time import TimeInterval, TimeInstant extent = { "spatialReference": { "latestWkid": 3857, "wkid": 102100 }, "xmin": "xmin", "ymin": "ymin", "xmax": "xmax", "ymax": "ymax" } stream_layer_config = StreamLayer( label="feed_name", description="feed_description", portal_item_id="portal_id", query="1=1", fields="*", outSR=4326, extent=extent ) # use velocity object to get the FeedsManager instance feeds = velocity.feeds # use the FeedsManager object to create a feed from this feed configuration stream_layer_feed = feeds.create(stream_layer_config) stream_layer_feed.start() feeds.items
相關用法
- Python ArcGIS StoryMap.move用法及代碼示例
- Python ArcGIS StoryMap.theme用法及代碼示例
- Python ArcGIS StoryMap.add用法及代碼示例
- Python ArcGIS StoryMap.credits用法及代碼示例
- Python ArcGIS StoryMap.cover用法及代碼示例
- Python ArcGIS StoryMap.get用法及代碼示例
- Python ArcGIS StoryMap.duplicate用法及代碼示例
- Python ArcGIS StoryMap.navigation用法及代碼示例
- Python ArcGIS Site.delete用法及代碼示例
- Python ArcGIS Site.export_site用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.update_tiles用法及代碼示例
- Python ArcGIS SiteManager.get用法及代碼示例
- Python ArcGIS SceneLayer用法及代碼示例
- Python ArcGIS Site.update_theme用法及代碼示例
- Python ArcGIS System.index_status用法及代碼示例
- Python ArcGIS Site.update_layout用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.import_tiles用法及代碼示例
- Python ArcGIS SavedSearchesManager.update用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.delete_tiles用法及代碼示例
- Python ArcGIS Server用法及代碼示例
- Python ArcGIS Sidecar用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.edit_tile_service用法及代碼示例
- Python ArcGIS SiteManager.get_by_domain用法及代碼示例
- Python ArcGIS SSLCertificates.import_certificate用法及代碼示例
- Python ArcGIS SiteManager.add用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.realtime.velocity.feeds.StreamLayer。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。