Booleana Not (Spatial Analyst)
Resumen
Ejecuta una operación booleana Not (complementario) sobre los valores de celda del ráster de entrada.
Si los valores de entrada son verdaderos (distintos de cero), el valor de salida es 1. Si los valores de entrada son falsos (cero), la salida es 0.
Más información acerca de cómo funcionan las herramientas de matemática booleana
Ilustración
Uso
The Boolean math tools interpret the inputs as Boolean values, where non-zero values are considered true, and zero is considered false.
-
Sólo es necesaria una única entrada para llevar a cabo esta evaluación booleana.
If the input values are floating point, they are converted to integer values of either 0 or 1 before the operation is performed. If the input value is a floating point 0.0, it is converted to an integer 0. If the input is any value other than 0.0, it is converted to be an integer 1. For example, input float values of 0.6, 32.22 and -4.2 will all be treated as being 1. The output values are always integer.
-
En Álgebra de mapas, el símbolo del operador equivalente para esta herramienta es "~" (vínculo).
Sintaxis
Parámetro | Explicación | Tipo de datos |
in_raster_or_constant |
La entrada que se utiliza en esta operación booleana. In order to use a number as an input for this parameter, the cell size and extent must first be set in the environment. | Raster Layer | Constant |
Valor de retorno
Nombre | Explicación | Tipo de datos |
out_raster |
The output raster. The output values will be either 0 or 1. | Raster |
Ejemplo de código
Este ejemplo realiza una operación Not booleana (complementario) sobre un ráster GRID y saca el resultado como un ráster TIFF.
import arcpy from arcpy import env from arcpy.sa import * env.workspace = "C:/sapyexamples/data" outBooleanNot = BooleanNot("degs") outBooleanNot.save("C:/sapyexamples/output/outboolnot.tif")
Este ejemplo realiza una operación booleana Not (complementario) sobre un ráster GRID.
# Name: BooleanNot_Ex_02.py # Description: Performs a Boolean complement (NOT) operation on the # cell values of an input raster # 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 BooleanNot outBooleanNot = BooleanNot(inRaster) # Save the output outBooleanNot.save("C:/sapyexamples/output/outboolnot")