本文简要介绍 python 语言中 arcgis.geoanalytics.manage_data.copy_to_data_store
的用法。
用法:
arcgis.geoanalytics.manage_data.copy_to_data_store(input_layer, output_name=None, gis=None, context=None, future=False)
返回:
result_layer :将要素输出为
FeatureLayer
。
copy_to_data_store
任务获取输入层并将其复制到数据存储中。数据被复制到ArcGIS 数据存储,配置为关系或时空大数据存储。例如
Copy a collection of .csv files in a big data file share to the spatiotemporal data store for visualization.
Copy the features in the current map extent that are stored in the spatiotemporal data store to the relational data store.
该工具将获取输入层并将其复制到数据存储中。数据将被复制到 ArcGIS 数据存储,并将存储在您的关系或时空数据存储中。
例如,您可以将存储在大数据文件共享中的要素复制到关系数据存储中,并指定仅复制当前Map范围内的要素。这将创建一个托管要素服务,其中仅包含指定Map范围内的那些要素。
Parameter
Description
input_layer
必需的层。将被复制的表、点、线或面要素。请参阅特征输入。
output_name
可选字符串。该任务将创建结果的要素服务。您定义服务的名称。
gis
可选的地理信息系统。运行此工具的 GIS。如果未指定,则使用活动 GIS。
context
可选字符串。 context 参数包含影响任务执行的其他设置。对于此任务,有五个设置:
extent
- A bounding box that defines the analysis area. Only those features that intersect the bounding box will be analyzed.processSR
- The features will be projected into this coordinate system for analysis.outSR
- The features will be projected into this coordinate system after the analysis to be saved. The output spatial reference for the spatiotemporal big data store is always WGS84.dataStore
- Results will be saved to the specified data store. For ArcGIS Enterprise, the default is the spatiotemporal big data store.defaultAggregationStyles
- If set toTrue
, results will have square, hexagon, and triangle aggregation styles enabled on results map services.
future
可选布尔值。如果是
True
,将返回一个 future 对象,并且进程不会等待任务完成。默认为False
,表示等待结果。例子:
# Usage Example: To copy input layer to a data store. copy_result = copy_to_data_store(input_layer=earthquakes, output_name="copy earthquakes data")
相关用法
- Python ArcGIS copy_raster用法及代码示例
- Python ArcGIS compute_change_raster用法及代码示例
- Python ArcGIS compute_accuracy_for_object_detection用法及代码示例
- Python ArcGIS connect_origins_to_destinations用法及代码示例
- Python ArcGIS colormap用法及代码示例
- Python ArcGIS convert_feature_to_raster用法及代码示例
- Python ArcGIS convert_raster_to_feature用法及代码示例
- Python ArcGIS cosh用法及代码示例
- Python ArcGIS contour用法及代码示例
- Python ArcGIS con用法及代码示例
- Python ArcGIS cos用法及代码示例
- Python ArcGIS colormap_to_rgb用法及代码示例
- Python ArcGIS calculate_statistics用法及代码示例
- Python ArcGIS create_space_time_cube用法及代码示例
- Python ArcGIS classify用法及代码示例
- Python ArcGIS ccdc_analysis用法及代码示例
- Python ArcGIS create_viewshed用法及代码示例
- Python ArcGIS create_route_layers用法及代码示例
- Python ArcGIS create_drive_time_areas用法及代码示例
- Python ArcGIS create_image_collection用法及代码示例
- Python ArcGIS create_buffers用法及代码示例
- Python ArcGIS create_watersheds用法及代码示例
- Python arcgis.learn.classify_objects用法及代码示例
- Python ArcGIS clip_layer用法及代码示例
- Python arcgis.learn.classify_pixels用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.geoanalytics.manage_data.copy_to_data_store。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。