|
Oracle® Spatial Java API Reference 11g Release 2 (11.2) E11829-02 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.spatial.network.lod.EuclideanCostFunction
public class EuclideanCostFunction
This class implements the A* heuristic cost function as the 2D euclidean distance between the current node and the goal node.
Constructor Summary | |
---|---|
EuclideanCostFunction(int userDataCategory, int xCoordUserDataIndex, int yCoordUserDataIndex, int geometryUserDataIndex) Creates a EuclideanCostFunction instance. |
Method Summary | |
---|---|
double |
getHeuristicCost(double x1, double y1, double x2, double y2) The implementataion of this abstract method should return the heuristic cost between point (x1, y1) and (x2, y2). |
double |
getHeuristicCost(HeavyPointOnNet currentPoint, HeavyPointOnNet goalPoint) Returns the heuristic cost between the current node and the goal node. |
double |
getHeuristicCost(HeavyPointOnNet currentPoint, LogicalNode goalNode) Returns the heuristic cost between the current node and the goal node. |
double |
getHeuristicCost(LogicalNode currentNode, HeavyPointOnNet goalPoint) Returns the heuristic cost between the current node and the goal node. |
double |
getHeuristicCost(LogicalNode currentNode, LogicalNode goalNode) Returns the heuristic cost between the current node and the goal node. |
int[] |
getUserDataCategories() |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface oracle.spatial.network.lod.HeuristicCostFunction |
---|
getHeuristicCost, getUserDataCategories |
Constructor Detail |
---|
public EuclideanCostFunction(int userDataCategory, int xCoordUserDataIndex, int yCoordUserDataIndex, int geometryUserDataIndex)
userDataCategory
- user data categoryxCoordUserDataIndex
- user data index registered for x coordinates of the nodes or points on linkyCoordUserDataIndex
- user data index registered for y coordinates of the nodes or points on linkgeometryUserDataIndex
- user date index registered for geometries of the nodes or points on linkMethod Detail |
---|
public double getHeuristicCost(double x1, double y1, double x2, double y2)
x1
- x coordinate of the current pointy1
- y coordinate of the current pointx2
- x coordinate of the goal pointy2
- y coordinate of the goal pointpublic double getHeuristicCost(HeavyPointOnNet currentPoint, HeavyPointOnNet goalPoint)
currentPoint
- current pointgoalPoint
- goal pointpublic double getHeuristicCost(LogicalNode currentNode, LogicalNode goalNode)
currentNode
- current nodegoalNode
- goal nodepublic double getHeuristicCost(LogicalNode currentNode, HeavyPointOnNet goalPoint)
currentNode
- current nodegoalPoint
- goal pointpublic double getHeuristicCost(HeavyPointOnNet currentPoint, LogicalNode goalNode)
currentPoint
- current pointgoalNode
- goal nodepublic int[] getUserDataCategories()
|
Oracle® Spatial Java API Reference 11g Release 2 (11.2) E11829-02 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |