Spline with Barriers (Spatial Analyst)
Resumen
Interpola una superficie de ráster, con barreras, a partir de puntos utilizando una técnica de spline de curvatura mínima. Las barreras se introducen como entidades poligonales o de polilínea.
Uso
-
This tool requires the Java runtime environment Version 6, or higher, to be installed. The Java Runtime Environment can be downloaded for free from http://www.java.com/en/download.
-
The resulting smooth surface from is constrained by the input barrier features.
-
Algunos datasets de entrada pueden tener algunos puntos con las mismas coordenadas x,y. Si los valores de los puntos de una ubicación común son los mismos, se consideran duplicados y no afectan a la salida. Si los valores son diferentes, se consideran puntos coincidentes.
Las distintas herramientas de interpolación pueden manejar esta condición de datos de maneras distintas. Por ejemplo, en algunos casos el primer punto coincidente encontrado se utiliza para el cálculo; en otros casos, se utiliza el último punto encontrado. Esto puede causar que algunas ubicaciones del ráster de entrada tengan valores distintos a los que puede esperar. La solución es preparar los datos quitando estos puntos coincidentes. La herramienta Adquirir eventos de la caja de herramientas de Estadística espacial es útil para identificar cualquier punto coincidente en los datos.
For the Spline with Barriers tool, by default the values for each set of coincident points will be averaged.
-
If a cell size of 0 is entered, the cell size actually used will be the shorter of the width or the height of the extent of the input point features, in the input spatial reference, divided by 250.
-
The barrier features are rasterized and the cell center is used to decide whether the cell falls within a polygon or whether the cell becomes a barrier for polyline features.
If the tool fails to run with an error message stating that a "more recent version of Java needs to be installed", and you have multiple versions of Java installed, you need to update the PATH environment variable.
Sintaxis
Parámetro | Explicación | Tipo de datos |
Input_point_features in_point_features |
Entidades de punto de entrada que contienen los valores z que se interpolarán en un ráster de superficie. | Feature Layer |
Z_value_field |
Campo que contiene un valor de altura o magnitud para cada punto. Puede ser un campo numérico o el campo Forma si las entidades de punto de entrada contienen valores z. | Field |
Input_barrier_features (Opcional) |
The optional input barrier features to constrain the interpolation. | Feature Layer |
Output_cell_size cell_size (Opcional) |
El tamaño de celda con el que se creará el ráster de salida. If a value of 0 is entered, the shorter of the width or the height of the extent of the input point features in the input spatial reference, divided by 250, will be used as the cell size. | Analysis Cell Size |
Smoothing_Factor (Opcional) | The parameter that influences the smoothing of the output surface. No smoothing is applied when the value is zero and the maximum amount of smoothing is applied when the factor equals 1. The default is 0.0. | Double |
Valor de retorno
Nombre | Explicación | Tipo de datos |
Output_raster |
Ráster de superficie interpolado de salida. | Raster |
Ejemplo de código
En este ejemplo se introduce un shapefile de punto y se interpola la superficie de salida como ráster TIFF.
import arcpy from arcpy import env from arcpy.sa import * env.workspace = "C:/sapyexamples/data" outSplineBarriers = SplineWithBarriers("ca_ozone_pts.shp", "ozone", "ca_ozone_barrier.shp", 2000) outSplineBarriers.save("C:/sapyexamples/output/splinebarrierout.tif")
En este ejemplo se introduce un shapefile de punto y se interpola la superficie de salida como ráster de cuadrícula.
# Name: SplineWithBarriers_Ex_02.py # Description: Interpolate a series of point features onto a # rectangular raster, using optional barriers, using a # minimum curvature spline technique. # Requirements: Spatial Analyst Extension and Java Runtime # Environment Version 5.0, or higher. # Import system modules import arcpy from arcpy import env from arcpy.sa import * # Set environment settings env.workspace = "C:/sapyexamples/data" # Set local variables inPointFeatures = "ca_ozone_pts.shp" zField = "ozone" inBarrierFeature = "ca_ozone_barrier.shp" cellSize = 2000.0 # Check out the ArcGIS Spatial Analyst extension license arcpy.CheckOutExtension("Spatial") # Execute Spline with Barriers outSplineBarriers = SplineWithBarriers(inPointFeatures, zField, inBarrierFeature, cellSize) # Save the output outSplineBarriers.save("C:/sapyexamples/output/splinebout02")