com.esri.arcgis.geoprocessing.tools.datamanagementtools
Class SimplifyLine

java.lang.Object
  extended by com.esri.arcgis.geoprocessing.AbstractGPTool
      extended by com.esri.arcgis.geoprocessing.tools.datamanagementtools.SimplifyLine
All Implemented Interfaces:
GPTool

public class SimplifyLine
extends AbstractGPTool

Simplifies a line by removing small fluctuations or extraneous bends from it while preserving its essential shape. The Simplify Line tool is contained in the Data Management Tools tool box.
Learn more about how Simplify Line works

Illustration:

Usage tips:


Field Summary
 
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool
vals
 
Constructor Summary
SimplifyLine()
          Creates the Simplify Line tool with defaults.
SimplifyLine(java.lang.Object inFeatures, java.lang.Object outFeatureClass, java.lang.String algorithm, java.lang.Object tolerance)
          Creates the Simplify Line tool with the required parameters.
 
Method Summary
 java.lang.String getAlgorithm()
          Returns the Simplification Algorithm parameter of this tool .
 java.lang.String getCollapsedPointOption()
          Returns the Keep collapsed points parameter of this tool .
 java.lang.String getErrorCheckingOption()
          Returns the Check for topological errors parameter of this tool .
 java.lang.String getErrorResolvingOption()
          Returns the Resolve topological errors parameter of this tool .
 java.lang.Object getInFeatures()
          Returns the Input Features parameter of this tool .
 java.lang.Object getOutFeatureClass()
          Returns the Output Feature Class parameter of this tool .
 java.lang.Object getOutPointFeatureClass()
          Returns the Output Point Feature Class parameter of this tool (Read only).
 java.lang.Object getTolerance()
          Returns the Simplification Tolerance 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 setAlgorithm(java.lang.String algorithm)
          Sets the Simplification Algorithm parameter of this tool .
 void setCollapsedPointOption(java.lang.String collapsedPointOption)
          Sets the Keep collapsed points parameter of this tool .
 void setErrorCheckingOption(java.lang.String errorCheckingOption)
          Sets the Check for topological errors parameter of this tool .
 void setErrorResolvingOption(java.lang.String errorResolvingOption)
          Sets the Resolve topological errors parameter of this tool .
 void setInFeatures(java.lang.Object inFeatures)
          Sets the Input Features parameter of this tool .
 void setOutFeatureClass(java.lang.Object outFeatureClass)
          Sets the Output Feature Class parameter of this tool .
 void setTolerance(java.lang.Object tolerance)
          Sets the Simplification Tolerance 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

SimplifyLine

public SimplifyLine()
Creates the Simplify Line tool with defaults.

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


SimplifyLine

public SimplifyLine(java.lang.Object inFeatures,
                    java.lang.Object outFeatureClass,
                    java.lang.String algorithm,
                    java.lang.Object tolerance)
Creates the Simplify Line 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:
inFeatures - Feature Layer, the line features to be simplified.
outFeatureClass - Feature Class, the output line feature class to be created.
algorithm - String, specifies the line simplification algorithm.
  • POINT_REMOVE—Keeps the so-called critical points that depict the essential shape of a line and removes all other points. This is the default.
  • BEND_SIMPLIFY—Keeps the main shape of a line and removes extraneous bends.
tolerance - Linear Unit, the tolerance that determines the degree of simplification. A tolerance must be specified, and it must be greater than zero. You can specify a preferred unit; the default is the feature unit.
  • For POINT_REMOVE algorithm, the tolerance you specify is the maximum allowable offset.
  • For BEND_SIMPLIFY algorithm, the tolerance you specify is the length of the reference bend baseline.
Method Detail

getInFeatures

public java.lang.Object getInFeatures()
Returns the Input Features parameter of this tool . This parameter is Feature Layer, the line features to be simplified. This is a required parameter.

Returns:
the Input Features

setInFeatures

public void setInFeatures(java.lang.Object inFeatures)
Sets the Input Features parameter of this tool . This parameter is Feature Layer, the line features to be simplified. This is a required parameter.

Parameters:
inFeatures - Feature Layer, the line features to be simplified.

getOutFeatureClass

public java.lang.Object getOutFeatureClass()
Returns the Output Feature Class parameter of this tool . This parameter is Feature Class, the output line feature class to be created. This is a required parameter.

Returns:
the Output Feature Class

setOutFeatureClass

public void setOutFeatureClass(java.lang.Object outFeatureClass)
Sets the Output Feature Class parameter of this tool . This parameter is Feature Class, the output line feature class to be created. This is a required parameter.

Parameters:
outFeatureClass - Feature Class, the output line feature class to be created.

getAlgorithm

public java.lang.String getAlgorithm()
Returns the Simplification Algorithm parameter of this tool . This parameter is String, specifies the line simplification algorithm. This is a required parameter.

Returns:
the Simplification Algorithm

setAlgorithm

public void setAlgorithm(java.lang.String algorithm)
Sets the Simplification Algorithm parameter of this tool . This parameter is String, specifies the line simplification algorithm. This is a required parameter.

