本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。