本文簡要介紹 python 語言中 arcgis.raster.functions.set_null
的用法。
用法:
arcgis.raster.functions.set_null(rasters, extent_type='FirstOf', cellsize_type='FirstOf', astype=None)
返回:
應用了函數的輸出柵格。
set_null 函數將光柵的識別像素逐個像素設置為NoData。
該函數的參數如下:
Parameter
Description
rasters
Raster
/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”。默認為無。
例子:
# Usage Example 1: Executes the set_null function on the list of input rasters. # The first input raster would be a raster with any logical math function applied # on it to generate a boolean raster (values of 1 and 0). # The second input raster will be the False Raster. # On using the set_null function, all the values of 1 in the boolean raster # (first raster) will be set to NoData, and all values of 0 will be set to # the False Raster (second raster) values. bool_raster = boolean_not(raster) # Generate the boolean raster using boolean_not function set_null_op = set_null([bool_raster, false_raster])
相關用法
- Python ArcGIS segment_mean_shift用法及代碼示例
- Python ArcGIS segment用法及代碼示例
- Python ArcGIS sum用法及代碼示例
- Python ArcGIS sample用法及代碼示例
- Python ArcGIS summarize_elevation用法及代碼示例
- Python ArcGIS square用法及代碼示例
- Python ArcGIS sqrt用法及代碼示例
- Python ArcGIS summarize_nearby用法及代碼示例
- Python ArcGIS summarize_categorical_raster用法及代碼示例
- Python ArcGIS slope用法及代碼示例
- Python ArcGIS summarize_raster_within用法及代碼示例
- Python ArcGIS subset_multidimensional_raster用法及代碼示例
- Python ArcGIS summarize_center_and_dispersion用法及代碼示例
- Python ArcGIS summarize_attributes用法及代碼示例
- Python ArcGIS summarize_within用法及代碼示例
- Python ArcGIS suggest用法及代碼示例
- Python ArcGIS std用法及代碼示例
- Python ArcGIS sinh用法及代碼示例
- Python ArcGIS sin用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.functions.set_null。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。