本文简要介绍 python 语言中 arcgis.features.FeatureLayer.get_unique_values
的用法。
用法:
get_unique_values(attribute, query_string='1=1')
返回:
唯一值列表
检索
FeatureLayer
中给定属性的唯一值列表。Parameter
Description
attribute
必需的字符串。要查询的要素图层属性。
query_string
可选字符串。在返回唯一值之前将用于过滤属性的 SQL 查询。前任。 “name_2 喜欢‘%K%’”
例子:
# Usage Example with only a "where" sql statement >>> from arcgis.features import FeatureLayer >>> gis = GIS("pro") >>> buck = gis.content.search("owner:"+ gis.users.me.username) >>> buck_1 =buck[1] >>> lay = buck_1.layers[0] >>> layer = lay.get_unique_values(attribute = "COUNTY") >>> layer ['PITKIN', 'PLATTE', 'TWIN FALLS']
相关用法
- Python ArcGIS FeatureLayer.generate_renderer用法及代码示例
- Python ArcGIS FeatureLayer.manager用法及代码示例
- Python ArcGIS FeatureLayer.delete_features用法及代码示例
- Python ArcGIS FeatureLayer.fromitem用法及代码示例
- Python ArcGIS FeatureLayer.query_related_records用法及代码示例
- Python ArcGIS FeatureLayer.query_date_bins用法及代码示例
- Python ArcGIS FeatureLayer.append用法及代码示例
- Python ArcGIS FeatureLayer.calculate用法及代码示例
- Python ArcGIS FeatureLayer.edit_features用法及代码示例
- Python ArcGIS FeatureLayer.query用法及代码示例
- Python ArcGIS FeatureLayerCollection.extract_changes用法及代码示例
- Python ArcGIS FeatureLayer用法及代码示例
- Python ArcGIS Feature.geometry用法及代码示例
- Python ArcGIS Feature.set_value用法及代码示例
- Python ArcGIS FeatureCollection.from_featureset用法及代码示例
- Python ArcGIS Feature用法及代码示例
- Python ArcGIS Feature.attributes用法及代码示例
- Python ArcGIS FeatureSet.save用法及代码示例
- 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.FeatureLayer.get_unique_values。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。