- (取反) (arcpy.sa)

摘要

逐个像元地更改输入栅格的像元值符号(乘以 -1)。

插图

Negate illustration
OutRas = -Raster("InRas1")

讨论

使用具有栅格输入的运算符时,结果将为栅格。但是,如果所有输入为数字,那么结果也是数字。

当表达式中使用多个运算符时,其不一定按照从左到右的顺序执行。具有最高优先值的运算符将首先执行。有关运算符优先级的详细信息,请参阅运算符优先级表。您可使用括号来控制执行顺序。

如果输入栅格数据为整数,则输出栅格数据也为整数。如果输入栅格为浮点型,则输出栅格也为浮点型。

语法

- in_raster_or_constant
操作数说明数据类型
in_raster_or_constant

要取反的输入栅格(乘以 -1)。

Raster Layer | Constant

返回值

名称说明数据类型
out_raster

输出栅格对象。

像元值为取反后(乘以 -1)的输入值。

Raster

代码实例

一元 -(取反)示例 1(Python 窗口)

本示例更改输入栅格值的符号。

import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outNegate = - Raster("degs")
outNegate.save("C:/sapyexamples/output/outneg")
一元 -(取反)示例 2(独立脚本)

本示例更改输入栅格值的符号。

# Name: Op_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 = Raster("degs")

# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")

# Execute Negate
outNegate = -(inRaster)

# Save the output 
outNegate.save("C:/sapyexamples/output/outnegate")

环境

相关主题

5/10/2014