com.esri.arcgis.networkanalyst
Interface esriNAImpedanceTransformationType

All Superinterfaces:
Serializable

public interface esriNAImpedanceTransformationType
extends Serializable

Location-Allocation impedance transformation type

Remarks

The values within this enumeration are used to indicate the type of impedance transformation to be applied while solving a Location-Allocation problem instance. The ImpedanceTransformation property of the INALocationAllocationSolver is used in conjunction with this transformation type.

The esriNAImpedanceTransformationType enumeration has the following values:

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Field Summary
static int esriNAITTExponential
          Distance between two points will be scaled according to an exponent using a transformation parameter (e.g.
static int esriNAITTLinear
          Distance between two points will be scaled linearly using a transformation parameter.
static int esriNAITTPower
          Distance between two points will be scaled according to a power using a transformation parameter (e.g.
 

Field Detail

esriNAITTLinear

static final int esriNAITTLinear
Distance between two points will be scaled linearly using a transformation parameter. (e.g. distance(i,j) = parameter*distance(i,j)

See Also:
Constant Field Values

esriNAITTPower

static final int esriNAITTPower
Distance between two points will be scaled according to a power using a transformation parameter (e.g. distance(i,j) = distance(i,j)^parameter

See Also:
Constant Field Values

esriNAITTExponential

static final int esriNAITTExponential
Distance between two points will be scaled according to an exponent using a transformation parameter (e.g. distance(i,j) = e^(parameter*distance(i,j))

See Also:
Constant Field Values