本文簡要介紹 python 語言中 arcgis.apps.hub.initiatives.InitiativeManager.clone
的用法。
用法:
clone(initiative, origin_hub=None, title=None)
返回:
Initiative
對象
克隆允許創建源自當前計劃的計劃。
注意:
如果您的
origin_hub
和destination_hub
都是Hub Basic組織,請使用~arcgis.apps.sites.SiteManager
類下支持的clone
方法。Parameter
Description
initiative
需要主動克隆
Initiative
對象。origin_hub
可選的
Hub
對象。僅對於 cross-org 克隆是必需的,其中所克隆的計劃不是具有公共訪問權限的項目。title
可選字符串。
例子:
# USAGE EXAMPLE: Clone an initiative in another organization #Connect to Hub hub_origin = gis1.hub hub_destination = gis2.hub #Fetch initiative initiative1 = hub_origin.initiatives.get('itemid12345') #Clone in another Hub initiative_cloned = hub_destination.initiatives.clone(initiative1, origin_hub=hub_origin) initiative_cloned.item USAGE EXAMPLE: Clone initiative in the same organization myhub = gis.hub initiative1 = myhub.initiatives.get('itemid12345') initiative2 = myhub.initiatives.clone(initiative1, title='New Initiative')
相關用法
- Python arcgis.apps.hub.InitiativeManager.add用法及代碼示例
- Python arcgis.apps.hub.InitiativeManager.get用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python arcgis.apps.hub.Initiative.delete用法及代碼示例
- Python arcgis.apps.hub.IndicatorManager.add用法及代碼示例
- Python ArcGIS IntegratedMeshLayer用法及代碼示例
- Python arcgis.apps.hub.Indicator.update用法及代碼示例
- Python arcgis.apps.hub.Indicator.delete用法及代碼示例
- Python ArcGIS Integration用法及代碼示例
- Python ArcGIS IndicatorData.add_filter用法及代碼示例
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python ArcGIS Item.publish用法及代碼示例
- Python ArcGIS ImageryLayer.draw_graph用法及代碼示例
- Python ArcGIS Item.reassign_to用法及代碼示例
- Python ArcGIS ImageryLayer.compute_stats_and_histograms用法及代碼示例
- Python ArcGIS ImageryTileManager.export用法及代碼示例
- Python ArcGIS ImageryLayer.plot_histograms用法及代碼示例
- Python ArcGIS ImageryLayerCacheManager.delete_tiles用法及代碼示例
- Python ArcGIS ImageryLayer.to_features用法及代碼示例
- Python ArcGIS Item.share用法及代碼示例
- Python ArcGIS Item.status用法及代碼示例
- Python ArcGIS Item.delete_relationship用法及代碼示例
- Python ArcGIS Item.download用法及代碼示例
- Python ArcGIS ImageryTileManager.estimate_size用法及代碼示例
- Python ArcGIS ImageryLayer.compute_cache_info用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.apps.hub.initiatives.InitiativeManager.clone。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。