当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ArcGIS ContentManager.bulk_update用法及代码示例


本文简要介绍 python 语言中 arcgis.gis.ContentManager.bulk_update 的用法。

用法:

bulk_update(itemids, properties)

返回:

结果列表

bulk_update 方法更新项目属性的集合。

注意:

bulk_update 目前仅适用于内容类别。

Parameter

Description

itemids

字符串或项目的必需列表。要更新的项目的集合。

properties

必需的字典。要更新的项目属性。

例子:

# Usage Example
>>> itemsids = gis.content.search("owner: TestUser12399")
>>> properties = {'categories' : ["clothes","formal_wear/socks"]}
>>> gis.content.bulk_update(itemids, properties)
[{'results' : [{'itemid' : 'id', 'success' : "True/False" }]}]

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.ContentManager.bulk_update。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。