取反 (空间分析)
摘要
逐个像元地更改输入栅格的像元值符号(乘以 -1)。
插图
语法
Negate (in_raster_or_constant)
参数 | 说明 | 数据类型 |
in_raster_or_constant |
要取反的输入栅格(乘以 -1)。 为了使用数字作为此参数的输入,像元大小和范围必须先在环境中进行设置。 | Raster Layer | Constant |
返回值
名称 | 说明 | 数据类型 |
out_raster |
输出栅格。 像元值为取反后(乘以 -1)的输入值。 | Raster |
代码示例
取反示例 1(Python 窗口)
此例更改输入栅格值的符号并输出 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")
取反示例 2(独立脚本)
此例更改输入栅格值的符号并输出 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" # Check out the ArcGIS Spatial Analyst extension license arcpy.CheckOutExtension("Spatial") # Execute Negate outNegate = Negate(inRaster) # Save the output outNegate.save("C:/sapyexamples/output/outnegate")
相关主题
许可信息
ArcView: 需要 Spatial Analyst
ArcEditor: 需要 Spatial Analyst
ArcInfo: 需要 Spatial Analyst
7/10/2012