|
|||||||||
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.datamanagementtools.Eliminate
public class Eliminate
Eliminates polygons by merging them with neighboring polygons that have the largest area or the longest shared border. Eliminate is often used to remove small sliver polygons that are the result of overlay operations, such as Intersect or Union. The Eliminate tool is contained in the Data Management Tools tool box.
Field Summary |
---|
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool |
---|
vals |
Constructor Summary | |
---|---|
Eliminate()
Creates the Eliminate tool with defaults. |
|
Eliminate(Object inFeatures,
Object outFeatureClass)
Creates the Eliminate tool with the required parameters. |
Method Summary | |
---|---|
Object |
getExFeatures()
Returns the Exclusion Layer parameter of this tool . |
Object |
getExWhereClause()
Returns the Exclusion Expression parameter of this tool . |
Object |
getInFeatures()
Returns the Input Layer parameter of this tool . |
Object |
getOutFeatureClass()
Returns the Output Feature Class parameter of this tool . |
String |
getSelection()
Returns the Eliminating polygon by border 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 |
setExFeatures(Object exFeatures)
Sets the Exclusion Layer parameter of this tool . |
void |
setExWhereClause(Object exWhereClause)
Sets the Exclusion Expression parameter of this tool . |
void |
setInFeatures(Object inFeatures)
Sets the Input Layer parameter of this tool . |
void |
setOutFeatureClass(Object outFeatureClass)
Sets the Output Feature Class parameter of this tool . |
void |
setSelection(String selection)
Sets the Eliminating polygon by border 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 Eliminate()
Initializes the array of tool parameters with the default values specified when the tool was created.
public Eliminate(Object inFeatures, Object outFeatureClass)
Initializes the array of tool parameters with the values as specified for the required parameters and with the default values for the other parameters.
inFeatures
- the layer whose polygons will be merged into neighboring polygons.outFeatureClass
- the feature class to be created.Method Detail |
---|
public Object getInFeatures()
public void setInFeatures(Object inFeatures)
inFeatures
- the layer whose polygons will be merged into neighboring polygons.public Object getOutFeatureClass()
public void setOutFeatureClass(Object outFeatureClass)
outFeatureClass
- the feature class to be created.public String getSelection()
public void setSelection(String selection)
selection
- these options specify which method will be used for eliminating features.public Object getExWhereClause()
public void setExWhereClause(Object exWhereClause)
exWhereClause
- an expression used to identify input features that should not be eliminated. the syntax for the expression differs slightly depending on the data source. For example, if you're querying file or ArcSDE geodatabases, shapefiles, or coverages, enclose field names in double quotes: "MY_FIELD" if you're querying personal geodatabases, enclose fields in square brackets: [MY_FIELD] in the Python Window enclose the {where_clause} in parentheses to ensure the spaces (which are delimiters between parameters) are correctly interpreted. for more information on SQL syntax and how it differs between data sources, see SQL Reference.public Object getExFeatures()
public void setExFeatures(Object exFeatures)
exFeatures
- an input polyline or polygon feature class or layer that defines polygon boundaries, or portions thereof, that should not be eliminated.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 |