本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。