本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。