本文简要介绍 python 语言中 arcgis.features.analysis.create_route_layers
的用法。
用法:
arcgis.features.analysis.create_route_layers(route_data_item, delete_route_data_item=False, tags=None, summary=None, route_name_prefix=None, folder_name=None, gis=None, estimate=False, future=False)
返回:
result_layer :列表(项目)或
Item
。
create_route_layers
方法根据输入路径数据在门户上创建路径图层项目。路线图层包括特定路线的所有信息,例如分配给路线的停靠点以及行进方向。如果您想与组织中的其他成员共享单个路径,则创建路径图层非常有用。
Parameter
Description
route_data
必填项。用于创建路径层项目的路径数据项的项目 ID。在运行此任务之前,必须将路行数据作为项目添加到您的门户。
delete_route_data_item
必需的布尔值。指示是否应删除输入路由数据项。您可能希望删除路径数据,以防在从中创建路径图层后不再需要这些数据。
当
delete_route_data_item
设置为true且任务删除路由数据项失败时,会返回警告信息但仍继续执行。默认值为假。
tags
可选字符串。用于说明和识别路径层项目的标签。各个标签使用逗号分隔。即使未指定此参数的值,路由名称也始终作为标记添加。
summary
可选字符串。作为路径图层项目的项目信息的一部分显示的摘要。如果未指定此参数的值,则使用默认摘要文本“<Route Name> 的路线和方向”。
route_name_prefix
可选字符串。添加到每个路径图层项目的标题的限定符。这可用于指定为特定目的共享的所有路由在标题中具有相同的前缀。路线的名称始终附加在此限定符之后。如果未指定 route_name_prefix 的值,则仅使用路径名称创建路径层项目的标题。
folder_name
可选字符串。将在其中创建路径图层项目的个人在线工作空间(ArcGIS Online 或 Portal for ArcGIS 组织中的我的内容)中的文件夹。如果指定名称的文件夹不存在,将创建一个新文件夹。如果存在具有指定名称的文件夹,则将在现有文件夹中创建项目。如果未指定 folder_name 的值,则会在在线工作空间的根文件夹中创建路径图层项目。
gis
可选,运行此工具的
GIS
。如果未指定,则使用活动 GIS。estimate
可选的布尔值。如果为 True,则将返回运行该操作所需的估计积分数。
future
可选布尔值。如果为 True,则将返回 future 对象,并且进程不会等待任务完成。默认为False,表示等待结果。
如果
future = True
,则结果是Future
对象。调用result()
获取响应。例子:
# USAGE EXAMPLE: To create route layers from geodatabase item. route = create_route_layers(route_data_item=route_item, delete_route_data_item=False, tags="datascience", summary="example of create route layers method", route_name_prefix="santa_ana", folder_name="create route layers")
相关用法
- Python ArcGIS create_space_time_cube用法及代码示例
- Python ArcGIS create_viewshed用法及代码示例
- Python ArcGIS create_drive_time_areas用法及代码示例
- Python ArcGIS create_image_collection用法及代码示例
- Python ArcGIS create_buffers用法及代码示例
- Python ArcGIS create_watersheds用法及代码示例
- Python ArcGIS calculate_statistics用法及代码示例
- Python ArcGIS classify用法及代码示例
- Python ArcGIS compute_change_raster用法及代码示例
- Python ArcGIS ccdc_analysis用法及代码示例
- Python ArcGIS copy_raster用法及代码示例
- Python ArcGIS compute_accuracy_for_object_detection用法及代码示例
- Python ArcGIS connect_origins_to_destinations用法及代码示例
- Python ArcGIS copy_to_data_store用法及代码示例
- Python ArcGIS colormap用法及代码示例
- Python ArcGIS convert_feature_to_raster用法及代码示例
- Python arcgis.learn.classify_objects用法及代码示例
- Python ArcGIS convert_raster_to_feature用法及代码示例
- Python ArcGIS cosh用法及代码示例
- Python ArcGIS contour用法及代码示例
- Python ArcGIS clip_layer用法及代码示例
- Python arcgis.learn.classify_pixels用法及代码示例
- Python ArcGIS cellstats_range用法及代码示例
- Python ArcGIS calculate_fields用法及代码示例
- Python ArcGIS con用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.features.analysis.create_route_layers。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。