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


Python ArcGIS Feature.geometry用法及代碼示例


本文簡要介紹 python 語言中 arcgis.features.Feature.geometry 的用法。

用法:

property geometry

返回:

該要素的幾何形狀就像一個字典。

獲取/設置特征的幾何形狀(如果有)。

Parameter

Description

value

必需的字符串。值:“折線”| “多邊形”| '觀點'

注意:

設置此值將覆蓋當前幾何字典(如果已存在)。

# Get the current geometry
>>> feat_set = feature_layer.query(where="1=1")
>>> feat_list = feat_set.features
>>> feat = feat_list[0]
>>> feat.geometry
{'x': -8238318.738276444,
 'y': 4970309.724235498,
 'spatialReference': {'wkid': 102100, 'latestWkid': 3857}}

相關用法


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