本文简要介绍 python 语言中 arcgis.features.Feature.set_value
的用法。
用法:
set_value(field_name, value)
返回:
一个布尔值,指示
field_name
值是否已更新 (True) 或未更新 (False)。
设置给定字段名称的属性值。
Parameter
Description
field_name
必需的字符串。要更新的字段的名称。
value
必需的。用于更新字段的值。
例子:
# Usage Example >>> feat_set = feature_layer.query(where="OBJECTID=1") >>> feat = feat_set.features[0] >>> feat.fields ['OBJECTID', 'FID_Commun', 'AREA', 'PERIMETER', 'NAME', 'COUNTY', 'CONAME'] >>> feat.get_value("NAME") 'Original Name' >>> feat.set_value(field_name = "NAME", value = "New Name") True
注意:
要保存对上述代码段的编辑,请在列表中使用
edit_features()
和feat_set
作为updates
参数。
相关用法
- Python ArcGIS Feature.geometry用法及代码示例
- Python ArcGIS Feature.attributes用法及代码示例
- Python ArcGIS FeatureLayerCollection.extract_changes用法及代码示例
- Python ArcGIS FeatureLayer.manager用法及代码示例
- Python ArcGIS FeatureLayer.delete_features用法及代码示例
- Python ArcGIS FeatureLayer.fromitem用法及代码示例
- Python ArcGIS FeatureLayer.query_related_records用法及代码示例
- Python ArcGIS FeatureLayer用法及代码示例
- Python ArcGIS FeatureLayer.query_date_bins用法及代码示例
- Python ArcGIS FeatureLayer.get_unique_values用法及代码示例
- Python ArcGIS FeatureLayer.generate_renderer用法及代码示例
- Python ArcGIS FeatureLayer.append用法及代码示例
- Python ArcGIS FeatureLayer.calculate用法及代码示例
- Python ArcGIS FeatureCollection.from_featureset用法及代码示例
- Python ArcGIS FeatureLayer.edit_features用法及代码示例
- Python ArcGIS Feature用法及代码示例
- Python ArcGIS FeatureSet.save用法及代码示例
- Python ArcGIS FeatureLayer.query用法及代码示例
- Python ArcGIS Feed.metrics用法及代码示例
- Python ArcGIS FeedsManager.get用法及代码示例
- Python ArcGIS FeedsManager.create用法及代码示例
- Python ArcGIS FeedsManager.items用法及代码示例
- Python ArcGIS Feed.start用法及代码示例
- Python ArcGIS Feed.stop用法及代码示例
- Python ArcGIS Feed.status用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.features.Feature.set_value。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。