本文简要介绍 python 语言中 arcgis.gis.Item.copy_feature_layer_collection
的用法。
用法:
copy_feature_layer_collection(service_name, layers=None, tables=None, folder=None, description=None, snippet=None, owner=None)
返回:
如果成功,则返回
Item
对象。否则,失败时返回 None。
copy_feature_layer_collection
方法允许用户复制现有要素图层集合并选择用户想要在服务中使用的图层/表。它与copy
方法非常相似,但仅复制选定的要素图层集合。Parameter
Description
service_name
必需的字符串。它是服务的名称。
layers
可选列表/字符串。这是整数列表或以逗号分隔的整数列表作为字符串。每个索引值代表要素图层集合中的一个图层。
tables
可选列表/字符串。这是整数列表或以逗号分隔的整数列表作为字符串。每个索引值表示要素图层集合中的一个表。
folder
可选字符串。这是要放置的文件夹的名称。默认为 None,表示根文件夹。
description
可选字符串。这是服务的项目说明。
snippet
可选字符串。这是项目的服务片段。它不超过 250 个字符。
owner
可选字符串/用户。默认为当前用户,但如果您希望服务由另一个用户拥有,请传入此值。
例子:
# Usage Example >>> item.copy_feature_layer_collection(service_name="service_name", layers="1,4,5,8")
相关用法
- Python ArcGIS Item.copy用法及代码示例
- 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_feature_layer_collection。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。