本文简要介绍 python 语言中 arcgis.realtime.velocity.feeds.WebSocket
的用法。
用法:
class arcgis.realtime.velocity.feeds.WebSocket(label, description, url, data_format=None, track_id_field=None, geometry=None, time=None)
可选参数:
- data_format:
[
EsriJsonFormat
、GeoJsonFormat
、DelimitedFormat
、JsonFormat
、XMLFormat
]。包含此 feed 的数据格式配置的实例。仅配置允许的格式。如果在初始化期间未正确设置,则会自动检测格式并根据传入数据的样本进行设置。该示例将从 init 中迄今为止提供的配置中获取。 - track_id_field: String 。应设置为轨道 ID 的传入数据的字段名称。
- geometry:
[
XYZGeometry
,SingleFieldGeometry
]。几何配置的实例,将用于从传入数据创建几何对象。 - time:
[
TimeInstant
,TimeInterval
]。时间配置实例,将用于根据传入数据创建时间信息。
返回:
具有 Web Socket 提要配置配置的数据类。
从 Web 套接字接收事件。此数据类可用于定义提要配置并使用它来创建提要。
Parameter
Description
label
String 。 feed 实例的唯一标签。
description
String 。饲料说明。
url
String 。 WebSocket 接收消息的 URL。
例子:
# Usage Example from arcgis.realtime.velocity.feeds import WebSocket 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 web_socket = WebSocket( label="feed_name", description="feed_description", url = "http://feed_url.com" ) # create web socket feed # use velocity object to get the FeedsManager instance feeds = velocity.feeds # use the FeedsManager object to create a feed from this feed configuration web_socket_feed = feeds.create(web_socket) web_socket_feed.start() feeds.items
- data_format:
[
相关用法
- Python ArcGIS WebMap.update用法及代码示例
- Python ArcGIS WebMap.add_layer用法及代码示例
- Python ArcGIS WebMap用法及代码示例
- Python ArcGIS WebMap.basemap用法及代码示例
- Python ArcGIS WebMap.tables用法及代码示例
- Python ArcGIS WebMap.add_table用法及代码示例
- Python ArcGIS WebMap.forms用法及代码示例
- Python ArcGIS WebMap.update_drawing_info用法及代码示例
- Python ArcGIS WebhookManager.create用法及代码示例
- Python ArcGIS WebMap.print用法及代码示例
- Python ArcGIS WebMap.layers用法及代码示例
- Python ArcGIS WebMap.save用法及代码示例
- Python ArcGIS WebMap.move_from_basemap用法及代码示例
- Python ArcGIS WebMap.bookmarks用法及代码示例
- Python ArcGIS WebAdaptors.list用法及代码示例
- Python ArcGIS WebMap.update_layer用法及代码示例
- Python ArcGIS WebMap.move_to_basemap用法及代码示例
- Python ArcGIS Worker用法及代码示例
- Python ArcGIS WorkflowManager.create_lookup用法及代码示例
- Python ArcGIS WorkflowManager用法及代码示例
- Python ArcGIS WorkerManager用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.realtime.velocity.feeds.WebSocket。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。