Parameters:
algorithm - String, specifies the line simplification algorithm.
  • POINT_REMOVE—Keeps the so-called critical points that depict the essential shape of a line and removes all other points. This is the default.
  • BEND_SIMPLIFY—Keeps the main shape of a line and removes extraneous bends.

getTolerance

public java.lang.Object getTolerance()
Returns the Simplification Tolerance parameter of this tool . This parameter is Linear Unit, the tolerance that determines the degree of simplification. A tolerance must be specified, and it must be greater than zero. You can specify a preferred unit; the default is the feature unit. This is a required parameter.

Returns:
the Simplification Tolerance

setTolerance

public void setTolerance(java.lang.Object tolerance)
Sets the Simplification Tolerance parameter of this tool . This parameter is Linear Unit, the tolerance that determines the degree of simplification. A tolerance must be specified, and it must be greater than zero. You can specify a preferred unit; the default is the feature unit. This is a required parameter.

Parameters:
tolerance - Linear Unit, the tolerance that determines the degree of simplification. A tolerance must be specified, and it must be greater than zero. You can specify a preferred unit; the default is the feature unit.
  • For POINT_REMOVE algorithm, the tolerance you specify is the maximum allowable offset.
  • For BEND_SIMPLIFY algorithm, the tolerance you specify is the length of the reference bend baseline.

getErrorResolvingOption

public java.lang.String getErrorResolvingOption()
Returns the Resolve topological errors parameter of this tool . This parameter is String, specifies how the topological errors (possibly introduced in the process, including line crossing, line overlapping, and collapsed zero-length lines) will be handled. This parameter will be in effect when the error_checking_option is CHECK (the default). This is an optional parameter.

Returns:
the Resolve topological errors

setErrorResolvingOption

public void setErrorResolvingOption(java.lang.String errorResolvingOption)
Sets the Resolve topological errors parameter of this tool . This parameter is String, specifies how the topological errors (possibly introduced in the process, including line crossing, line overlapping, and collapsed zero-length lines) will be handled. This parameter will be in effect when the error_checking_option is CHECK (the default). This is an optional parameter.

Parameters:
errorResolvingOption - String, specifies how the topological errors (possibly introduced in the process, including line crossing, line overlapping, and collapsed zero-length lines) will be handled. This parameter will be in effect when the error_checking_option is CHECK (the default).
  • FLAG_ERRORS—Specifies to flag topological errors, if any are found. This is the default.
  • RESOLVE_ERRORS—Specifies to resolve topological errors, if any are found.

getCollapsedPointOption

public java.lang.String getCollapsedPointOption()
Returns the Keep collapsed points parameter of this tool . This parameter is String, specifies whether to keep collapsed zero-length lines as points if any are found in the process. This option applies only when NO_CHECK is specified or when both FLAG_ERRORS and CHECK options are specified. This is an optional parameter.

Returns:
the Keep collapsed points

setCollapsedPointOption

public void setCollapsedPointOption(java.lang.String collapsedPointOption)
Sets the Keep collapsed points parameter of this tool . This parameter is String, specifies whether to keep collapsed zero-length lines as points if any are found in the process. This option applies only when NO_CHECK is specified or when both FLAG_ERRORS and CHECK options are specified. This is an optional parameter.

Parameters:
collapsedPointOption - String, specifies whether to keep collapsed zero-length lines as points if any are found in the process. This option applies only when NO_CHECK is specified or when both FLAG_ERRORS and CHECK options are specified.
  • KEEP_COLLAPSED_POINTS—Specifies to keep the collapsed zero-length lines as points. The endpoints of the collapsed lines will be stored in a point feature class at the output feature class location, taking the name of the output feature class plus a suffix _Pnt. This is the default.
  • NO_KEEP—Specifies not to keep the collapsed zero-length lines as points even if they are found in the process; therefore, the point feature class will be empty.

getErrorCheckingOption

public java.lang.String getErrorCheckingOption()
Returns the Check for topological errors parameter of this tool . This parameter is String, specifies how the topological errors (possibly introduced in the process, including line crossing, line overlapping, and collapsed zero-length lines) will be handled. This is an optional parameter.

Returns:
the Check for topological errors

setErrorCheckingOption

public void setErrorCheckingOption(java.lang.String errorCheckingOption)
Sets the Check for topological errors parameter of this tool . This parameter is String, specifies how the topological errors (possibly introduced in the process, including line crossing, line overlapping, and collapsed zero-length lines) will be handled. This is an optional parameter.

Parameters:
errorCheckingOption - String, specifies how the topological errors (possibly introduced in the process, including line crossing, line overlapping, and collapsed zero-length lines) will be handled.
  • CHECK—Specifies to check for topological errors and puts the error_resolving_option parameter in effect. This is the default.
  • NO_CHECK—Specifies not to check for topological errors and disables the error_resolving_option parameter.

getOutPointFeatureClass

public java.lang.Object getOutPointFeatureClass()
Returns the Output Point Feature Class parameter of this tool (Read only). This is an derived parameter.

Returns:
the Output Point Feature Class

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