本文简要介绍 python 语言中 arcgis.raster.functions.arithmetic
的用法。
用法:
arcgis.raster.functions.arithmetic(raster1, raster2, extent_type='FirstOf', cellsize_type='FirstOf', astype=None, operation_type=1)
返回:
应用此函数的输出栅格。
算术函数在两个栅格或一个栅格和一个标量之间执行算术运算,反之亦然。
该函数的参数如下:
Parameter
Description
raster1
需要首先输入
Raster
/ImageryLayer
对象,通过 where 子句、空间和时间过滤器进行过滤。raster2
所需的第二个输入
Raster
/ImageryLayer
对象由 where 子句、空间和时间过滤器过滤。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”。默认为无。
operation_type
可选的整数。可用选项包括:
1 = Plus. This is the default.
2 = Minus
3 = Multiply
4 = Divide
5 = Power
6 = Mode
例子:
# Usage Example 1: Applies the multiplication opeeration on two rasters. arithmetic_op = arithmetic(raster1=raster_obj_1, raster2=raster_obj_2, operation_type=3)
相关用法
- Python ArcGIS areas_and_lengths用法及代码示例
- Python ArcGIS acos用法及代码示例
- Python ArcGIS add_image用法及代码示例
- Python ArcGIS abs用法及代码示例
- Python ArcGIS acosh用法及代码示例
- Python ArcGIS aspect_slope用法及代码示例
- Python ArcGIS analyze_changes_using_ccdc用法及代码示例
- Python ArcGIS asinh用法及代码示例
- Python ArcGIS aggregate_points用法及代码示例
- Python ArcGIS asin用法及代码示例
- Python ArcGIS atan2用法及代码示例
- Python ArcGIS atanh用法及代码示例
- Python ArcGIS aggregate_multidimensional_raster用法及代码示例
- Python ArcGIS aspect用法及代码示例
- Python ArcGIS atan用法及代码示例
- Python ArcGIS aggregate用法及代码示例
- Python ArcGIS analyze_changes_using_landtrendr用法及代码示例
- 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.arithmetic。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。