當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。