本文簡要介紹 python 語言中 arcgis.features.Table.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 Table.generate_renderer用法及代碼示例
- Python ArcGIS Table.append用法及代碼示例
- Python ArcGIS Table.query_date_bins用法及代碼示例
- Python ArcGIS Table.calculate用法及代碼示例
- Python ArcGIS Table.delete_features用法及代碼示例
- Python ArcGIS Table.query_related_records用法及代碼示例
- Python ArcGIS Table.query用法及代碼示例
- Python ArcGIS Table.edit_features用法及代碼示例
- Python ArcGIS Table.manager用法及代碼示例
- Python ArcGIS TimeInstant用法及代碼示例
- Python ArcGIS TrackView用法及代碼示例
- Python ArcGIS TimeInterval用法及代碼示例
- Python ArcGIS Timeline用法及代碼示例
- Python ArcGIS power用法及代碼示例
- Python ArcGIS APIKeyManager.get用法及代碼示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代碼示例
- Python ArcGIS ContentManager.unshare_items用法及代碼示例
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python ArcGIS FormFieldElement用法及代碼示例
- Python ArcGIS Geometry.true_centroid用法及代碼示例
- Python ArcGIS Site.delete用法及代碼示例
- Python ArcGIS GeoAccessor.bbox用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python ArcGIS generate_service_areas用法及代碼示例
- Python ArcGIS build_overview用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.features.Table.get_unique_values。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。