需要 Spatial Analyst 许可。
获得 Image Analyst 许可后可用。
描述
逐个像元地更改输入栅格的像元值符号(乘以 -1)。
插图
使用方法
如果输入栅格数据为整型,则输出栅格数据也为整型。如果输入栅格数据为浮点型,则输出栅格数据也为浮点型。
如果输入是多波段栅格,则输出也将为多波段栅格。该工具将在输入中的每个波段上执行操作。
有关适用于此工具的地理处理环境的详细信息,请参阅分析环境和 Spatial Analyst。
语法
Negate(in_raster_or_constant)
参数 | 说明 | 数据类型 |
in_raster_or_constant | 要进行取反操作的输入栅格(乘以 -1)。 要使用数字作为此参数的输入,像元大小和范围必须先在环境中进行设置。 | Raster Layer; Constant |
返回值
名称 | 说明 | 数据类型 |
out_raster | 输出栅格。 像元值为取反后(乘以 -1)的输入值。 | Raster |
代码示例
此例更改输入栅格值的符号并输出 Grid 栅格。
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outNegate = Negate("degs")
outNegate.save("C:/sapyexamples/output/outneg")
此例更改输入栅格值的符号并输出 Grid 栅格。
# Name: Negate_Ex_02.py
# Description: Changes the sign (multiplies by -1) of the cell values
# of the input raster on a cell-by-cell basis
# Requirements: Spatial Analyst Extension
# Import system modules
import arcpy
from arcpy import env
from arcpy.sa import *
# Set environment settings
env.workspace = "C:/sapyexamples/data"
# Set local variables
inRaster = "degs"
# Execute Negate
outNegate = Negate(inRaster)
# Save the output
outNegate.save("C:/sapyexamples/output/outnegate")
许可信息
- Basic: 需要 Spatial Analyst 或 Image Analyst
- Standard: 需要 Spatial Analyst 或 Image Analyst
- Advanced: 需要 Spatial Analyst 或 Image Analyst