|
|||||||||
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.geostatisticalanalysttools.GASemivariogramSensitivity
public class GASemivariogramSensitivity
Performs a sensitivity analysis with varying Nugget, Partial Sill, and Range values. The Semivariogram Sensitivity tool is contained in the Geostatistical Analyst Tools tool box.
Field Summary |
---|
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool |
---|
vals |
Constructor Summary | |
---|---|
GASemivariogramSensitivity()
Creates the Semivariogram Sensitivity tool with defaults. |
|
GASemivariogramSensitivity(Object inGaModelSource,
Object inDatasets,
Object inLocations,
Object outTable)
Creates the Semivariogram Sensitivity tool with the required parameters. |
Method Summary | |
---|---|
Object |
getInDatasets()
Returns the Input dataset(s) parameter of this tool . |
Object |
getInGaModelSource()
Returns the Geostatistical model source parameter of this tool . |
Object |
getInLocations()
Returns the Point observation locations parameter of this tool . |
int |
getMinrangeCalcTimes()
Returns the Number of calculations for Minor Range parameter of this tool . |
double |
getMinrangeSpanPercents()
Returns the Minor Range span (% of model value) parameter of this tool . |
int |
getNuggetCalcTimes()
Returns the Number of calculations for Nugget parameter of this tool . |
double |
getNuggetSpanPercents()
Returns the Nugget span (% of model value) parameter of this tool . |
Object |
getOutTable()
Returns the Output table parameter of this tool . |
int |
getPartialsillCalcTimes()
Returns the Number of calculations for Partial Sill parameter of this tool . |
double |
getPartialsillSpanPercents()
Returns the Partial Sill span (% of model value) parameter of this tool . |
int |
getRangeCalcTimes()
Returns the Number of calculations for Major Range parameter of this tool . |
double |
getRangeSpanPercents()
Returns the Major Range span (% of model value) 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 |
setInDatasets(Object inDatasets)
Sets the Input dataset(s) parameter of this tool . |
void |
setInGaModelSource(Object inGaModelSource)
Sets the Geostatistical model source parameter of this tool . |
void |
setInLocations(Object inLocations)
Sets the Point observation locations parameter of this tool . |
void |
setMinrangeCalcTimes(int minrangeCalcTimes)
Sets the Number of calculations for Minor Range parameter of this tool . |
void |
setMinrangeSpanPercents(double minrangeSpanPercents)
Sets the Minor Range span (% of model value) parameter of this tool . |
void |
setNuggetCalcTimes(int nuggetCalcTimes)
Sets the Number of calculations for Nugget parameter of this tool . |
void |
setNuggetSpanPercents(double nuggetSpanPercents)
Sets the Nugget span (% of model value) parameter of this tool . |
void |
setOutTable(Object outTable)
Sets the Output table parameter of this tool . |
void |
setPartialsillCalcTimes(int partialsillCalcTimes)
Sets the Number of calculations for Partial Sill parameter of this tool . |
void |
setPartialsillSpanPercents(double partialsillSpanPercents)
Sets the Partial Sill span (% of model value) parameter of this tool . |
void |
setRangeCalcTimes(int rangeCalcTimes)
Sets the Number of calculations for Major Range parameter of this tool . |
void |
setRangeSpanPercents(double rangeSpanPercents)
Sets the Major Range span (% of model value) 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 GASemivariogramSensitivity()
Initializes the array of tool parameters with the default values specified when the tool was created.
public GASemivariogramSensitivity(Object inGaModelSource, Object inDatasets, Object inLocations, Object outTable)
Initializes the array of tool parameters with the values as specified for the required parameters and with the default values for the other parameters.
inGaModelSource
- the geostatistical model source to be analyzed.inDatasets
- input dataset(s) displays two pieces:inLocations
- points locations where the sensitivity analysis is performed.outTable
- table storing the sensitivity results.Method Detail |
---|
public Object getInGaModelSource()
public void setInGaModelSource(Object inGaModelSource)
inGaModelSource
- the geostatistical model source to be analyzed.public Object getInDatasets()
public void setInDatasets(Object inDatasets)
inDatasets
- input dataset(s) displays two pieces:public Object getInLocations()
public void setInLocations(Object inLocations)
inLocations
- points locations where the sensitivity analysis is performed.public double getNuggetSpanPercents()
public void setNuggetSpanPercents(double nuggetSpanPercents)
nuggetSpanPercents
- the percentage subtracted and added to the Nugget parameter to create a range for subsequent random Nugget parameter selection.public int getNuggetCalcTimes()
public void setNuggetCalcTimes(int nuggetCalcTimes)
nuggetCalcTimes
- number of random Nugget values drawn from the Nugget span.public double getPartialsillSpanPercents()
public void setPartialsillSpanPercents(double partialsillSpanPercents)
partialsillSpanPercents
- percentage subtracted from and added to the Partial Sill parameter to create a range for random Partial Sill selection.public int getPartialsillCalcTimes()
public void setPartialsillCalcTimes(int partialsillCalcTimes)
partialsillCalcTimes
- number of random Partial Sill values drawn from the Partial Sill span.public double getRangeSpanPercents()
public void setRangeSpanPercents(double rangeSpanPercents)
rangeSpanPercents
- percentage subtracted and added to the Major Range parameter to create a range for a random Major Range selection.public int getRangeCalcTimes()
public void setRangeCalcTimes(int rangeCalcTimes)
rangeCalcTimes
- number of random Major Range values drawn from the Major Range span.public double getMinrangeSpanPercents()
public void setMinrangeSpanPercents(double minrangeSpanPercents)
minrangeSpanPercents
- percentage subtracted and added to the Minor Range parameter to create a range for random Minor Range selection.public int getMinrangeCalcTimes()
public void setMinrangeCalcTimes(int minrangeCalcTimes)
minrangeCalcTimes
- number of random Minor Range values drawn from the Minor Range span. If Anisotropy has been set in public Object getOutTable()
public void setOutTable(Object outTable)
outTable
- table storing the sensitivity results.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 |