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


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


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

用法:

property attributes

返回:

以字段名稱為鍵的要素屬性值字典

獲取/設置要素的屬性值

Parameter

Description

value

必需的字典。

#Example to set attribute values

>>> feat_set = feature_layer.query(where="1=1")
>>> feat_list = feat_set.features
>>> feat = feat_list[0]
>>> feat.attributes = {"field1 : "value", field2 : "value"}

相關用法


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