本文簡要介紹 python 語言中 arcgis.raster.functions.divide
的用法。
用法:
arcgis.raster.functions.divide(rasters, extent_type='FirstOf', cellsize_type='FirstOf', astype=None)
返回:
應用了函數的輸出柵格。
除法函數以pixel-by-pixel 為基礎劃分兩個柵格的像素值。
該函數的參數如下:
Parameter
Description
rasters
兩個柵格/兩個ImageryLayer 對象的必需列表。如果操作需要標量,則標量可以是浮點數。
extent_type
可選字符串。指定要用於函數的範圍。
“FirstOf” - 使用第一個輸入柵格的範圍來確定處理範圍。這是默認設置。
“IntersectionOf” - 使用重疊像素的範圍來確定處理範圍。
“UnionOf” - 使用所有柵格的範圍來確定處理範圍。
“LastOf” - 使用最後一個輸入柵格的範圍來確定處理範圍。
cellsize_type
可選字符串。指定要用於函數的像元大小。
“FirstOf” - 使用輸入柵格的第一個像元大小。這是默認設置。
“MinOf” - 使用所有輸入柵格中最小的像元大小。
“MaxOf” - 使用所有輸入柵格中最大的像元大小。
“MeanOf” - 使用所有輸入柵格的平均像元大小。
“LastOf” - 使用輸入柵格的最後一個像元大小。
astype
可選字符串。指定輸出像素類型。可用選項是 - “C128” | “C64” | “F32” | “F64” | “S16” | “S32” | “S8” | “U1” | “U16” | “U2” | “U32” | “U4” | “U8”。默認為無。
提示:
也可以通過使用 /運算符劃分兩個輸入柵格來執行此柵格操作。
例子:
op_raster = 光柵1 /光柵2
例子:
# Usage Example 1: Executes the divide function on a list of two rasters. # Processing extent is determined using all rasters. raster_list = [raster1, raster2] divide_op = divide(raster_list, extent_type="UnionOf")
相關用法
- Python ArcGIS dimensional_moving_statistics用法及代碼示例
- Python ArcGIS dissolve_boundaries用法及代碼示例
- Python ArcGIS describe_dataset用法及代碼示例
- Python ArcGIS delete_image用法及代碼示例
- Python ArcGIS detect_incidents用法及代碼示例
- Python ArcGIS delete_image_collection用法及代碼示例
- Python arcgis.learn.detect_objects用法及代碼示例
- Python ArcGIS detect_change_using_change_analysis_raster用法及代碼示例
- Python ArcGIS define_nodata用法及代碼示例
- Python ArcGIS densify用法及代碼示例
- Python ArcGIS derive_new_locations用法及代碼示例
- 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用法及代碼示例
- Python ArcGIS GeoAccessor.bbox用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python ArcGIS generate_service_areas用法及代碼示例
- Python ArcGIS build_overview用法及代碼示例
- Python ArcGIS RunInterval用法及代碼示例
- Python ArcGIS acos用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.functions.divide。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。