本文简要介绍 python 语言中 arcgis.gis.Item.copy
的用法。
用法:
copy(title=None, tags=None, snippet=None, description=None, layers=None)
返回:
一个
Item
对象**Usage Example** >>> item.copy() <Item title:"gisslideshow - Copy 94452b" type:Microsoft Powerpoint owner:geoguy> >>> item.copy(title="GIS_Tutorial") <Item title:"GIS_Tutorial" type:Microsoft Powerpoint owner:geoguy> >>> item.copy() <Item title:"NZTiles - Copy 021a06" type:Vector Tile Layer owner:geoguy>
copy
方法允许创建从当前项目派生的项目。对于图层,
copy
将创建一个使用 URL 作为参考的新项目。对于非基于图层的项目,将复制这些项目并提供完全相同的数据。如果未提供标题、标签、说明片段,则将使用
item
中的值。copy
方法可以在多种情况下使用,例如:Vector tile service sprite customization
Limiting feature service exposure
Sharing content by reference with groups
Creating backup items.
Parameter
Description
title
可选字符串。新项目的名称。
tags
可选的字符串列表。有助于搜索和定位已发布信息的说明性词语。
snippet
可选字符串。所发布信息的简要摘要。
description
可选字符串。正在发布的项目的详细说明。
layers
可选的整数列表。如果您有多个图层并且您只需要特定图层,则可以为这些图层提供索引。如果未提供任何内容,则所有图层都将可见。
相关用法
- Python ArcGIS Item.copy_feature_layer_collection用法及代码示例
- Python ArcGIS Item.create_tile_service用法及代码示例
- Python ArcGIS Item.publish用法及代码示例
- Python ArcGIS Item.reassign_to用法及代码示例
- Python ArcGIS Item.share用法及代码示例
- Python ArcGIS Item.status用法及代码示例
- Python ArcGIS Item.delete_relationship用法及代码示例
- Python ArcGIS Item.download用法及代码示例
- Python ArcGIS Item.delete用法及代码示例
- Python ArcGIS Item.move用法及代码示例
- Python ArcGIS Item.related_items用法及代码示例
- Python ArcGIS Item.register用法及代码示例
- Python ArcGIS Item.add_comment用法及代码示例
- Python ArcGIS Item.export用法及代码示例
- Python ArcGIS Item.update_thumbnail用法及代码示例
- Python ArcGIS Item.add_relationship用法及代码示例
- Python ArcGIS Item.update用法及代码示例
- Python ArcGIS Item.usage用法及代码示例
- Python ArcGIS Item.get_thumbnail用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python arcgis.apps.hub.Initiative.update用法及代码示例
- Python ArcGIS ImageryLayer.draw_graph用法及代码示例
- Python arcgis.apps.hub.IndicatorManager.add用法及代码示例
- Python arcgis.apps.hub.InitiativeManager.add用法及代码示例
- Python ArcGIS ImageryLayer.compute_stats_and_histograms用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.Item.copy。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。