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


Python ArcGIS Country.travel_modes用法及代碼示例


本文簡要介紹 python 語言中 arcgis.geoenrichment.Country.travel_modes 的用法。

用法:

property travel_modes

DataFrame 該國家/地區可用的出行方式。這取決於特定國家/地區可用的交通網絡。

例如,在 Jupyter 中運行以下代碼將返回下表。

from arcgis.gis import GIS
from arcgis.geoenrichment import Country

usa = Country('usa', gis=GIS('pro'))

usa.travel_modes

名字

別名

說明

類型

阻抗

impedance_category

time_attribute_name

distance_attribute_name

0

driving_time

駕駛時間

模擬汽車的運動……

AUTOMOBILE

TravelTime

temporal

TravelTime

Kilometers

1

driving_distance

行駛距離

模擬汽車的運動……

AUTOMOBILE

Kilometers

distance

TravelTime

Kilometers

2

trucking_time

卡車運輸時間

車型基本卡車旅行b…

TRUCK

TruckTravelTime

temporal

TruckTravelTime

Kilometers

3

trucking_distance

貨運距離

車型基本卡車旅行b…

TRUCK

Kilometers

distance

TruckTravelTime

Kilometers

4

walking_time

步行時間

遵循…的路徑和道路

WALK

WalkTime

temporal

WalkTime

Kilometers

注意:

name 列中的值是 enrich() 方法的 proximity_type 參數所需的值。

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.geoenrichment.Country.travel_modes。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。