当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。