本文簡要介紹 python 語言中 arcgis.raster.analytics.build_overview
的用法。
用法:
arcgis.raster.analytics.build_overview(image_collection, cell_size=None, context=None, *, gis=None, future=False, **kwargs)
返回:
生成圖像集合的概覽。
Parameter
Description
image_collection
必需的。輸入圖像集合。image_collection 可以是門戶項目或圖像服務 URL 或 URI。 image_collection 必須存在。
cell_size
可選 float 或 int,用於設置概覽的單元格大小。
context
context 包含影響任務執行的其他設置。
context 參數覆蓋通過arcgis.env 參數設置的值
此函數具有以下設置:
並行處理因子(parallelProcessingFactor):控製光柵處理(CPU)服務實例。
例子:
具有指定數量的處理實例的語法示例:
{“parallelProcessingFactor”: “2”}
具有指定百分比的總處理實例的語法示例:
{“parallelProcessingFactor”: “60%”}
gis
可選的
GIS
對象。如果未指定,則使用當前活動的連接。future
僅關鍵字參數。可選的布爾值。如果為 True,則結果將是一個 GPJob 對象,並且結果將異步返回。
圖像層 url
例子:
# Usage Example 1: This snippet is a quick implementation of the build_overview function. collection = gis.content.search("my_img_collection")[0] collection_url = build_overview(image_collection=collection.url, gis=gis)
相關用法
- Python ArcGIS build_multidimensional_transpose用法及代碼示例
- Python ArcGIS build_footprints用法及代碼示例
- Python ArcGIS build_multivariable_grid用法及代碼示例
- Python ArcGIS buffer用法及代碼示例
- Python ArcGIS bitwise_not用法及代碼示例
- Python ArcGIS bitwise_left_shift用法及代碼示例
- Python ArcGIS bitwise_xor用法及代碼示例
- Python ArcGIS bitwise_right_shift用法及代碼示例
- Python ArcGIS boolean_or用法及代碼示例
- Python ArcGIS band_arithmetic用法及代碼示例
- Python ArcGIS boundary_clean用法及代碼示例
- Python ArcGIS boolean_not用法及代碼示例
- Python ArcGIS bitwise_or用法及代碼示例
- Python ArcGIS batch_geocode用法及代碼示例
- Python ArcGIS boolean_and用法及代碼示例
- Python ArcGIS boolean_xor用法及代碼示例
- Python ArcGIS bitwise_and用法及代碼示例
- Python ArcGIS power用法及代碼示例
- Python ArcGIS APIKeyManager.get用法及代碼示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代碼示例
- Python ArcGIS ContentManager.unshare_items用法及代碼示例
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python ArcGIS FormFieldElement用法及代碼示例
- Python ArcGIS Geometry.true_centroid用法及代碼示例
- Python ArcGIS Site.delete用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.analytics.build_overview。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。