本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。