com.esri.arcgis.geoprocessing.tools.spatialanalysttools
Class ExtractByCircle

java.lang.Object
  extended bycom.esri.arcgis.geoprocessing.AbstractGPTool
      extended bycom.esri.arcgis.geoprocessing.tools.spatialanalysttools.ExtractByCircle
All Implemented Interfaces:
GPTool

public class ExtractByCircle
extends AbstractGPTool

Extracts the cells of a raster based on a circle. The Extract by Circle tool is contained in the Spatial Analyst Tools tool box.

Software restrictions: none

Usage tips:


Field Summary
 
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool
vals
 
Constructor Summary
ExtractByCircle()
          Creates the Extract by Circle tool with defaults.
ExtractByCircle(java.lang.Object inRaster, java.lang.Object centerPoint, double radius, java.lang.Object outRaster)
          Creates the Extract by Circle tool with the required parameters.
 
Method Summary
 java.lang.Object getCenterPoint()
          Returns the Center point parameter of this tool .
 java.lang.String getExtractionArea()
          Returns the Extraction area parameter of this tool .
 java.lang.Object getInRaster()
          Returns the Input raster parameter of this tool .
 java.lang.Object getOutRaster()
          Returns the Output raster parameter of this tool .
 double getRadius()
          Returns the Radius parameter of this tool .
 java.lang.String getToolboxAlias()
          Returns the alias of the tool box containing this tool.
 java.lang.String getToolboxName()
          Returns the name of the tool box containing this tool.
 java.lang.String getToolName()
          Returns the name of this tool.
 void setCenterPoint(java.lang.Object centerPoint)
          Sets the Center point parameter of this tool .
 void setExtractionArea(java.lang.String extractionArea)
          Sets the Extraction area parameter of this tool .
 void setInRaster(java.lang.Object inRaster)
          Sets the Input raster parameter of this tool .
 void setOutRaster(java.lang.Object outRaster)
          Sets the Output raster parameter of this tool .
 void setRadius(double radius)
          Sets the Radius 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

ExtractByCircle

public ExtractByCircle()
Creates the Extract by Circle tool with defaults.

Initializes the array of tool parameters with the default values specified when the tool was created.


ExtractByCircle

public ExtractByCircle(java.lang.Object inRaster,
                       java.lang.Object centerPoint,
                       double radius,
                       java.lang.Object outRaster)
Creates the Extract by Circle tool with the required parameters.

Initializes the array of tool parameters with the values as specified for the required parameters and with the default values for the other parameters.

Parameters:
inRaster - Composite Geodataset, input raster.
centerPoint - Point, the coordinates are specified in the same map units as the in_raster.
radius - Double, the radius is specified in map units and is in the same units as the in_raster.
outRaster - Raster Dataset, the raster to be created.
Method Detail

getInRaster

public java.lang.Object getInRaster()
Returns the Input raster parameter of this tool . This parameter is Composite Geodataset, input raster. This is a required parameter.

Returns:
the Input raster

setInRaster

public void setInRaster(java.lang.Object inRaster)
Sets the Input raster parameter of this tool . This parameter is Composite Geodataset, input raster. This is a required parameter.

Parameters:
inRaster - Composite Geodataset, input raster.

getCenterPoint

public java.lang.Object getCenterPoint()
Returns the Center point parameter of this tool . This parameter is Point, the coordinates are specified in the same map units as the in_raster. This is a required parameter.

Returns:
the Center point

setCenterPoint

public void setCenterPoint(java.lang.Object centerPoint)
Sets the Center point parameter of this tool . This parameter is Point, the coordinates are specified in the same map units as the in_raster. This is a required parameter.

Parameters:
centerPoint - Point, the coordinates are specified in the same map units as the in_raster.

getRadius

public double getRadius()
Returns the Radius parameter of this tool . This parameter is Double, the radius is specified in map units and is in the same units as the in_raster. This is a required parameter.

Returns:
the Radius

setRadius

public void setRadius(double radius)
Sets the Radius parameter of this tool . This parameter is Double, the radius is specified in map units and is in the same units as the in_raster. This is a required parameter.

Parameters:
radius - Double, the radius is specified in map units and is in the same units as the in_raster.

getOutRaster

public java.lang.Object getOutRaster()
Returns the Output raster parameter of this tool . This parameter is Raster Dataset, the raster to be created. This is a required parameter.

Returns:
the Output raster

setOutRaster

public void setOutRaster(java.lang.Object outRaster)
Sets the Output raster parameter of this tool . This parameter is Raster Dataset, the raster to be created. This is a required parameter.

Parameters:
outRaster - Raster Dataset, the raster to be created.

getExtractionArea

public java.lang.String getExtractionArea()
Returns the Extraction area parameter of this tool . This parameter is String, identifies whether to extract cells inside or outside the input circle. This is an optional parameter.

Returns:
the Extraction area

setExtractionArea

public void setExtractionArea(java.lang.String extractionArea)
Sets the Extraction area parameter of this tool . This parameter is String, identifies whether to extract cells inside or outside the input circle. This is an optional parameter.

Parameters:
extractionArea - String, identifies whether to extract cells inside or outside the input circle.
  • INSIDE — A keyword specifying that the cells inside the input circle should be selected and written to the output raster. All cells outside the circle will receive NoData on the output raster.
  • OUTSIDE — A keyword specifying that the cells outside the input circle should be selected and written to the output raster. All cells inside the circle will receive NoData on the output raster.

getToolName

public java.lang.String getToolName()
Returns the name of this tool.

Returns:
the tool name

getToolboxName

public java.lang.String getToolboxName()
Returns the name of the tool box containing this tool.

Returns:
the tool box name

getToolboxAlias

public java.lang.String getToolboxAlias()
Returns the alias of the tool box containing this tool.

Returns:
the tool box alias