本文简要介绍 python 语言中 arcgis.raster.analytics.calculate_statistics
的用法。
用法:
arcgis.raster.analytics.calculate_statistics(image_collection, skip_factors=None, context=None, *, gis=None, future=False, **kwargs)
返回:
计算图像集的统计信息
Parameter
Description
image_collection
必需的。输入图像集合。image_collection 可以是门户项目或图像服务 URL 或 URI。 image_collection 必须存在。
skip_factors
可选字典,控制计算统计数据时使用的栅格部分。
例子:
{“x”:5,”y”:5}x value represents - the number of horizontal pixels between samplesy value represents - the number of vertical pixels between samples.context
context 包含影响任务执行的其他设置。
context 参数覆盖通过arcgis.env 参数设置的值
此函数具有以下设置:
并行处理因子(parallelProcessingFactor):控制光栅处理(CPU)服务实例。
例子:
具有指定数量的处理实例的语法示例:
{“parallelProcessingFactor”: “2”}
具有指定百分比的总处理实例的语法示例:
{“parallelProcessingFactor”: “60%”}
函数还支持通过上下文的以下键:ignoreValues、skipExisting、areaOfInterest
gis
可选的
GIS
对象。如果未指定,则使用当前活动的连接。future
仅关键字参数。可选的布尔值。如果为 True,则结果将是一个 GPJob 对象,并且结果将异步返回。
图像层 url
例子:
# Usage Example 1: This snippet calculates statistics for the given image collection. collection = gis.content.search("my_img_collection")[0] collection_url = calculate_statistics(image_collection=collection.url, gis=gis)
相关用法
- Python ArcGIS calculate_fields用法及代码示例
- Python ArcGIS calculate_density用法及代码示例
- Python ArcGIS create_space_time_cube用法及代码示例
- Python ArcGIS classify用法及代码示例
- Python ArcGIS compute_change_raster用法及代码示例
- Python ArcGIS ccdc_analysis用法及代码示例
- Python ArcGIS copy_raster用法及代码示例
- Python ArcGIS create_viewshed用法及代码示例
- Python ArcGIS create_route_layers用法及代码示例
- Python ArcGIS create_drive_time_areas用法及代码示例
- Python ArcGIS compute_accuracy_for_object_detection用法及代码示例
- Python ArcGIS connect_origins_to_destinations用法及代码示例
- Python ArcGIS create_image_collection用法及代码示例
- Python ArcGIS copy_to_data_store用法及代码示例
- Python ArcGIS create_buffers用法及代码示例
- Python ArcGIS colormap用法及代码示例
- Python ArcGIS create_watersheds用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.raster.analytics.calculate_statistics。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。