com.esri.arcgis.geoprocessing.tools.spatialanalysttools
Class Spline

java.lang.Object
  extended by com.esri.arcgis.geoprocessing.AbstractGPTool
      extended by com.esri.arcgis.geoprocessing.tools.spatialanalysttools.Spline
All Implemented Interfaces:
GPTool

public class Spline
extends AbstractGPTool

Interpolates a raster surface from points using a two-dimensional minimum curvature spline technique. The Spline tool is contained in the Spatial Analyst Tools tool box.

Usage tips:


Field Summary
 
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool
vals
 
Constructor Summary
Spline()
          Creates the Spline tool with defaults.
Spline(java.lang.Object inPointFeatures, java.lang.Object zField, java.lang.Object outRaster)
          Creates the Spline tool with the required parameters.
 
Method Summary
 java.lang.Object getCellSize()
          Returns the Output cell size parameter of this tool .
 java.lang.Object getInPointFeatures()
          Returns the Input point features parameter of this tool .
 int getNumberPoints()
          Returns the Number of points parameter of this tool .
 java.lang.Object getOutRaster()
          Returns the Output raster parameter of this tool .
 java.lang.String getSplineType()
          Returns the Spline type parameter of this tool .
 java.lang.String getToolboxAlias()
          Returns the alias of the tool box containing this tool.
 java.lang.String getToolboxName()
          Returns the name of the tool box containing this tool.
 java.lang.String getToolName()
          Returns the name of this tool.
 double getWeight()
          Returns the Weight parameter of this tool .
 java.lang.Object getZField()
          Returns the Z value field parameter of this tool .
 void setCellSize(java.lang.Object cellSize)
          Sets the Output cell size parameter of this tool .
 void setInPointFeatures(java.lang.Object inPointFeatures)
          Sets the Input point features parameter of this tool .
 void setNumberPoints(int numberPoints)
          Sets the Number of points parameter of this tool .
 void setOutRaster(java.lang.Object outRaster)
          Sets the Output raster parameter of this tool .
 void setSplineType(java.lang.String splineType)
          Sets the Spline type parameter of this tool .
 void setWeight(double weight)
          Sets the Weight parameter of this tool .
 void setZField(java.lang.Object zField)
          Sets the Z value field parameter of this tool .
 
Methods inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool
getParameterValues, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Spline

public Spline()
Creates the Spline tool with defaults.

Initializes the array of tool parameters with the default values specified when the tool was created.


Spline

public Spline(java.lang.Object inPointFeatures,
              java.lang.Object zField,
              java.lang.Object outRaster)
Creates the Spline tool with the required parameters.

Initializes the array of tool parameters with the values as specified for the required parameters and with the default values for the other parameters.

Parameters:
inPointFeatures - the input point features containing the z-values to be interpolated into a surface raster.
zField - the field that holds a height or magnitude value for each point. this can be a numeric field or the Shape field if the input point features contains z-values.
outRaster - the output interpolated surface raster.
Method Detail

getInPointFeatures

public java.lang.Object getInPointFeatures()
Returns the Input point features parameter of this tool . This parameter is the input point features containing the z-values to be interpolated into a surface raster. This is a required parameter.

Returns:
the Input point features

setInPointFeatures

public void setInPointFeatures(java.lang.Object inPointFeatures)
Sets the Input point features parameter of this tool . This parameter is the input point features containing the z-values to be interpolated into a surface raster. This is a required parameter.

Parameters:
inPointFeatures - the input point features containing the z-values to be interpolated into a surface raster.

getZField

public java.lang.Object getZField()
Returns the Z value field parameter of this tool . This parameter is the field that holds a height or magnitude value for each point. this can be a numeric field or the Shape field if the input point features contains z-values. This is a required parameter.

Returns:
the Z value field

setZField

public void setZField(java.lang.Object zField)
Sets the Z value field parameter of this tool . This parameter is the field that holds a height or magnitude value for each point. this can be a numeric field or the Shape field if the input point features contains z-values. This is a required parameter.

Parameters:
zField - the field that holds a height or magnitude value for each point. this can be a numeric field or the Shape field if the input point features contains z-values.

getOutRaster

public java.lang.Object getOutRaster()
Returns the Output raster parameter of this tool . This parameter is the output interpolated surface raster. This is a required parameter.

Returns:
the Output raster

setOutRaster

public void setOutRaster(java.lang.Object outRaster)
Sets the Output raster parameter of this tool . This parameter is the output interpolated surface raster. This is a required parameter.

Parameters:
outRaster - the output interpolated surface raster.

getCellSize

public java.lang.Object getCellSize()
Returns the Output cell size parameter of this tool . This parameter is the cell size at which the output raster will be created. this will be the value in the environment if it is explicitly set. Otherwise, it is the shorter of the width or the height of the extent of the input point features, in the input spatial reference, divided by 250. This is an optional parameter.

Returns:
the Output cell size

setCellSize

public void setCellSize(java.lang.Object cellSize)
Sets the Output cell size parameter of this tool . This parameter is the cell size at which the output raster will be created. this will be the value in the environment if it is explicitly set. Otherwise, it is the shorter of the width or the height of the extent of the input point features, in the input spatial reference, divided by 250. This is an optional parameter.

Parameters:
cellSize - the cell size at which the output raster will be created. this will be the value in the environment if it is explicitly set. Otherwise, it is the shorter of the width or the height of the extent of the input point features, in the input spatial reference, divided by 250.

getSplineType

public java.lang.String getSplineType()
Returns the Spline type parameter of this tool . This parameter is the type of spline to be used. This is an optional parameter.

Returns:
the Spline type

setSplineType

public void setSplineType(java.lang.String splineType)
Sets the Spline type parameter of this tool . This parameter is the type of spline to be used. This is an optional parameter.

Parameters:
splineType - the type of spline to be used.

getWeight

public double getWeight()
Returns the Weight parameter of this tool . This parameter is parameter influencing the character of the surface interpolation. when the REGULARIZED option is used, it defines the weight of the third derivatives of the surface in the curvature minimization expression. If the TENSION option is used, it defines the weight of tension. the default weight is 0.1. This is an optional parameter.

Returns:
the Weight

setWeight

public void setWeight(double weight)
Sets the Weight parameter of this tool . This parameter is parameter influencing the character of the surface interpolation. when the REGULARIZED option is used, it defines the weight of the third derivatives of the surface in the curvature minimization expression. If the TENSION option is used, it defines the weight of tension. the default weight is 0.1. This is an optional parameter.

Parameters:
weight - parameter influencing the character of the surface interpolation. when the REGULARIZED option is used, it defines the weight of the third derivatives of the surface in the curvature minimization expression. If the TENSION option is used, it defines the weight of tension. the default weight is 0.1.

getNumberPoints

public int getNumberPoints()
Returns the Number of points parameter of this tool . This parameter is the number of points per region used for local approximation. the default is 12. This is an optional parameter.

Returns:
the Number of points

setNumberPoints

public void setNumberPoints(int numberPoints)
Sets the Number of points parameter of this tool . This parameter is the number of points per region used for local approximation. the default is 12. This is an optional parameter.

Parameters:
numberPoints - the number of points per region used for local approximation. the default is 12.

getToolName

public java.lang.String getToolName()
Returns the name of this tool.

Returns:
the tool name

getToolboxName

public java.lang.String getToolboxName()
Returns the name of the tool box containing this tool.

Returns:
the tool box name

getToolboxAlias

public java.lang.String getToolboxAlias()
Returns the alias of the tool box containing this tool.

Returns:
the tool box alias