|
|||||||||
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.Aggregate
public class Aggregate
Generates a reduced-resolution version of a raster. Each output cell contains the Sum, Minimum, Maximum, Mean, or Median of the input cells that are encompassed by the extent of that cell. The Aggregate tool is contained in the Spatial Analyst Tools tool box.
Field Summary |
---|
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool |
---|
vals |
Constructor Summary | |
---|---|
Aggregate()
Creates the Aggregate tool with defaults. |
|
Aggregate(Object inRaster,
Object outRaster,
int cellFactor)
Creates the Aggregate tool with the required parameters. |
Method Summary | |
---|---|
String |
getAggregationType()
Returns the Aggregation technique parameter of this tool . |
int |
getCellFactor()
Returns the Cell factor parameter of this tool . |
String |
getExtentHandling()
Returns the Expand extent if needed parameter of this tool . |
String |
getIgnoreNodata()
Returns the Ignore NoData in calculations parameter of this tool . |
Object |
getInRaster()
Returns the Input raster parameter of this tool . |
Object |
getOutRaster()
Returns the Output raster 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 |
setAggregationType(String aggregationType)
Sets the Aggregation technique parameter of this tool . |
void |
setCellFactor(int cellFactor)
Sets the Cell factor parameter of this tool . |
void |
setExtentHandling(String extentHandling)
Sets the Expand extent if needed parameter of this tool . |
void |
setIgnoreNodata(String ignoreNodata)
Sets the Ignore NoData in calculations parameter of this tool . |
void |
setInRaster(Object inRaster)
Sets the Input raster parameter of this tool . |
void |
setOutRaster(Object outRaster)
Sets the Output raster 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 Aggregate()
Initializes the array of tool parameters with the default values specified when the tool was created.
public Aggregate(Object inRaster, Object outRaster, int cellFactor)
Initializes the array of tool parameters with the values as specified for the required parameters and with the default values for the other parameters.
inRaster
- the input raster to aggregate. it can be of integer or floating point type.outRaster
- the output aggregated raster. it is a reduced-resolution version of the input raster.cellFactor
- the factor by which to multiply the cell size of the input raster to obtain the desired resolution for the output raster. for example, a cell factor value of three would result in an output cell size three times larger than that of the input raster. the value must be an integer greater than 1.Method Detail |
---|
public Object getInRaster()
public void setInRaster(Object inRaster)
inRaster
- the input raster to aggregate. it can be of integer or floating point type.public Object getOutRaster()
public void setOutRaster(Object outRaster)
outRaster
- the output aggregated raster. it is a reduced-resolution version of the input raster.public int getCellFactor()
public void setCellFactor(int cellFactor)
cellFactor
- the factor by which to multiply the cell size of the input raster to obtain the desired resolution for the output raster. for example, a cell factor value of three would result in an output cell size three times larger than that of the input raster. the value must be an integer greater than 1.public String getAggregationType()
public void setAggregationType(String aggregationType)
aggregationType
- establishes how the value for each output cell will be determined. the values of the input cells encompassed by the coarser output cell are aggregated by one of the following statistics:public String getExtentHandling()
public void setExtentHandling(String extentHandling)
extentHandling
- defines how to handle the boundaries of the input raster when its rows or columns are not a multiple of the cell factor. if the number of rows and columns in the input raster is a multiple of the cell_factor, these keywords are not used.public String getIgnoreNodata()
public void setIgnoreNodata(String ignoreNodata)
ignoreNodata
- denotes whether NoData values are ignored by the aggregation calculation.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 |