|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.geoprocessing.AbstractGPTool com.esri.arcgis.geoprocessing.tools.spatialanalysttools.Spline
public class Spline
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.
Field Summary |
---|
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool |
---|
vals |
Constructor Summary | |
---|---|
Spline()
Creates the Spline tool with defaults. |
|
Spline(Object inPointFeatures,
Object zField,
Object outRaster)
Creates the Spline tool with the required parameters. |
Method Summary | |
---|---|
Object |
getCellSize()
Returns the Output cell size parameter of this tool . |
Object |
getInPointFeatures()
Returns the Input point features parameter of this tool . |
int |
getNumberPoints()
Returns the Number of points parameter of this tool . |
Object |
getOutRaster()
Returns the Output raster parameter of this tool . |
String |
getSplineType()
Returns the Spline type parameter of this tool . |
String |
getToolboxAlias()
Returns the alias of the tool box containing this tool. |
String |
getToolboxName()
Returns the name of the tool box containing this tool. |
String |
getToolName()
Returns the name of this tool. |
double |
getWeight()
Returns the Weight parameter of this tool . |
Object |
getZField()
Returns the Z value field parameter of this tool . |
void |
setCellSize(Object cellSize)
Sets the Output cell size parameter of this tool . |
void |
setInPointFeatures(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(Object outRaster)
Sets the Output raster parameter of this tool . |
void |
setSplineType(String splineType)
Sets the Spline type parameter of this tool . |
void |
setWeight(double weight)
Sets the Weight parameter of this tool . |
void |
setZField(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 |
---|
public Spline()
Initializes the array of tool parameters with the default values specified when the tool was created.
public Spline(Object inPointFeatures, Object zField, Object outRaster)
Initializes the array of tool parameters with the values as specified for the required parameters and with the default values for the other 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 |
---|
public Object getInPointFeatures()
public void setInPointFeatures(Object inPointFeatures)
inPointFeatures
- the input point features containing the z-values to be interpolated into a surface raster.public Object getZField()
public void setZField(Object zField)
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.public Object getOutRaster()
public void setOutRaster(Object outRaster)
outRaster
- the output interpolated surface raster.public Object getCellSize()
public void setCellSize(Object cellSize)
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.public String getSplineType()
public void setSplineType(String splineType)
splineType
- the type of spline to be used.public double getWeight()
public void setWeight(double weight)
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.public int getNumberPoints()
public void setNumberPoints(int numberPoints)
numberPoints
- the number of points per region used for local approximation. the default is 12.public String getToolName()
public String getToolboxName()
public String getToolboxAlias()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |