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


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


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

用法:

property subgeographies

以NamedArea 對象的形式返回該國家/地區的命名地理位置。每個命名區域都具有其中支持的子地理級別的屬性,並且這些屬性的值是包含該地理級別內的命名地點的字典。這允許使用智能感知和如下符號交互式選擇地點:

示例 1:

# Usage Example 1

usa = Country.get('USA')
usa.subgeographies.states['California'].counties['San_Bernardino_County']

示例 2:

# Usage Example 2

india.named_places.states['Bihar'].districts['Aurangabad'].subdistricts['Barun']

注意:

目前,僅當使用 Web GIS(ArcGIS Online 或 ArcGIS Enterprise 作為 gis 源時才支持此函數。

相關用法


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