|
|||||||||
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.linearreferencingtools.CalibrateRoutes
public class CalibrateRoutes
Recalculates route measures using points. The Calibrate Routes tool is contained in the Linear Referencing Tools tool box.
Field Summary |
---|
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool |
---|
vals |
Constructor Summary | |
---|---|
CalibrateRoutes()
Creates the Calibrate Routes tool with defaults. |
|
CalibrateRoutes(Object inRouteFeatures,
Object routeIdField,
Object inPointFeatures,
Object pointIdField,
Object measureField,
Object outFeatureClass)
Creates the Calibrate Routes tool with the required parameters. |
Method Summary | |
---|---|
String |
getBuildIndex()
Returns the Build index parameter of this tool . |
String |
getCalibrateMethod()
Returns the Measure Calculation Method parameter of this tool . |
String |
getExtrapolateAfter()
Returns the Extrapolate after calibration points parameter of this tool . |
String |
getExtrapolateBefore()
Returns the Extrapolate before calibration points parameter of this tool . |
String |
getIgnoreGaps()
Returns the Ignore spatial gaps parameter of this tool . |
Object |
getInPointFeatures()
Returns the Input Point Features parameter of this tool . |
Object |
getInRouteFeatures()
Returns the Input Route Features parameter of this tool . |
String |
getInterpolateBetween()
Returns the Interpolate between calibration points parameter of this tool . |
String |
getKeepAllRoutes()
Returns the Include all features in the output feature class parameter of this tool . |
Object |
getMeasureField()
Returns the Measure Field parameter of this tool . |
Object |
getOutFeatureClass()
Returns the Output Route Feature Class parameter of this tool . |
Object |
getPointIdField()
Returns the Point Identifier Field parameter of this tool . |
Object |
getRouteIdField()
Returns the Route Identifier Field parameter of this tool . |
Object |
getSearchRadius()
Returns the Search Radius 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 |
setBuildIndex(String buildIndex)
Sets the Build index parameter of this tool . |
void |
setCalibrateMethod(String calibrateMethod)
Sets the Measure Calculation Method parameter of this tool . |
void |
setExtrapolateAfter(String extrapolateAfter)
Sets the Extrapolate after calibration points parameter of this tool . |
void |
setExtrapolateBefore(String extrapolateBefore)
Sets the Extrapolate before calibration points parameter of this tool . |
void |
setIgnoreGaps(String ignoreGaps)
Sets the Ignore spatial gaps parameter of this tool . |
void |
setInPointFeatures(Object inPointFeatures)
Sets the Input Point Features parameter of this tool . |
void |
setInRouteFeatures(Object inRouteFeatures)
Sets the Input Route Features parameter of this tool . |
void |
setInterpolateBetween(String interpolateBetween)
Sets the Interpolate between calibration points parameter of this tool . |
void |
setKeepAllRoutes(String keepAllRoutes)
Sets the Include all features in the output feature class parameter of this tool . |
void |
setMeasureField(Object measureField)
Sets the Measure Field parameter of this tool . |
void |
setOutFeatureClass(Object outFeatureClass)
Sets the Output Route Feature Class parameter of this tool . |
void |
setPointIdField(Object pointIdField)
Sets the Point Identifier Field parameter of this tool . |
void |
setRouteIdField(Object routeIdField)
Sets the Route Identifier Field parameter of this tool . |
void |
setSearchRadius(Object searchRadius)
Sets the Search 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 |
---|
public CalibrateRoutes()
Initializes the array of tool parameters with the default values specified when the tool was created.
public CalibrateRoutes(Object inRouteFeatures, Object routeIdField, Object inPointFeatures, Object pointIdField, Object measureField, 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.
inRouteFeatures
- the route features to be calibrated.routeIdField
- the field containing values that uniquely identify each route. This field can be numeric or character.inPointFeatures
- the point features used to calibrate the routes.pointIdField
- the field that identifies the route on which each calibration point is located. The values in this field match those in the route identifier field. This field can be numeric or character.measureField
- the field containing the measure value for each calibration point. This field must be numeric.outFeatureClass
- the feature class to be created. It can be a shapefile or a geodatabase feature class.Method Detail |
---|
public Object getInRouteFeatures()
public void setInRouteFeatures(Object inRouteFeatures)
inRouteFeatures
- the route features to be calibrated.public Object getRouteIdField()
public void setRouteIdField(Object routeIdField)
routeIdField
- the field containing values that uniquely identify each route. This field can be numeric or character.public Object getInPointFeatures()
public void setInPointFeatures(Object inPointFeatures)
inPointFeatures
- the point features used to calibrate the routes.public Object getPointIdField()
public void setPointIdField(Object pointIdField)
pointIdField
- the field that identifies the route on which each calibration point is located. The values in this field match those in the route identifier field. This field can be numeric or character.public Object getMeasureField()
public void setMeasureField(Object measureField)
measureField
- the field containing the measure value for each calibration point. This field must be numeric.public Object getOutFeatureClass()
public void setOutFeatureClass(Object outFeatureClass)
outFeatureClass
- the feature class to be created. It can be a shapefile or a geodatabase feature class.public String getCalibrateMethod()
public void setCalibrateMethod(String calibrateMethod)
calibrateMethod
- specifies how route measures will be recalculated.public Object getSearchRadius()
public void setSearchRadius(Object searchRadius)
searchRadius
- limits how far a calibration point can be from a route by specifying the distance and its unit of measure. If the units of measure are Unknown, the same units as the coordinate system of the route feature class will be used.public String getInterpolateBetween()
public void setInterpolateBetween(String interpolateBetween)
interpolateBetween
- specifies whether measure values will be interpolated between the calibration points.public String getExtrapolateBefore()
public void setExtrapolateBefore(String extrapolateBefore)
extrapolateBefore
- specifies whether measure values will be extrapolated before the calibration points.public String getExtrapolateAfter()
public void setExtrapolateAfter(String extrapolateAfter)
extrapolateAfter
- specifies whether measure values will be extrapolated after the calibration points.public String getIgnoreGaps()
public void setIgnoreGaps(String ignoreGaps)
ignoreGaps
- specifies whether spatial gaps will be ignored when recalculating the measures on disjointed routes.public String getKeepAllRoutes()
public void setKeepAllRoutes(String keepAllRoutes)
keepAllRoutes
- specifies whether route features that do not have any calibration points will be excluded from the output feature class.public String getBuildIndex()
public void setBuildIndex(String buildIndex)
buildIndex
- specifies whether an attribute index will be created for the route identifier field that is written to the Output Route Feature Class.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 |