|
|||||||||
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.spatialstatisticstools.CalculateDistanceBand
public class CalculateDistanceBand
Returns the minimum, the maximum, and the average distance to the specified Nth nearest neighbor (N is an input parameter) for a set of features. Results are accessible from the Results window. The Calculate Distance Band from Neighbor Count tool is contained in the Spatial Statistics Tools tool box.
Field Summary |
---|
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool |
---|
vals |
Constructor Summary | |
---|---|
CalculateDistanceBand()
Creates the Calculate Distance Band from Neighbor Count tool with defaults. |
|
CalculateDistanceBand(Object inputFeatures,
int neighbors,
String distanceMethod)
Creates the Calculate Distance Band from Neighbor Count tool with the required parameters. |
Method Summary | |
---|---|
double |
getAverageDistance()
Returns the Average Distance parameter of this tool (Read only). |
String |
getDistanceMethod()
Returns the Distance Method parameter of this tool . |
Object |
getInputFeatures()
Returns the Input Features parameter of this tool . |
double |
getMaximumDistance()
Returns the Maximum Distance parameter of this tool (Read only). |
double |
getMinimumDistance()
Returns the Minimum Distance parameter of this tool (Read only). |
int |
getNeighbors()
Returns the Neighbors 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. |
void |
setDistanceMethod(String distanceMethod)
Sets the Distance Method parameter of this tool . |
void |
setInputFeatures(Object inputFeatures)
Sets the Input Features parameter of this tool . |
void |
setNeighbors(int neighbors)
Sets the Neighbors 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 CalculateDistanceBand()
Initializes the array of tool parameters with the default values specified when the tool was created.
public CalculateDistanceBand(Object inputFeatures, int neighbors, String distanceMethod)
Initializes the array of tool parameters with the values as specified for the required parameters and with the default values for the other parameters.
inputFeatures
- the feature class or layer used to calculate distance statistics.neighbors
- the number of neighbors (N) to consider for each feature. This number should be any integer between one and the total number of features in the feature class. A list of distances between each feature and its Nth neighbor is compiled, and the maximum, minimum, and average distances are output to the Results window.distanceMethod
- specifies how distances are calculated from each feature to neighboring features.Method Detail |
---|
public Object getInputFeatures()
public void setInputFeatures(Object inputFeatures)
inputFeatures
- the feature class or layer used to calculate distance statistics.public int getNeighbors()
public void setNeighbors(int neighbors)
neighbors
- the number of neighbors (N) to consider for each feature. This number should be any integer between one and the total number of features in the feature class. A list of distances between each feature and its Nth neighbor is compiled, and the maximum, minimum, and average distances are output to the Results window.public String getDistanceMethod()
public void setDistanceMethod(String distanceMethod)
distanceMethod
- specifies how distances are calculated from each feature to neighboring features.public double getMinimumDistance()
public double getAverageDistance()
public double getMaximumDistance()
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 |