Spline with Barriers (3D 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.

Learn more about how Spline with Barriers works

Uso

Sintaxis

SplineWithBarriers_3d (Input_point_features, Z_value_field, {Input_barrier_features}, {Output_cell_size}, Output_raster, {Smoothing_Factor})
ParámetroExplicaciónTipo 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
Output_raster

Ráster de superficie interpolado de salida.

Raster Layer
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

Ejemplo de código

SplineWithBarriers example 1 (Python window)

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  
env.workspace = "C:/data"
arcpy.SplineWithBarriers_3d("ozone_pts.shp", "ozone", "ozone_barrier.shp",
                             2000, "C:/output/splinebarrierout.tif")

SplineWithBarriers example 2 (stand-alone script)

En este ejemplo se introduce un shapefile de punto y se interpola la superficie de salida como ráster de cuadrícula.

# Name: SplineWithBarriers_3d_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

# Set environment settings
env.workspace = "C:/data"

# Set local variables
inPointFeatures = "ca_ozone_pts.shp"
zField = "ozone"
inBarrierFeature = "ca_ozone_barrier.shp"
cellSize = 2000.0
outRaster = "C:/output/splinebout"

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

# Execute Spline with Barriers
arcpy.SplineWithBarriers_3d(inPntFeat, zField, inBarrierFeature,
                            cellSize, outRaster)

Entornos

Temas relacionados

Información de licencia

ArcView: Requiere 3D Analyst o Spatial Analyst
ArcEditor: Requiere 3D Analyst o Spatial Analyst
ArcInfo: Requiere 3D Analyst o Spatial Analyst

7/10/2012