com.supermap.analyst.networkanalyst
Class TransportationAnalystCheckResult
- java.lang.Object
-
- com.supermap.analyst.networkanalyst.TransportationAnalystCheckResult
-
public class TransportationAnalystCheckResult extends java.lang.Object
The TransportationAnalystCheckResult class provides the check result of the network dataset and turn table of the transportation analysis, including the arc error information, node error information and turn table error information.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.util.HashMap<java.lang.Integer,java.lang.Integer>
getArcErrorInfos()
Returns the edge error information.java.util.HashMap<java.lang.Integer,java.lang.Integer>
getNodeErrorInfos()
Returns the node error information.java.util.HashMap<java.lang.Integer,java.lang.Integer>
getTurnErrorInfos()
Returns the turn table error information.
-
-
-
Method Detail
-
getNodeErrorInfos
public java.util.HashMap<java.lang.Integer,java.lang.Integer> getNodeErrorInfos()
Returns the node error information. The key is the SMID of the error node, and the value is the error type. For more information about the error type, see thecheck
method of the TransportationAnalyst class.- Returns:
- The node error information
-
getArcErrorInfos
public java.util.HashMap<java.lang.Integer,java.lang.Integer> getArcErrorInfos()
Returns the edge error information. The key is the SMID of the error edge, and the value is the error type. For more information about the error type, see the method of the TransportationAnalyst class.- Returns:
- The edge error information
-
getTurnErrorInfos
public java.util.HashMap<java.lang.Integer,java.lang.Integer> getTurnErrorInfos()
Returns the turn table error information. The key is the SMID of the error turn, and the value is the error type. For more information about the error type, see the method of the TransportationAnalyst class.- Returns:
- The turn table error information.
-
-