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


Python ArcGIS KnowledgeGraph.search用法及代碼示例


本文簡要介紹 python 語言中 arcgis.graph.KnowledgeGraph.search 的用法。

用法:

search(search, category='both')

返回:

列表[列表]

允許使用 full-text 索引搜索圖中實體、關係或兩者的屬性。

了解有關搜索知識圖的更多信息

Parameter

Description

search

必需的字符串。在知識圖上執行的搜索。

category

可選字符串。類別是全文搜索的位置。這可以與 entitiesrelationships 隔離。默認是查看 both

允許的值為:both、entities、relationship

注意:

檢查 service definition for the Knowledge Graph service 中類別的有效值。並非所有服務都支持兩者。

#Perform a search on the knowledge graph
search_result = knowledge_graph.search("cat")

# Perform a search on only entities in the knowledge graph
searchentities_result = knowledge_graph.search("cat", "entities")

相關用法


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