本文简要介绍 python 语言中 arcgis.realtime.velocity.feeds.RSS
的用法。
用法:
class arcgis.realtime.velocity.feeds.RSS(label, description, rss_url, http_auth_type, http_headers=<factory>, data_format=None, track_id_field=None, geometry=None, time=None, run_interval=RunInterval(cron_expression='0 * * ? * * *', timezone='America/Los_Angeles'))
可选参数:
- data_format:
[
RssFormat
,GeoRssFormat
]。包含此 feed 的数据格式配置的实例。仅配置允许的格式。如果在初始化期间未正确设置,则会自动检测格式并根据传入数据的样本进行设置。该示例将从 init 中迄今为止提供的配置中获取。 - track_id_field: String 。应设置为轨道 ID 的传入数据的字段名称。
- geometry:
[
XYZGeometry
,SingleFieldGeometry
]。几何配置的实例,将用于从传入数据创建几何对象。 - time:
[
TimeInstant
,TimeInterval
]。时间配置实例,将用于根据传入数据创建时间信息。 - run_interval:
RunInterval
。调度程序配置的实例。默认值为:RunInterval(cron_expression=``0 * * ? * * *``, timezone=”America/Los_Angeles”)
返回:
具有 RSS 提要配置的数据类。
轮询 HTTP 端点以获取 RSS 事件。该数据类可用于定义提要配置并创建提要。
Parameter
Description
label
String 。此 Feed 实例的唯一标签。
description
String 。饲料说明。
rss_url
String 。提供数据的 HTTP 端点的地址。
http_auth_type
[
NoAuth
、BasicAuth
、CertificateAuth
]。包含 feed 实例的身份验证信息的实例。http_headers
字典[str,str]。 Name-Value 字典,其中包含用于连接到 RSS 提要的 HTTP 标头。
例子:
# Usage Example from arcgis.realtime.velocity.feeds import RSS from arcgis.realtime.velocity.http_authentication_type import ( NoAuth, BasicAuth, CertificateAuth, ) from arcgis.realtime.velocity.input.format import GeoRssFormat 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 name = "rss feed name" description = "rss feed description" url = "rss feed url" http_auth = NoAuth() # http_auth = BasicAuth(username="username", password="password") # http_auth = CertificateAuth(pfx_file_http_location="https://link", password="password") http_headers = { "Content-Type": "application/json" } # all properties can also be defined in the constructor as follows # Set data format data_format = GeoRssFormat() # Set geometry field geometry = XYZGeometry( x_field="category_longitude", y_field="category_latitude", wkid=4326, z_field="category_altitude", z_unit="Meters" ) # Set time field time = TimeInterval( interval_start_field="start_field", interval_end_field="end_field" ) # Set recurrence run_interval = RunInterval( cron_expression="0 * * ? * * *", timezone="America/Los_Angeles" ) # Configure the RSS Feed rss = RSS( label="feed_name", description="feed_description", rss_url=url, http_auth_type=http_auth, http_headers=http_headers, track_id_field="track_id", data_format=data_format, geometry=geometry, time=time, run_interval=run_interval ) # use velocity object to get the FeedsManager instance feeds = velocity.feeds # use the FeedsManager object to create a feed from this feed configuration RSS_feed = feeds.create(rss) RSS_feed.start() feeds.items
- data_format:
[
相关用法
- Python ArcGIS RunInterval用法及代码示例
- Python ArcGIS ResourceManager.get用法及代码示例
- Python ArcGIS Raster.remove_variables用法及代码示例
- Python ArcGIS Raster.export_image用法及代码示例
- Python ArcGIS Raster.get_dimension_values用法及代码示例
- Python ArcGIS ResourceManager.add用法及代码示例
- Python ArcGIS ReportManager.quick_report用法及代码示例
- Python ArcGIS RealTimeAnalyticsManager.get用法及代码示例
- Python ArcGIS Raster.get_dimension_attributes用法及代码示例
- Python ArcGIS Raster.read用法及代码示例
- Python ArcGIS Raster.append_slices用法及代码示例
- Python ArcGIS RealTimeAnalytics.status用法及代码示例
- Python ArcGIS Raster.summarize用法及代码示例
- Python ArcGIS RealTimeAnalytics.metrics用法及代码示例
- Python ArcGIS RealTimeAnalytics.start用法及代码示例
- Python ArcGIS ResourceManager.update用法及代码示例
- Python ArcGIS RoleManager用法及代码示例
- Python ArcGIS RasterManager.add用法及代码示例
- Python ArcGIS Raster.get_variable_attributes用法及代码示例
- Python ArcGIS RasterCollection.filter_by_raster_property用法及代码示例
- Python ArcGIS RealTimeAnalyticsManager.items用法及代码示例
- Python ArcGIS Raster.get_dimension_names用法及代码示例
- Python ArcGIS Role.delete用法及代码示例
- Python ArcGIS ResourceManager.remove用法及代码示例
- Python ArcGIS RasterInfo.from_dict用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.realtime.velocity.feeds.RSS。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。