当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ArcGIS Velocity用法及代码示例


本文简要介绍 python 语言中 arcgis.realtime.Velocity 的用法。

用法:

class arcgis.realtime.Velocity(url, gis)

提供对实时分析、大数据分析和ArcGIS Velocity 中的源的访问。

Parameter

Description

url

ArcGIS Velocity 组织的 URL。

gis

经过身份验证的arcigs.gis.GIS 对象。

# Connect to a Velocity instance:

gis = GIS(url="url",username="username",password="password",)

velocity = gis.velocity
velocity
# UsageExample:

from arcgis.gis import GIS
gis = GIS(url="url",username="username",password="password",)

velocity = gis.velocity
velocity

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.realtime.Velocity。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。