本文简要介绍 python 语言中 arcgis.raster.functions.bitwise_xor
的用法。
用法:
arcgis.raster.functions.bitwise_xor(rasters, extent_type='FirstOf', cellsize_type='FirstOf', astype=None)
返回:
应用了函数的输出栅格。
对两个输入栅格的二进制值执行按位异或运算。
该函数的参数如下:
Parameter
Description
rasters
Raster
或ImageryLayer
对象的必需列表。如果操作需要标量,则标量可以是float
。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 bitwise_xor function on two rasters. raster_list = [raster1, raster2] bitwise_xor_op = bitwise_xor(raster_list)
相关用法
- Python ArcGIS bitwise_not用法及代码示例
- Python ArcGIS bitwise_left_shift用法及代码示例
- Python ArcGIS bitwise_right_shift用法及代码示例
- Python ArcGIS bitwise_or用法及代码示例
- Python ArcGIS bitwise_and用法及代码示例
- Python ArcGIS build_overview用法及代码示例
- Python ArcGIS build_multidimensional_transpose用法及代码示例
- Python ArcGIS build_footprints用法及代码示例
- Python ArcGIS boolean_or用法及代码示例
- Python ArcGIS band_arithmetic用法及代码示例
- Python ArcGIS boundary_clean用法及代码示例
- Python ArcGIS boolean_not用法及代码示例
- Python ArcGIS batch_geocode用法及代码示例
- Python ArcGIS boolean_and用法及代码示例
- Python ArcGIS boolean_xor用法及代码示例
- Python ArcGIS build_multivariable_grid用法及代码示例
- Python ArcGIS buffer用法及代码示例
- 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.functions.bitwise_xor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。