|
|||||||||
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.CreateRandomRaster
public class CreateRandomRaster
Creates a raster of random floating point values between 0.0 and 1.0 within the extent and cell size of the analysis window. The Create Random Raster tool is contained in the Spatial Analyst Tools tool box.
Field Summary |
---|
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool |
---|
vals |
Constructor Summary | |
---|---|
CreateRandomRaster()
Creates the Create Random Raster tool with defaults. |
|
CreateRandomRaster(Object outRaster)
Creates the Create Random Raster tool with the required parameters. |
Method Summary | |
---|---|
Object |
getCellSize()
Returns the Output cell size parameter of this tool . |
Object |
getExtent()
Returns the Output extent parameter of this tool . |
Object |
getOutRaster()
Returns the Output raster parameter of this tool . |
double |
getSeedValue()
Returns the Seed 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 |
setCellSize(Object cellSize)
Sets the Output cell size parameter of this tool . |
void |
setExtent(Object extent)
Sets the Output extent parameter of this tool . |
void |
setOutRaster(Object outRaster)
Sets the Output raster parameter of this tool . |
void |
setSeedValue(double seedValue)
Sets the Seed 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 CreateRandomRaster()
Initializes the array of tool parameters with the default values specified when the tool was created.
public CreateRandomRaster(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.
outRaster
- the output raster of randomly distributed values with a range of 0.0 to 1.0Method Detail |
---|
public Object getOutRaster()
public void setOutRaster(Object outRaster)
outRaster
- the output raster of randomly distributed values with a range of 0.0 to 1.0public double getSeedValue()
public void setSeedValue(double seedValue)
seedValue
- a value to be used to reseed the random number generator. this may be an integer or floating-point number. Rasters are not permitted as input. the random number generator is automatically seeded with the current value of the system clock (seconds since January 1, 1970). The range of permissible values for the seed value is -231+1 to 231 (or -2,147,483,647 to 2,147,483,648).public Object getCellSize()
public void setCellSize(Object cellSize)
cellSize
- the cell size for the output raster dataset. this is the value in the environment if specifically set. If not specifically set, it is the shorter of the width or height of the environment extent in the output spatial reference, divided by 250.public Object getExtent()
public void setExtent(Object extent)
extent
- the extent for the output raster dataset. the Extent is a Python class. in this tool it is in the form of: Extent(XMin, YMin, XMax, YMax) the coordinates are specified in the same map units as the in_raster. the extent will be the value in the environment if specifically set. If not specifically set, the default is 0, 0, 250, 250.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 |