操作方法
在 ArcGIS Online 中,通过访问项目详细信息页面,然后单击使用情况选项卡,可以标识任何项目的使用情况。
针对 Portal for ArcGIS,还可以使用 ArcGIS API for Python 以编程方式确定项目的使用情况。
以下步骤将介绍如何在门户中标识内容项目的使用情况:
from arcgis.gis import GIS
gis = GIS("https://arcgis.com", "user_name") print("connected")
content = gis.content.search(query="", sort_field="title", sort_order="asc", max_items=2) content
for item in content: print (item.homepage) print (item.usage ('24H')) print (item.usage ('7D')) print (item.usage ('14D')) print (item.usage ('30D')) print (item.usage ('60D')) print (item.usage ('6M')) print (item.usage ('1Y'))
以下屏幕截图显示了项目的使用情况。
获取来自 ArcGIS 专家的帮助
下载 Esri 支持应用程序