WO1997024705A1 - Cost zones - Google Patents

Cost zones Download PDF

Info

Publication number
WO1997024705A1
WO1997024705A1 PCT/US1996/020427 US9620427W WO9724705A1 WO 1997024705 A1 WO1997024705 A1 WO 1997024705A1 US 9620427 W US9620427 W US 9620427W WO 9724705 A1 WO9724705 A1 WO 9724705A1
Authority
WO
WIPO (PCT)
Prior art keywords
cost
node
triangle
end point
nodes
Prior art date
Application number
PCT/US1996/020427
Other languages
French (fr)
Inventor
Richard Frederick Poppen
Original Assignee
Etak, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Etak, Inc. filed Critical Etak, Inc.
Priority to EP96944934A priority Critical patent/EP0870290B1/en
Priority to AT96944934T priority patent/ATE228696T1/en
Priority to AU13415/97A priority patent/AU1341597A/en
Priority to JP52448497A priority patent/JP3703100B2/en
Priority to DE69625084T priority patent/DE69625084T2/en
Priority to CA002240359A priority patent/CA2240359C/en
Publication of WO1997024705A1 publication Critical patent/WO1997024705A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q30/00Commerce
    • G06Q30/02Marketing; Price estimation or determination; Fundraising
    • G06Q30/0283Price estimation or determination
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q30/00Commerce
    • G06Q30/02Marketing; Price estimation or determination; Fundraising
    • G06Q30/0283Price estimation or determination
    • G06Q30/0284Time or distance, e.g. usage of parking meters or taximeters
    • GPHYSICS
    • G07CHECKING-DEVICES
    • G07BTICKET-ISSUING APPARATUS; FARE-REGISTERING APPARATUS; FRANKING APPARATUS
    • G07B15/00Arrangements or apparatus for collecting fares, tolls or entrance fees at one or more control points
    • G07B15/06Arrangements for road pricing or congestion charging of vehicles or vehicle users, e.g. automatic toll systems

Definitions

  • the present invention is directed to a system for creating and using cost zones based on a digital map.
  • the computer has revolutionized the idea of a map from an image statically depicting the location of physical, political, or other features to the digital map, which consists of geographically referenced digital data quantifying a physical, social or economic system.
  • the range of information included in digital maps is unlimited; for example, digital maps could include distances between elements, driving time, lot numbers, tax information, tourist information, etc. Additionally, storing a map as a file on a computer allows for unlimited software applications to manipulate that data.
  • One use that has involved digital maps includes path finding.
  • One application for digital maps that has not been used effectively is the ability to determine where one can travel within a certain cost limit.
  • Examples of cost include time, distance, tolls paid, ease of turning, quality of scenery, etc.
  • a traveler may wish to know how far that traveler can drive without paying more than $10 in toll, what restaurants are within a 10 minute drive, or what gas stations are within a one mile walk.
  • the traveler desires to know where they can travel to within a given cost.
  • the area that they can travel to within that cost is called a "cost zone. "
  • that traveler would look at a traditional map and use the map's key to guess how they could travel if the cost under consideration was distance.
  • a digital map can store some or all of the desired costs for the elements in an map. If a user desires to travel to a location, a computer can determine the costs to travel to that location. Such a system is inefficient. If the traveler wants to know all gas stations within one mile, the traveler would have to search a map to find all the gas stations, then run a path finding application once for each such gas station to determine whether that gas station is within one mile.
  • One attempt at creating cost zones includes using a map already divided into regions unrelated to costs (e.g. zip codes). A point is designated in each region that is used to approximate the entire region. The cost of travel to each of the designated points is determined. Based on those costs, entire regions are included or excluded in the cost zone. Cost zones created by this solution have not proven to be sufficiently accurate.
  • costs e.g. zip codes
  • the present invention is directed to overcome the disadvantages of the prior art.
  • the present invention roughly described, provides for a system that creates a cost zone about an origin on a digital map.
  • the system identifies the set of nodes on the map that are within a predetermined factor of the desired cost of the origin.
  • the system triangulates the set of nodes to create a set of triangles and interpolates along a subset of the sides of the triangles to estimate the locations that have the desired costs. These locations are on the boundary of the cost zone. All such boundary points can be connected to create a closed loop around an area representing the cost zone.
  • a computer need only know the location of the cost zone's boundary and the location of the desired destination to determine whether that destination is within the cost zone.
  • the step of identifying the set of nodes includes using a priority queue, and initially considering the origin as the head node.
  • the head node is defined as the node at the head of the priority queue.
  • a cost of traveling from the origin, through the head node and to the neighbor node is determined.
  • a first node is a neighbor node of a second node if the first node can be traveled to from said second node by traversing one link.
  • Each neighbor node and its cost are added to the queue if it is not already stored in the queue with a lower travel cost.
  • the head node is then removed from the queue and the process is repeated until a new head node has a cost that is not within a predetermined factor of the desired cost.
  • the phrase "within a predetermined factor of the desired cost" can include a cost less than a predetermined factor of the desired cost (preferred) , or less than or equal to the predetermined factor of the desired cost.
  • One example of such a predetermined factor is 1.5. Thus, if it is desired to determine how far one can drive in 8 minutes, the above process would terminate when a new head node has a cost of 12 minutes (1.5 x 8).
  • the step of triangulating includes creating the Delaunay triangles.
  • One method of creating Delaunay triangles includes adding three nodes to a data structure, creating a triangle out of these three nodes, adding an additional node to the data structure, connecting all three vertices of a surrounding triangle to the additional node if the additional node is within the surrounding triangle, connecting the additional node to all nodes in the data structure that the node can be connected to by a straight line without intersecting the side of any triangle if the additional node is not within any triangle, connecting the additional node to a vertex opposite a particular side of a particular triangle if the additional node is on the particular side, and determining whether at least a subset of triangles in the data structure are all Delaunay triangles.
  • the step of interpolating includes interpolating along a first side of a first triangle, a second side of a second triangle and a third side of a third triangle.
  • the first side includes one end point having a cost less than the desired cost and a second end point having a cost greater than the desired cost.
  • the second side includes one end point having a cost less than the desired cost and a second end point having a cost greater than the desired cost.
  • the second triangle shares the first side with the first triangle.
  • the third side includes one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost.
  • the third triangle shares said second side with said second triangle.
  • Figure 1 is a block diagram of one exemplar hardware architecture that can be used to practice the present invention.
  • Figure 2 A is an example of a directed graph representing a part of a digital map.
  • Figure 2B is second example of a directed graph representing a part of a digital map.
  • Figure 3 is a flow chart describing the method of creating a cost zone.
  • Figure 4 is an exemplar graph representing a portion of an digital map.
  • Figure 5 is a flow chart describing the step of identifying a set of nodes on a map that are within a predetermined factor of a desired cost of the origin.
  • Figure 6 depicts a portion of the graph of Figure 4 showing only those nodes that are within a predetermined factor of the desired cost of the origin.
  • Figure 7 is a flow chart describing the step of triangulating.
  • Figures 7B-7E depict examples of triangles used to explain the steps depicted in Figure 7A.
  • Figure 8 depicts the partial graph of Figure 6 after the step of triangulating.
  • Figure 9 is a flow chart describing the step of interpolating.
  • Figure 10 shows the partial graph of Figure 8 after the step of interpolating.
  • FIG. 1 is a symbolic block diagram of one exemplar hardware architecture that can be used to practice the present invention.
  • the hardware comprises a CPU 12, which may be an Intel 80486 compatible CPU or an Intel Pentium processor, for example.
  • CPU 12 has address, data and control lines which are connected to CPU bus 14.
  • CPU bus 14 is also connected to a cache memory 16 and to DRAM memory 18, both of which are controlled by system control logic 20.
  • System control logic 20 is connected to CPU bus 14 and also to control, address and data lines of an ISA bus 22.
  • ROM 24 Connected to ISA bus 22 is ROM 24, which contains the system BIOS, and a disk controller 26 for floppy and hard-disk drives 28.
  • the system of Figure 1 illustrates one platform which can run software according to the present invention. Numerous other platforms can also suffice, such as Macintosh-based platforms available from Apple Computer, Inc. , platforms with different local bus configurations, networked platforms, multi-processor platforms, and so on.
  • a digital map is stored in one or more computer files which include the data necessary to construct a map.
  • This data could include longitude data, latitude data, addresses, distances, turning restrictions, driving times, highway exit numbers, descriptions of commercial uses of properties, etc.
  • the map database is too large to be effectively used with most software applications.
  • smaller databases are created which contain only the data needed for the specific use at hand.
  • One of these smaller databases is a graph.
  • a graph is a collection of nodes and edges. Nodes are objects that have properties and indicate decision points on the graph. An edge is a connection between two nodes.
  • a path from node A to node B in a graph is described as a list of nodes such that there is an edge from each node in the list to the next.
  • a directed graph is a graph where each edge has a single direction associated with it. There may be two edges between a given pair of nodes, one in each direction. In a directed graph, edges are referred to as links.
  • a weighted graph is a graph in which each link (or edge) has a cost associated with it. Alternatives includes associating the costs with the nodes, with the nodes and links, or associating costs with another element of the graph.
  • Figure 2 A shows an exemplar directed graph which shows eastbound one-way street 50 and two-way street 52, both intersecting with two-way street
  • node 62 represents travel northbound on street 54 toward intersection 60.
  • Node 64 represents travel eastbound on road 50 toward intersection 60.
  • Node 72 represents arriving at intersection 70 by travelling south on street 64.
  • Node 74 represents arriving at intersection 70 by travelling east on road 52.
  • Node 76 represents arriving at intersection 70 by travelling west on road 52.
  • Links represent the path between nodes. For example, from node 64 a traveller can make a right turn at intersection 60 to enter road 54 or can proceed straight on road 50.
  • Link 86 represents a traveller who reaches intersection 60 via node 64, makes a right and proceeds to node 72. Thus, link 86 connects node 64 to node 72.
  • Link 88 connects node 64 to the next node on street 50 (not shown on Figure 2A).
  • a traveller arriving at intersection 70 by travelling west on street 52 (node 76) can continue to proceed on street 52 or can make a right onto street 54.
  • Link 82 represents a traveller who makes the right turn and, thus, link 82 connects node 76 to node 62.
  • Link 84 represents the traveller who remains on road 52 and, thus, connects node 76 to the next node on street 52 (not shown).
  • Figure 2 A only shows links drawn for nodes 76 and 54. If links are drawn for all nodes, the directed graph would become too crowded and would be difficult to read. Thus, the directed graph is simplified and redrawn as in Figure 2B.
  • node 100 represents nodes 64 and 62.
  • Node 102 represents nodes 72, 74 and 76. Note that the tails of the nodes are not drawn.
  • the links are used to indicate directions of allowable travel. Thus, link 104 indicates travel from intersection 70 to intersection 60 and link 106 indicates travel from intersection 60 to intersection 70. Turn restrictions and one-way streets are represented by the presence or absence of a link.
  • the directed graph of Figure 2b is used to symbolically understand the data structure stored by a computer in order to create cost zones.
  • a computer does not actually store an image of a directed graph. Rather, the computer stores a data structure.
  • Each entry in the data structure represents a node.
  • the data structure stores the location of the node (e.g. , latitude and longitude), a list of neighboring nodes (nodes which can be travelled to via one link) and the various costs associated with getting to the neighboring nodes. It is contemplated that the present invention will work with many suitable data structures different from the one described. Furthermore, the invention need not be used with a directed graph.
  • the present invention can be used with the entire map database, or any other suitable subset of information.
  • a traveller To create a cost zone from a digital map, a traveller must indicate an origin on a map which references the traveller's location or the center of the cost zone. The traveller must also indicate the desired cost, which includes the type of cost and the amount of that cost to be used to create the drive zone. For example, a traveller may indicate the cost type to be driving time and the amount of cost to be 8 minutes. Thus, the cost zone would be created which represents the area on a map about the origin to which the traveller can drive to in 8 minutes.
  • Figure 3 depicts a flow chart for the method for creating a cost zone about an origin.
  • the first step 120 is to identify nodes on the map that are within a predete ⁇ nined factor of a desired cost of the origin.
  • the desired cost in this example described herein is 8 minutes of driving time.
  • a predetermined factor is usually some number greater than 1 (one) that is used to find an area on the map that includes all those areas within the predetermined cost and some additional locations having a cost greater than the desired cost so that inte ⁇ olation can be done in future steps.
  • the predetermined factor is set as 1.5.
  • the predetermined factor would change depending upon the detail and density of the map. The appropriate value for a specific implementation can be determined based on trial and error.
  • step 120 all nodes on the map which have a driving time of 12 minutes from the origin (8 min. x 1.5) would be identified.
  • step 122 a set of triangles is created with the vertices of the triangles being the locations of nodes identified in step 120.
  • step 124 the system inteipolates along a subset of the sides of the triangles to find the locations where the cost of driving is estimated to be 8 minutes.
  • Figure 3 shows steps 120, 122 and 124 as separate steps; however, these steps can be interleaved.
  • Figure 4 is a directed graph of a portion of a digital map.
  • the filled-in circles represent nodes, the arrows represent links and the numbers next to the links represent costs, which in this example is driving time in minutes.
  • the differences in driving times for the different links are based on the type of road and the topography of the road. For example, highways are associated with shorter driving times for a given distance than a congested street in the middle of a commercial area of town.
  • the origin is node 162.
  • step 120 in Figure 3 is explained in more detail with the flow chart of Figure 5, using the directed graph of Figure 4.
  • the goal of step 120 is to find all nodes within 12 minutes of driving time at node 162.
  • the link between origin 162 and node 176 indicates a driving time of 6 minutes.
  • node 176 is within the predetermined factor of the desired cost of origin 162.
  • travelling from origin 162 to node 156, the shortest path is via nodes 160 and 158, and requires a travel time of 16 minutes, which is not within the 12 minute cut-off.
  • the steps to identify all those nodes which are within the cut-off are detailed in Figure 5.
  • a priority queue is set up.
  • the priority queue stores the node's location and the cost of getting to the node from the origin.
  • the priority queue sorts the members of the queue based on cost, the lowest cost being at the head of the queue.
  • the origin along with its cost is added to the queue.
  • the cost of getting to the origin is typically 0.
  • the system considers the node at the head of the queue (the head node). Since the origin is the only member of the queue, the origin 162 is at the head of the queue.
  • the system arbitrarily picks one of the neighbors of the head node and determines the cost of travelling from the origin through the head node to that respective neighbor.
  • origin 162 has five neighbors that can be travelled to: node 160, node 146, node 148, node 164 and node 176.
  • the system picks node 146 as the first neighbor and determines that the cost is 2 minutes.
  • the system determines whether the neighbor is already on the queue with a lower cost. In the example, node 146 is not on the queue; therefore, node 146 with a cost of 2 minutes is added to the queue (step 210).
  • step 210 the system determines whether the neighbor is already on the queue with a lower cost. In the example, node 146 is not on the queue; therefore, node 146 with a cost of 2 minutes is added to the queue (step 210).
  • the system determines whether there are any more neighbors. As discussed above, origin 162 has four more neighbors, so the answer is "yes”.
  • step 206 determines the next neighbor's cost.
  • the next neighbor to be examined in the example is node 148.
  • the cost of travelling from origin 162 to node 148 is 5 minutes.
  • step 208 it is determined that node 148 is not in the queue, thus, in step 210, node 148 with a cost of 5 minutes is added to the queue.
  • node 148 is placed below node 146 on the queue.
  • node 164 is considered in step 206.
  • the cost of travelling to node 164 is 4 minutes. Since there is not already a known cost that is lower than 4 minutes for node 164 already in the queue (step 208), node 164 is added to the queue behind node 146 and in front of node 148 in step 210.
  • step 206 the system dete ⁇ riines the cost of travelling to neighbor 176 to be 6 minutes. Since there is no lower cost already stored in the queue (step 208), node 176 is added to the bottom of the queue (step 210). The system considers node 160 (step 206), which has a cost of 6 minutes. Since the queue does not already have a known cost lower than 6 minutes for node 160
  • node 160 is added to the queue below node 176.
  • node 176 and node 160 have the same cost.
  • the system can arbitrarily decide which node to put in the queue in front of the other. One method is to store node 176 in front of node 160 since node 176 was put in the queue first. Since there are no more neighbors to consider (step 212), the system then removes the node at the front of the queue in step 214 and stores the removed node in a data structure. At this point, the queue includes the following entries in this order: node 146 (head of queue), node 164, node 148, node 176 and node 160.
  • step 216 the system looks at the head of the queue, which in this case is node 146, and asks whether the cost associated with the node at the head of the queue is less than the predetermined factor (K) of the desired cost (D). Since the predetermined factor of the desired cost is 12 minutes and the cost associated with node 146 is 2 minutes, the answer to that comparison is "yes" and the system loops back to step 204. If the cost of the front node on the queue were greater than 12 minutes, then step 120 of Figure 3 would be finished.
  • K the predetermined factor of the desired cost
  • the system loops back to step 204 and considers node 146 which is at the head of the queue.
  • the system looks at the only neighbor of node 146.
  • the links show that a traveller at node 146 can only travel to node 148.
  • the links between nodes 146 and 144 and nodes 146 and 160 indicate one-way streets travelling towards node 146.
  • the system looks at the cost of travelling from the origin, through node 146 and to node 148. Looking at Figure 4, this includes travelling along the link between node 162 to node 146 and travelling along the link from node 146 to node 148.
  • the link from node 162 to node 146 has a cost of 2 minutes, and the link from node 146 to node 148 has a cost of 2 minutes; therefore, the cost of travelling from the origin to node 148 through node 146 is 4 minutes.
  • step 208 the system determines whether node 148 is already in the queue with a lower cost. In this case, node 148 is already on the queue with a cost of 5 minutes. The cost of 5 minutes of driving directly from node 162 to node 148 is higher than the cost of driving to node 148 through node 146, which is 4 minutes. The queue entry of node 148 with a cost of 5 minutes is removed from the queue and a new entry is added to the queue which includes node 148 and a driving time of 4 minutes (step 210). Thus, the step of adding to the queue may, in some instances, include editing or removing an entry already existing on the queue.
  • step 212 the system determines that node 146 does not have any more neighbors, and in step 214, node 146 is removed from the queue.
  • the queue has the following entries in the following order: node 164, node 148, node 176 and node 160.
  • step 216 the system determines whether the head of the queue, node 146, has a cost less than 12 minutes. In this case, it does and the system loops back to step 204. When each node is removed from the queue in step 214, the removed node is placed into a data structure.
  • step 216 determines that the node at the head of the queue has a cost greater than or equal to 12 minutes
  • the data structure created in step 214 represents all those nodes that are within the predetermined factor of the desired cost of the origin (e.g. , 12 minutes).
  • This data structure includes the location of each node and the associated cost of travelling to the node from the origin.
  • Figure 6 symbolically depicts all the nodes from Figure 4 that would have been placed in the data structure. In parentheses next to each node is the cost for that node which is stored in the data structure. Note that origin 162 is considered a node and is included in the data structure.
  • FIG 7A is a more detailed flow chart describing one embodiment of the step of triangulating the nodes. Other methods of creating triangles are also within the spirit of the present invention.
  • the steps described in Figure 7 are taken on the data structure symbolized by Figure 6.
  • step 250 the system takes the first three nodes that were removed from the priority queue in step 214, stores the nodes in a data structure (triangle data structure), and creates a triangle by connecting the nodes together.
  • the step of creating a triangle does not necessarily mean drawing a triangle and actually connecting nodes. Rather, the system stores the coordinates of the three nodes at the vertices of a triangle. The lines symbolically connecting the nodes to form the triangle are called sides.
  • the newly created triangle is put in a queue (the "triangle queue").
  • step 252 the system takes the next node that was removed from the priority queue in step 214 and adds that to the triangle data structure.
  • data structure refers to any file or structure storing data.
  • step 256 the system determines if the node is within an already existing triangle, outside an already existing triangle, or on a side of an already existing triangle.
  • step 260 If the new node added in step 252 is on a side of an already existing triangle, the triangle is broken by drawing a line from the opposite vertex to the new node, thereby creating two triangles (step 260).
  • Figure 7B shows a situation with already existing triangle, ABC, and a new node D was added. Node D is on side BC. Therefore, in step 260, a line would be drawn from node A to node D, thereby breaking triangle ABC into two triangles, ABD and ADC.
  • step 262 If the new node added in step 252 is inside an already existing triangle, then in step 262 the new node is connected to all three vertices of the triangle it is contained in. For example, in Figure 7C, new node H is inside an already existing triangle EFG.
  • step 262 a first line is drawn connecting node H to node E, a second line is drawn connecting node H to node F and a third line is drawn connecting node H to node G. If the new node added in step 252 is outside any already existing triangles, then the new node is connected to any of the nodes in the triangle data structure that the additional node can be connected to by a straight line without intersecting any sides. For example, in
  • new node M is outside triangle JKL.
  • a line is drawn from node M to all other nodes that M can be connected to by a straight line without intersecting any side.
  • a first line is drawn connecting node M to node J and a second line is drawn connecting node M to node L.
  • No line connecting node M to node K would be created because such a line would intersect the preexisting side between J and L.
  • Any new triangles created by steps 260, 262 or 264 are added to the triangle queue (step 266).
  • a triangle is a Delaunay triangle if the circumcircle of that triangle does not contain any other nodes in the triangulation in its interior.
  • the circumcircle of a triangle is the circle which has all three vertices of the triangle along its circumference.
  • the first triangle of the queue is considered.
  • a circumcircle is drawn around that triangle.
  • the system determines whether the triangle under consideration is Delaunay.
  • the computer Since the method is carried out by a computer, or other type of processor, the computer does not actually draw any triangles or circles, but uses mathematics known in the art to determine the relevant coordinates of the triangles and whether a circumcircle would actually include any other nodes. If the triangle is not Delaunay, the triangle is subdivided in step 274 and the new triangle(s) are added to the triangle queue in step 276.
  • the step of subdividing in step 274 includes removing the closest side to the node outside the triangle but within the circumcircle connecting the outside node to the nodes at the end points of the removed side and then subdividing the resulting quadrilateral by adding its other diagonal.
  • triangle PQR is not Delaunay because node T is within circumcircle 283.
  • the triangle PQR must be subdivided in step 274, which includes removing side PR, connecting nodes P and T, connecting nodes T and R and connecting nodes T and Q. The result is two triangles, PQT and
  • step 268 The system then considers the next triangle in the triangle queue in step 268. If the triangle under consideration was a Delaunay triangle, then that triangle is removed from the queue. Steps 268-280 are continued until the triangle queue is empty. In step 272, if a triangle is determined not to be Delaunay, it is because there is a node outside the side of the triangle, but inside the circumcircle. After the queue is empty, the system determines whether any more new nodes need to be added to the triangle data structure (step 282). If not, the triangulation is done. If so, the system loops back to step 252 and adds the new node.
  • Figure 8 symbolically represents the triangle data structure after the method depicted in Figure 7 is complete.
  • each node is a number in parentheses which represents the cost of getting to that node from the origin based on the cost that was removed with the node from the priority queue in step 214.
  • the triangle data structure includes an entry for each node. At each entry, the data structure stores the vertex's location, the cost from the origin and all the other vertexes that it is connected to via triangle sides.
  • Figure 9 is a flow chart describing the step of interpolating along a subset of the sides of the triangles to estimate locations on the sides having the desired cost.
  • step 300 the system systematically searches the triangle data structure for a triangle side which has one end point having a cost greater than the desired cost (8 minutes) and one end point having a cost below the desired cost.
  • step 302 the system linearly interpolates along that side to estimate the location along the side where the cost of travelling to that location is equal to the desired cost.
  • the preferred system uses linear interpolation, it is contemplated that other modes of interpolating will be effective with the present invention.
  • the chosen side from step 300 is part of two triangles.
  • step 306 the system arbitrarily chooses one of those two triangles.
  • the chosen triangle has two sides other than the side already interpolated on.
  • step 306 the system chooses an appropriate side from the two remaining sides at the chosen triangle.
  • An appropriate side has an end point below the desired cost and an end point above the desired cost. The system then interpolates along the chosen appropriate side to estimate the location along the side where the cost of travelling to that location is equal to the desired cost.
  • the system After the inte ⁇ olation in step 316, the system now has two locations representing the locations estimated to have the desired cost.
  • the system symbolically connects the two locations together. By symbolically, it is meant that the system does not actually draw a line segment; rather, the system stores the end points of the line segment in a file or data structure.
  • the line segment symbolically drawn between the two locations is called the boundary line segment.
  • the system determines whether the boundary line has been closed, that is, whether the boundary is a closed loop.
  • the system determines whether the boundary segment has reached the perimeter of the geographical area represented in the data structure (step 322). If not, the system goes to the next triangle, which is in step 324.
  • the side which includes the second interpolated location borders two triangles.
  • the boundary line segment just drawn is drawn through one of the triangles and in step 324, the system chooses the other triangle and loops back to step 306, at which point it chooses an appropriate side in that other triangle.
  • the system will continue to draw the boundary line segment along the sides at the perimeter, in the direction toward the end point with the lower cost, until it reaches a triangle side that has an end point below the desired cost and an end point above the desired cost (step 326).
  • the system inte ⁇ olates along the triangle side to find the location estimated to have the desired cost and draws the boundary line segment to that location, then the system will loop back to step 306, at which point the system will choose one of the two other sides in the triangle that contains the side with the inte ⁇ olated location.
  • step 316 it is possible that an side has one end point that has a cost equal to the desired cost. In that case, the step of inte ⁇ olating does not need to actually interpolate and in step 318, the boundary line is connected directly to the end point. However, for purposes of choosing the next triangle in step 324, the process proceeds as if the end point had a cost greater than the desired cost, so that there will be no issue as to which is the next triangle.
  • step 330 the system will then repeat all the steps (step 330) starting from step 300. That is, the system will go back and look for any side that does not intersect with the boundary line, but does have an end point below the desired cost and an end point above the desired cost. If the system finds such an side, the system repeats steps 300-330 and creates a separate boundary line. This situation signifies an island within the geographic area which may not be accessible within the desired cost. For example, travel to a gated community may not be available to a traveller. In one embodiment, if the system finds an island within a cost zone, and the island is less than a predetermined small fraction (e.g. 1 ) of the cost zone's area, then the island can be disregarded as being insignificant.
  • a predetermined small fraction e.g. 1
  • the system may find an island of inclusion that is outside the boundary.
  • the steps of Figure 9 describe the step of symbolically drawing a boundary line. Since these steps are performed by a computer, the computer may draw a boundary line on a screen or map, or may create a boundary data structure which includes a set of vertices of a polygon.
  • Figure 10 is a graphical representation of a heavily shaded boundary line
  • step 300 the first side found in step 300 is the side between node 164 and node 166.
  • Node 164 has a cost of 4 minutes which is below the desired cost of 8 minutes.
  • Node 166 has a cost of 10 minutes which is above the desired cost. Inte ⁇ olating along the side between nodes 164 and 166 would find a location
  • the system would choose a triangle, for example, the triangle bounded by nodes 164, 166 and 178.
  • the system then chooses one side, for example, the side between nodes 166 and 178. That side is not an appropriate side, therefore, the system chooses the other side, between nodes 164 and 178. That side is appropriate because one end point has a cost of 4 minutes and another end point has a cost of 10 minutes.
  • the system inte ⁇ olates along that side to estimate a location 354 having a cost of 8 minutes.
  • Location 354 is two-thirds of the distance from node 164 toward node 178.
  • Location 352 and 354 are connected by a boundary line segment.
  • the system chooses the triangle bounded by nodes 164, 178 and 176 because it is the other triangle containing the side just interpolated, and chooses the side between nodes 178 and 176.
  • This side has one end point having a cost of 5 minutes and another end point having a cost of 10 minutes.
  • the system interpolates to find location 356 to be two-fifths the distance from node 178 to node 176.
  • a boundary line segment is drawn from location 354 to location 356. Because location 356 is along the perimeter, the system continues to draw the boundary line along the perimeter until it finds an side which has an end point above and below the desired cost and then inte ⁇ olates to find the location of the desired cost. In Figure 10, the system would continue to draw the boundary line until location 358, at which time the system would continue choosing triangles and interpolating until the entire boundary line 350 is drawn, as shown in Figure 10.
  • a data structure exists storing the location (e.g. latitude and longitude) of the vertices of a polygon which represents the boundary line. That data structure can be used for many pu ⁇ oses.
  • the system can draw a map which includes the boundary line, a map can be drawn of the cost zone, a map can be drawn showing the cost zone in a special color, etc.
  • the system can include an application which allows the user to query whether a particular location, address or business is within the boundary.
  • the system can include an application where the user can ask for a list of all of a specific types of locations that are in the cost zone boundary. For example, a user could ask for all restaurants within the cost zone, or all gas stations within the cost zone, etc. The system would then check the coordinates of all or a specific type of locations to determine if the checked locations are in the cost zone.
  • a user could ask for a cost zone by specifying more than one cost value.
  • the user may want to know the cost zones which specifies everywhere that user can travel in 5 minutes, 10 minutes, or 15 minutes.
  • the system would carry out steps 120 and 122 for the largest cost (e.g., 15 minutes).
  • Step 124 the step of inte ⁇ olating, would be carried out separately for 5 minutes, 10 minutes and 15 minutes.
  • Another altemative includes determining a cost zone about the origin for all of the locations that can be traveled from in order to arrive at the origin within the desired cost. For example, consider a taxi company that advertises pickup within 5 minutes receives a call for a taxi to pick up a customer at the customer's home (the origin). The taxi company knows the location of at least a subset of its taxis. The dispatcher may create a cost zone to find out all of the places that a taxi could drive from to reach the customer's home within 5 minutes. Such a cost zone is created by using the steps in Figure 3. When considering the neighbors of node at the head of the queue and the neighbors' costs, the system would consider the links pointing from the neighbor to the node at the head of the queue rather the links pointing to the neighbor.

Abstract

A cost zone about an origin on a digital map includes the area on the map that can be traveled to, from the origin, which has a cost of travel less than a predetermined cost. The cost can be measured in distance, time of travel, ease of turning, tolls, etc. The steps of creating a cost zone include identifying a set of decision points on the map that are within a predetermined factor of the desired cost, triangulating the decision points to create a set of triangles and interpolating along a subset of the sides of the triangles to estimate the locations along the sides that can be traveled to at the desired cost.

Description

COST ZONES
BACKGROUND OF THE INVENTION Field of the Invention
The present invention is directed to a system for creating and using cost zones based on a digital map.
Description of the Related Art
The computer has revolutionized the idea of a map from an image statically depicting the location of physical, political, or other features to the digital map, which consists of geographically referenced digital data quantifying a physical, social or economic system. The range of information included in digital maps is unlimited; for example, digital maps could include distances between elements, driving time, lot numbers, tax information, tourist information, etc. Additionally, storing a map as a file on a computer allows for unlimited software applications to manipulate that data. One use that has involved digital maps includes path finding.
One application for digital maps that has not been used effectively is the ability to determine where one can travel within a certain cost limit. Examples of cost include time, distance, tolls paid, ease of turning, quality of scenery, etc. Thus, a traveler may wish to know how far that traveler can drive without paying more than $10 in toll, what restaurants are within a 10 minute drive, or what gas stations are within a one mile walk. In each of these situations, the traveler desires to know where they can travel to within a given cost. The area that they can travel to within that cost is called a "cost zone. " In the past, that traveler would look at a traditional map and use the map's key to guess how they could travel if the cost under consideration was distance. If the cost was time, the traveler would estimate distance and make an educated guess as to time. If the traveler is unfamiliar with the streets on the map, then a guess regarding time of travel would probably not be accurate. Digital maps in conjunction with path finding systems can be useful for determining cost zones. For example, a digital map can store some or all of the desired costs for the elements in an map. If a user desires to travel to a location, a computer can determine the costs to travel to that location. Such a system is inefficient. If the traveler wants to know all gas stations within one mile, the traveler would have to search a map to find all the gas stations, then run a path finding application once for each such gas station to determine whether that gas station is within one mile.
One attempt at creating cost zones includes using a map already divided into regions unrelated to costs (e.g. zip codes). A point is designated in each region that is used to approximate the entire region. The cost of travel to each of the designated points is determined. Based on those costs, entire regions are included or excluded in the cost zone. Cost zones created by this solution have not proven to be sufficiently accurate.
Therefore, a system is needed that allows a traveler to efficiently and more accurately create and/or use a cost zone.
SUMMARY OF THE INVENTION The present invention is directed to overcome the disadvantages of the prior art. Thus, the present invention, roughly described, provides for a system that creates a cost zone about an origin on a digital map. The system identifies the set of nodes on the map that are within a predetermined factor of the desired cost of the origin. The system triangulates the set of nodes to create a set of triangles and interpolates along a subset of the sides of the triangles to estimate the locations that have the desired costs. These locations are on the boundary of the cost zone. All such boundary points can be connected to create a closed loop around an area representing the cost zone. When a user of the map proceeds to determine whether a particular location is within the cost zone, a computer need only know the location of the cost zone's boundary and the location of the desired destination to determine whether that destination is within the cost zone.
In one embodiment, the step of identifying the set of nodes includes using a priority queue, and initially considering the origin as the head node. The head node is defined as the node at the head of the priority queue. For each neighbor node of the head node, a cost of traveling from the origin, through the head node and to the neighbor node is determined. A first node is a neighbor node of a second node if the first node can be traveled to from said second node by traversing one link. Each neighbor node and its cost are added to the queue if it is not already stored in the queue with a lower travel cost. The head node is then removed from the queue and the process is repeated until a new head node has a cost that is not within a predetermined factor of the desired cost. The phrase "within a predetermined factor of the desired cost" can include a cost less than a predetermined factor of the desired cost (preferred) , or less than or equal to the predetermined factor of the desired cost.
One example of such a predetermined factor is 1.5. Thus, if it is desired to determine how far one can drive in 8 minutes, the above process would terminate when a new head node has a cost of 12 minutes (1.5 x 8).
In one embodiment, the step of triangulating includes creating the Delaunay triangles. One method of creating Delaunay triangles includes adding three nodes to a data structure, creating a triangle out of these three nodes, adding an additional node to the data structure, connecting all three vertices of a surrounding triangle to the additional node if the additional node is within the surrounding triangle, connecting the additional node to all nodes in the data structure that the node can be connected to by a straight line without intersecting the side of any triangle if the additional node is not within any triangle, connecting the additional node to a vertex opposite a particular side of a particular triangle if the additional node is on the particular side, and determining whether at least a subset of triangles in the data structure are all Delaunay triangles.
In one embcidiment, the step of interpolating includes interpolating along a first side of a first triangle, a second side of a second triangle and a third side of a third triangle. The first side includes one end point having a cost less than the desired cost and a second end point having a cost greater than the desired cost. The second side includes one end point having a cost less than the desired cost and a second end point having a cost greater than the desired cost. The second triangle shares the first side with the first triangle. The third side includes one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost. The third triangle shares said second side with said second triangle. This process similarly continues interpolating along other sides of triangles until a closed boundary is determined. These and other objects and advantages of the invention will appear more clearly from the following detailed description in which the preferred embodiment of the invention has been set forth in conjunction with the drawings.
RRTEF DESCRIPTION OF THE DRAWINGS
Figure 1 is a block diagram of one exemplar hardware architecture that can be used to practice the present invention. Figure 2 A is an example of a directed graph representing a part of a digital map.
Figure 2B is second example of a directed graph representing a part of a digital map. Figure 3 is a flow chart describing the method of creating a cost zone.
Figure 4 is an exemplar graph representing a portion of an digital map.
Figure 5 is a flow chart describing the step of identifying a set of nodes on a map that are within a predetermined factor of a desired cost of the origin.
Figure 6 depicts a portion of the graph of Figure 4 showing only those nodes that are within a predetermined factor of the desired cost of the origin.
Figure 7 is a flow chart describing the step of triangulating.
Figures 7B-7E depict examples of triangles used to explain the steps depicted in Figure 7A.
Figure 8 depicts the partial graph of Figure 6 after the step of triangulating.
Figure 9 is a flow chart describing the step of interpolating.
Figure 10 shows the partial graph of Figure 8 after the step of interpolating.
DETAILED DESCRIPTION
Figure 1 is a symbolic block diagram of one exemplar hardware architecture that can be used to practice the present invention. The hardware comprises a CPU 12, which may be an Intel 80486 compatible CPU or an Intel Pentium processor, for example. CPU 12 has address, data and control lines which are connected to CPU bus 14. CPU bus 14 is also connected to a cache memory 16 and to DRAM memory 18, both of which are controlled by system control logic 20. System control logic 20 is connected to CPU bus 14 and also to control, address and data lines of an ISA bus 22. Connected to ISA bus 22 is ROM 24, which contains the system BIOS, and a disk controller 26 for floppy and hard-disk drives 28. The system of Figure 1 illustrates one platform which can run software according to the present invention. Numerous other platforms can also suffice, such as Macintosh-based platforms available from Apple Computer, Inc. , platforms with different local bus configurations, networked platforms, multi-processor platforms, and so on.
A digital map is stored in one or more computer files which include the data necessary to construct a map. This data could include longitude data, latitude data, addresses, distances, turning restrictions, driving times, highway exit numbers, descriptions of commercial uses of properties, etc. Generally, the map database is too large to be effectively used with most software applications. Thus, smaller databases are created which contain only the data needed for the specific use at hand. One of these smaller databases is a graph. A graph is a collection of nodes and edges. Nodes are objects that have properties and indicate decision points on the graph. An edge is a connection between two nodes. A path from node A to node B in a graph is described as a list of nodes such that there is an edge from each node in the list to the next. A directed graph is a graph where each edge has a single direction associated with it. There may be two edges between a given pair of nodes, one in each direction. In a directed graph, edges are referred to as links. A weighted graph is a graph in which each link (or edge) has a cost associated with it. Alternatives includes associating the costs with the nodes, with the nodes and links, or associating costs with another element of the graph.
Figure 2 A shows an exemplar directed graph which shows eastbound one-way street 50 and two-way street 52, both intersecting with two-way street
54. Street 50 intersects with street 54 at intersection 60. Street 52 intersects with street 54 at intersection 70. At intersection 60 are two nodes, 62 and 64. The head of the node is a circle. The rear of the node is a straight-line tail. The circle represents where the node is located and the tail represents where a traveller would come from to reach that node. The node symbol is displaced from the actual intersection for purposes of visibility. For example, node 62 represents travel northbound on street 54 toward intersection 60. Node 64 represents travel eastbound on road 50 toward intersection 60. There is no node at intersection 60 to represent westbound travel on street 50 because street 50 is an eastbound one-way street. Thus, a traveller proceeding north on road 54 and reaching intersection 60 can only make a right turn. Node 72 represents arriving at intersection 70 by travelling south on street 64. Node 74 represents arriving at intersection 70 by travelling east on road 52. Node 76 represents arriving at intersection 70 by travelling west on road 52.
Links represent the path between nodes. For example, from node 64 a traveller can make a right turn at intersection 60 to enter road 54 or can proceed straight on road 50. Link 86 represents a traveller who reaches intersection 60 via node 64, makes a right and proceeds to node 72. Thus, link 86 connects node 64 to node 72. Link 88 connects node 64 to the next node on street 50 (not shown on Figure 2A). A traveller arriving at intersection 70 by travelling west on street 52 (node 76) can continue to proceed on street 52 or can make a right onto street 54. Link 82 represents a traveller who makes the right turn and, thus, link 82 connects node 76 to node 62. Link 84 represents the traveller who remains on road 52 and, thus, connects node 76 to the next node on street 52 (not shown). Figure 2 A only shows links drawn for nodes 76 and 54. If links are drawn for all nodes, the directed graph would become too crowded and would be difficult to read. Thus, the directed graph is simplified and redrawn as in Figure 2B.
In Figure 2B, all the nodes at the same intersection are collapsed into one node to make the following explanation simpler. (In actual use, the present invention can make use of a graph similar to Figure 2 A or Figure 2B.) Thus, node 100 represents nodes 64 and 62. Node 102 represents nodes 72, 74 and 76. Note that the tails of the nodes are not drawn. The links are used to indicate directions of allowable travel. Thus, link 104 indicates travel from intersection 70 to intersection 60 and link 106 indicates travel from intersection 60 to intersection 70. Turn restrictions and one-way streets are represented by the presence or absence of a link.
The directed graph of Figure 2b is used to symbolically understand the data structure stored by a computer in order to create cost zones. A computer does not actually store an image of a directed graph. Rather, the computer stores a data structure. Each entry in the data structure represents a node. For each node, the data structure stores the location of the node (e.g. , latitude and longitude), a list of neighboring nodes (nodes which can be travelled to via one link) and the various costs associated with getting to the neighboring nodes. It is contemplated that the present invention will work with many suitable data structures different from the one described. Furthermore, the invention need not be used with a directed graph. The present invention can be used with the entire map database, or any other suitable subset of information.
To create a cost zone from a digital map, a traveller must indicate an origin on a map which references the traveller's location or the center of the cost zone. The traveller must also indicate the desired cost, which includes the type of cost and the amount of that cost to be used to create the drive zone. For example, a traveller may indicate the cost type to be driving time and the amount of cost to be 8 minutes. Thus, the cost zone would be created which represents the area on a map about the origin to which the traveller can drive to in 8 minutes.
Figure 3 depicts a flow chart for the method for creating a cost zone about an origin. The first step 120 is to identify nodes on the map that are within a predeteπnined factor of a desired cost of the origin. The desired cost in this example described herein is 8 minutes of driving time. A predetermined factor is usually some number greater than 1 (one) that is used to find an area on the map that includes all those areas within the predetermined cost and some additional locations having a cost greater than the desired cost so that inteφolation can be done in future steps. In this example, the predetermined factor is set as 1.5. The predetermined factor would change depending upon the detail and density of the map. The appropriate value for a specific implementation can be determined based on trial and error. Thus, in step 120, all nodes on the map which have a driving time of 12 minutes from the origin (8 min. x 1.5) would be identified. In step 122, a set of triangles is created with the vertices of the triangles being the locations of nodes identified in step 120. In step 124, the system inteipolates along a subset of the sides of the triangles to find the locations where the cost of driving is estimated to be 8 minutes. Figure 3 shows steps 120, 122 and 124 as separate steps; however, these steps can be interleaved.
Figure 4 is a directed graph of a portion of a digital map. The filled-in circles represent nodes, the arrows represent links and the numbers next to the links represent costs, which in this example is driving time in minutes. The differences in driving times for the different links are based on the type of road and the topography of the road. For example, highways are associated with shorter driving times for a given distance than a congested street in the middle of a commercial area of town. In the example in Figure 4, the origin is node 162.
One embodiment of step 120 in Figure 3 is explained in more detail with the flow chart of Figure 5, using the directed graph of Figure 4. In this example, the goal of step 120 is to find all nodes within 12 minutes of driving time at node 162. For example, the link between origin 162 and node 176 indicates a driving time of 6 minutes. Thus, node 176 is within the predetermined factor of the desired cost of origin 162. Alternatively, travelling from origin 162 to node 156, the shortest path is via nodes 160 and 158, and requires a travel time of 16 minutes, which is not within the 12 minute cut-off. The steps to identify all those nodes which are within the cut-off are detailed in Figure 5.
In step 200, a priority queue is set up. In the present example, the priority queue stores the node's location and the cost of getting to the node from the origin. The priority queue sorts the members of the queue based on cost, the lowest cost being at the head of the queue. In step 202, the origin along with its cost is added to the queue. The cost of getting to the origin is typically 0. In step 204, the system considers the node at the head of the queue (the head node). Since the origin is the only member of the queue, the origin 162 is at the head of the queue. In step 206, the system arbitrarily picks one of the neighbors of the head node and determines the cost of travelling from the origin through the head node to that respective neighbor. In the current example, origin 162 has five neighbors that can be travelled to: node 160, node 146, node 148, node 164 and node 176. For example purposes, the system picks node 146 as the first neighbor and determines that the cost is 2 minutes. In step 208, the system determines whether the neighbor is already on the queue with a lower cost. In the example, node 146 is not on the queue; therefore, node 146 with a cost of 2 minutes is added to the queue (step 210). In step
212, the system determines whether there are any more neighbors. As discussed above, origin 162 has four more neighbors, so the answer is "yes".
The system loops back to step 206, which determines the next neighbor's cost. The next neighbor to be examined in the example is node 148.
The cost of travelling from origin 162 to node 148 is 5 minutes. In step 208, it is determined that node 148 is not in the queue, thus, in step 210, node 148 with a cost of 5 minutes is added to the queue. Note that node 148 is placed below node 146 on the queue. Next, node 164 is considered in step 206. The cost of travelling to node 164 is 4 minutes. Since there is not already a known cost that is lower than 4 minutes for node 164 already in the queue (step 208), node 164 is added to the queue behind node 146 and in front of node 148 in step 210. Since node 162 has two more neighbors that have not been considered, in step 206, the system deteπriines the cost of travelling to neighbor 176 to be 6 minutes. Since there is no lower cost already stored in the queue (step 208), node 176 is added to the bottom of the queue (step 210). The system considers node 160 (step 206), which has a cost of 6 minutes. Since the queue does not already have a known cost lower than 6 minutes for node 160
(step 208), node 160 is added to the queue below node 176. Note that node 176 and node 160 have the same cost. The system can arbitrarily decide which node to put in the queue in front of the other. One method is to store node 176 in front of node 160 since node 176 was put in the queue first. Since there are no more neighbors to consider (step 212), the system then removes the node at the front of the queue in step 214 and stores the removed node in a data structure. At this point, the queue includes the following entries in this order: node 146 (head of queue), node 164, node 148, node 176 and node 160.
In step 216, the system looks at the head of the queue, which in this case is node 146, and asks whether the cost associated with the node at the head of the queue is less than the predetermined factor (K) of the desired cost (D). Since the predetermined factor of the desired cost is 12 minutes and the cost associated with node 146 is 2 minutes, the answer to that comparison is "yes" and the system loops back to step 204. If the cost of the front node on the queue were greater than 12 minutes, then step 120 of Figure 3 would be finished.
In the current example, the system loops back to step 204 and considers node 146 which is at the head of the queue. In step 206, the system looks at the only neighbor of node 146. Although looking at Figure 4 shows that nodes 144 and node 160 are near node 146, the links show that a traveller at node 146 can only travel to node 148. The links between nodes 146 and 144 and nodes 146 and 160 indicate one-way streets travelling towards node 146. Thus, in step 206, the system looks at the cost of travelling from the origin, through node 146 and to node 148. Looking at Figure 4, this includes travelling along the link between node 162 to node 146 and travelling along the link from node 146 to node 148. The link from node 162 to node 146 has a cost of 2 minutes, and the link from node 146 to node 148 has a cost of 2 minutes; therefore, the cost of travelling from the origin to node 148 through node 146 is 4 minutes.
In step 208, the system determines whether node 148 is already in the queue with a lower cost. In this case, node 148 is already on the queue with a cost of 5 minutes. The cost of 5 minutes of driving directly from node 162 to node 148 is higher than the cost of driving to node 148 through node 146, which is 4 minutes. The queue entry of node 148 with a cost of 5 minutes is removed from the queue and a new entry is added to the queue which includes node 148 and a driving time of 4 minutes (step 210). Thus, the step of adding to the queue may, in some instances, include editing or removing an entry already existing on the queue. In step 212, the system determines that node 146 does not have any more neighbors, and in step 214, node 146 is removed from the queue. At this point, the queue has the following entries in the following order: node 164, node 148, node 176 and node 160. In step 216, the system determines whether the head of the queue, node 146, has a cost less than 12 minutes. In this case, it does and the system loops back to step 204. When each node is removed from the queue in step 214, the removed node is placed into a data structure. When step 216 determines that the node at the head of the queue has a cost greater than or equal to 12 minutes, the data structure created in step 214 represents all those nodes that are within the predetermined factor of the desired cost of the origin (e.g. , 12 minutes). This data structure includes the location of each node and the associated cost of travelling to the node from the origin. Figure 6 symbolically depicts all the nodes from Figure 4 that would have been placed in the data structure. In parentheses next to each node is the cost for that node which is stored in the data structure. Note that origin 162 is considered a node and is included in the data structure.
Figure 7A is a more detailed flow chart describing one embodiment of the step of triangulating the nodes. Other methods of creating triangles are also within the spirit of the present invention. The steps described in Figure 7 are taken on the data structure symbolized by Figure 6. In step 250, the system takes the first three nodes that were removed from the priority queue in step 214, stores the nodes in a data structure (triangle data structure), and creates a triangle by connecting the nodes together. The step of creating a triangle does not necessarily mean drawing a triangle and actually connecting nodes. Rather, the system stores the coordinates of the three nodes at the vertices of a triangle. The lines symbolically connecting the nodes to form the triangle are called sides. The newly created triangle is put in a queue (the "triangle queue"). In step 252, the system takes the next node that was removed from the priority queue in step 214 and adds that to the triangle data structure. (The phrase "data structure" refers to any file or structure storing data.) In step 256, the system determines if the node is within an already existing triangle, outside an already existing triangle, or on a side of an already existing triangle.
If the new node added in step 252 is on a side of an already existing triangle, the triangle is broken by drawing a line from the opposite vertex to the new node, thereby creating two triangles (step 260). Figure 7B shows a situation with already existing triangle, ABC, and a new node D was added. Node D is on side BC. Therefore, in step 260, a line would be drawn from node A to node D, thereby breaking triangle ABC into two triangles, ABD and ADC. If the new node added in step 252 is inside an already existing triangle, then in step 262 the new node is connected to all three vertices of the triangle it is contained in. For example, in Figure 7C, new node H is inside an already existing triangle EFG. In step 262, a first line is drawn connecting node H to node E, a second line is drawn connecting node H to node F and a third line is drawn connecting node H to node G. If the new node added in step 252 is outside any already existing triangles, then the new node is connected to any of the nodes in the triangle data structure that the additional node can be connected to by a straight line without intersecting any sides. For example, in
Figure 7D, new node M is outside triangle JKL. Thus, a line is drawn from node M to all other nodes that M can be connected to by a straight line without intersecting any side. Thus, a first line is drawn connecting node M to node J and a second line is drawn connecting node M to node L. No line connecting node M to node K would be created because such a line would intersect the preexisting side between J and L. Any new triangles created by steps 260, 262 or 264 are added to the triangle queue (step 266).
At this point, all the triangles in the triangle queue must be examined to ensure that they are Delaunay triangles. A triangle is a Delaunay triangle if the circumcircle of that triangle does not contain any other nodes in the triangulation in its interior. The circumcircle of a triangle is the circle which has all three vertices of the triangle along its circumference. Thus, in step 268, the first triangle of the queue is considered. In step 270, a circumcircle is drawn around that triangle. In step 272, the system determines whether the triangle under consideration is Delaunay. Since the method is carried out by a computer, or other type of processor, the computer does not actually draw any triangles or circles, but uses mathematics known in the art to determine the relevant coordinates of the triangles and whether a circumcircle would actually include any other nodes. If the triangle is not Delaunay, the triangle is subdivided in step 274 and the new triangle(s) are added to the triangle queue in step 276. The step of subdividing in step 274 includes removing the closest side to the node outside the triangle but within the circumcircle connecting the outside node to the nodes at the end points of the removed side and then subdividing the resulting quadrilateral by adding its other diagonal. For example, in Figure 7E, triangle PQR is not Delaunay because node T is within circumcircle 283. Thus, the triangle PQR must be subdivided in step 274, which includes removing side PR, connecting nodes P and T, connecting nodes T and R and connecting nodes T and Q. The result is two triangles, PQT and
RQT. The system then considers the next triangle in the triangle queue in step 268. If the triangle under consideration was a Delaunay triangle, then that triangle is removed from the queue. Steps 268-280 are continued until the triangle queue is empty. In step 272, if a triangle is determined not to be Delaunay, it is because there is a node outside the side of the triangle, but inside the circumcircle. After the queue is empty, the system determines whether any more new nodes need to be added to the triangle data structure (step 282). If not, the triangulation is done. If so, the system loops back to step 252 and adds the new node. Figure 8 symbolically represents the triangle data structure after the method depicted in Figure 7 is complete. Next to each node is a number in parentheses which represents the cost of getting to that node from the origin based on the cost that was removed with the node from the priority queue in step 214. Note that all of the triangles shown in Figure 8 are Delaunay triangles. The triangle data structure includes an entry for each node. At each entry, the data structure stores the vertex's location, the cost from the origin and all the other vertexes that it is connected to via triangle sides. Figure 9 is a flow chart describing the step of interpolating along a subset of the sides of the triangles to estimate locations on the sides having the desired cost. In step 300, the system systematically searches the triangle data structure for a triangle side which has one end point having a cost greater than the desired cost (8 minutes) and one end point having a cost below the desired cost. In step 302, the system linearly interpolates along that side to estimate the location along the side where the cost of travelling to that location is equal to the desired cost. Although the preferred system uses linear interpolation, it is contemplated that other modes of interpolating will be effective with the present invention. In most cases, the chosen side from step 300 is part of two triangles.
In step 306, the system arbitrarily chooses one of those two triangles. The chosen triangle has two sides other than the side already interpolated on. In step 306, the system chooses an appropriate side from the two remaining sides at the chosen triangle. An appropriate side has an end point below the desired cost and an end point above the desired cost. The system then interpolates along the chosen appropriate side to estimate the location along the side where the cost of travelling to that location is equal to the desired cost.
After the inteφolation in step 316, the system now has two locations representing the locations estimated to have the desired cost. In step 318, the system symbolically connects the two locations together. By symbolically, it is meant that the system does not actually draw a line segment; rather, the system stores the end points of the line segment in a file or data structure. The line segment symbolically drawn between the two locations is called the boundary line segment. In step 320, the system determines whether the boundary line has been closed, that is, whether the boundary is a closed loop.
When the boundary line has been closed, the inteφolation is finished. If the boundary is not a closed loop, the system determines whether the boundary segment has reached the perimeter of the geographical area represented in the data structure (step 322). If not, the system goes to the next triangle, which is in step 324. The side which includes the second interpolated location borders two triangles. The boundary line segment just drawn is drawn through one of the triangles and in step 324, the system chooses the other triangle and loops back to step 306, at which point it chooses an appropriate side in that other triangle. If the boundary line segment has reached the perimeter of the triangles, the system will continue to draw the boundary line segment along the sides at the perimeter, in the direction toward the end point with the lower cost, until it reaches a triangle side that has an end point below the desired cost and an end point above the desired cost (step 326). When it finds such a triangle side, the system inteφolates along the triangle side to find the location estimated to have the desired cost and draws the boundary line segment to that location, then the system will loop back to step 306, at which point the system will choose one of the two other sides in the triangle that contains the side with the inteφolated location.
Note that in step 316, it is possible that an side has one end point that has a cost equal to the desired cost. In that case, the step of inteφolating does not need to actually interpolate and in step 318, the boundary line is connected directly to the end point. However, for purposes of choosing the next triangle in step 324, the process proceeds as if the end point had a cost greater than the desired cost, so that there will be no issue as to which is the next triangle.
When the steps of Figure 9 have completed, the system will then repeat all the steps (step 330) starting from step 300. That is, the system will go back and look for any side that does not intersect with the boundary line, but does have an end point below the desired cost and an end point above the desired cost. If the system finds such an side, the system repeats steps 300-330 and creates a separate boundary line. This situation signifies an island within the geographic area which may not be accessible within the desired cost. For example, travel to a gated community may not be available to a traveller. In one embodiment, if the system finds an island within a cost zone, and the island is less than a predetermined small fraction (e.g. 1 ) of the cost zone's area, then the island can be disregarded as being insignificant. Altematively, the system may find an island of inclusion that is outside the boundary. The steps of Figure 9 describe the step of symbolically drawing a boundary line. Since these steps are performed by a computer, the computer may draw a boundary line on a screen or map, or may create a boundary data structure which includes a set of vertices of a polygon. Figure 10 is a graphical representation of a heavily shaded boundary line
350 superimposed on the graph of Figure 8. For example purposes, assume that the first side found in step 300 is the side between node 164 and node 166. Node 164 has a cost of 4 minutes which is below the desired cost of 8 minutes. Node 166 has a cost of 10 minutes which is above the desired cost. Inteφolating along the side between nodes 164 and 166 would find a location
352 two-thirds of the distance from node 164 toward node 166. Next, the system would choose a triangle, for example, the triangle bounded by nodes 164, 166 and 178. The system then chooses one side, for example, the side between nodes 166 and 178. That side is not an appropriate side, therefore, the system chooses the other side, between nodes 164 and 178. That side is appropriate because one end point has a cost of 4 minutes and another end point has a cost of 10 minutes. The system inteφolates along that side to estimate a location 354 having a cost of 8 minutes. Location 354 is two-thirds of the distance from node 164 toward node 178. Location 352 and 354 are connected by a boundary line segment. Since the boundary is not closed along that side, another triangle is selected. The system chooses the triangle bounded by nodes 164, 178 and 176 because it is the other triangle containing the side just interpolated, and chooses the side between nodes 178 and 176. This side has one end point having a cost of 5 minutes and another end point having a cost of 10 minutes. The system interpolates to find location 356 to be two-fifths the distance from node 178 to node 176. A boundary line segment is drawn from location 354 to location 356. Because location 356 is along the perimeter, the system continues to draw the boundary line along the perimeter until it finds an side which has an end point above and below the desired cost and then inteφolates to find the location of the desired cost. In Figure 10, the system would continue to draw the boundary line until location 358, at which time the system would continue choosing triangles and interpolating until the entire boundary line 350 is drawn, as shown in Figure 10.
When the system completes the steps in Figure 9, a data structure exists storing the location (e.g. latitude and longitude) of the vertices of a polygon which represents the boundary line. That data structure can be used for many puφoses. For example, the system can draw a map which includes the boundary line, a map can be drawn of the cost zone, a map can be drawn showing the cost zone in a special color, etc. Altematively, the system can include an application which allows the user to query whether a particular location, address or business is within the boundary. Or, the system can include an application where the user can ask for a list of all of a specific types of locations that are in the cost zone boundary. For example, a user could ask for all restaurants within the cost zone, or all gas stations within the cost zone, etc. The system would then check the coordinates of all or a specific type of locations to determine if the checked locations are in the cost zone.
In one altemative, a user could ask for a cost zone by specifying more than one cost value. For example, the user may want to know the cost zones which specifies everywhere that user can travel in 5 minutes, 10 minutes, or 15 minutes. In that scenario, the system would carry out steps 120 and 122 for the largest cost (e.g., 15 minutes). Step 124, the step of inteφolating, would be carried out separately for 5 minutes, 10 minutes and 15 minutes.
Another altemative includes determining a cost zone about the origin for all of the locations that can be traveled from in order to arrive at the origin within the desired cost. For example, consider a taxi company that advertises pickup within 5 minutes receives a call for a taxi to pick up a customer at the customer's home (the origin). The taxi company knows the location of at least a subset of its taxis. The dispatcher may create a cost zone to find out all of the places that a taxi could drive from to reach the customer's home within 5 minutes. Such a cost zone is created by using the steps in Figure 3. When considering the neighbors of node at the head of the queue and the neighbors' costs, the system would consider the links pointing from the neighbor to the node at the head of the queue rather the links pointing to the neighbor.
The foregoing detailed description of the invention has been presented for purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise form disclosed, and obviously many modifications and variations are possible in light of the above teaching. The described embodiment was chosen in order to best explain the principles of the invention and its practical application to thereby enable others skilled in the art to best utilize the invention in various embodiments and with various modifications as are suited to the particular use contemplated. It is intended that the scope of the invention be defined by the claims appended hereto.

Claims

CLAIMSLCiaim:
1. A method of creating a cost zone about an origin on a digital map, comprising the steps of: identifying a set of nodes on said digital map that are within a predetermined factor of a desired cost of said origin; triangulating said set of nodes to create a set of triangles, said triangles having sides; and inteφolating along a subset of said sides of said triangles to estimate locations on said sides having said desired cost.
2. A method according to claim 1 , further including the step of: storing a list of said locations in a computer readable storage medium.
3. A method according to claim 2, wherein: said list stores latitude and longitude data for said locations.
4. A method according to claim 1 , further including the step of : creating a boundary connecting said locations.
5. A method according to claim 1, wherein: said desired cost is a traveling time.
6. A method according to claim 1 , wherein: said desired cost is a distance.
7. A method according to claim 1, wherein: said desired cost is a cost of traveling away from said origin.
8. A method according to claim 1, wherein: said desired cost is a cost of traveling toward said origin.
9. A method according to claim 1, wherein: said step of identifying a set of nodes includes the steps of: a) considering said origin as a head node of a priority queue; b) deteπmning, for each neighbor node of said head node, a travel cost of traveling from said origin, through said head node and to said neighbor node; c) storing in said priority queue each neighbor node of said head node and said travel cost, if said neighbor node is not already stored in said queue with a lower travel cost; and d) removing said head node from said queue such that said queue has a new head node.
10. A method according to claim 9, further including the step of e) repeating steps b) - d) if said head node's travel cost stored in said queue is less than said predetermined factor of said desired cost.
11. A method according to claim 1 , wherein: said step of triangulating includes creating Delaunay triangles.
12. A method according to claim 1, wherein: said step of triangulating includes the steps of: (a) adding three nodes to a data structure; (b) creating a triangle out of said three nodes; (c) adding an additional node to said data structure; (d) connecting all three vertices of a surrounding triangle to said additional node, if said additional node is within said surrounding triangle; (e) connecting said additional node to all nodes in said data structure that said additional node can be connected to by a straight line without intersecting any sides of triangle if said additional node is not within any triangles; (f) connecting said additional node to a vertex opposite a particular side of a particular triangle, if said additional node is on said particular side; and (g) determining whether at least a subset of triangles represented in said data stmcture are Delaunay triangles.
13. A method according to claim 12, wherein: repeating steps (c) - (g) until all additional nodes have been added to said data structure.
14. A method according to claim 1, wherein: said step of inteφolating includes: inteφolating along a first side of a first triangle, said first side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost; inteφolating along a second side of a second triangle, said second side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost, said second triangle sharing said first side with said first triangle; and interpolating along a third side of a third triangle, said third side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost, said third triangle sharing said second side with said second triangle.
15. A method according to claim 1, wherein: each of said sides of said triangles have two end points, both end points being nodes; and said step of inteφolating includes the steps of: finding one of said sides having one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost; inteφolating along said one side to find a first location along said one side having a cost equal to said desired cost; choosing a triangle that includes said one side; choosing a next side of said chosen triangle, said next side not being said one side, said next side including one end point with a cost less than said desired cost and a second end point having a cost greater than said desired costs; and interpolating along said next side to find a second location along said next side having a cost equal to said desired cost.
16. A computer readable storage medium having computer readable code embodied on said computer readable storage medium, said computer readable code for causing a computer to perform a method of creating cost zones comprising the steps of: identifying a set of nodes on said digital map that are within a predetermined factor of a desired cost of said origin; triangulating said set of nodes to create a set of triangles, said triangles having sides; and inteφolating along a subset of said sides of said triangles to estimate locations on said sides having said desired cost.
17. A computer readable storage medium according to claim 16, wherein said method further comprises the step of: storing a list of said locations in a computer readable storage medium, said list stores latitude and longitude data for said locations.
18. A computer readable storage medium according to claim 16, wherein: said steps of identifying includes the steps of: a) considering said origin as a head node of a priority queue; b) determining for each neighbor node of said head node, a travel cost of traveling from said origin, through said head node and to said neighbor node; c) storing in said priority queue each neighbor node of said head node and said travel cost, if said neighbor node is not already stored in said queue with a lower travel cost; and d) removing said head node from said queue such that said queue has a new head node.
19. A computer readable storage medium according to claim 18, wherein: said step of identifying includes the step of: e) repeating steps b) - d) if said head node's travel cost stored in said queue is less than said predetermined factor of said desired cost.
20. A computer readable storage medium according to claim 16, wherein: said step of triangulating includes creating Delaunay triangles.
21. A computer readable storage medium according to claim 16, wherein: said step of triangulating includes the steps of: adding three nodes to a data structure; creating a triangle out of said three nodes; adding an additional node to said data stmcture; connecting all three vertices of a surrounding triangle to said additional node, if said additional node is within said surrounding triangle; connecting said additional node to all nodes in said data stmcture that said additional node can be connected to by a straight line without intersecting any sides of triangle if said additional node is not within any triangles; connecting said additional node to a vertex opposite a particular side of a particular triangle, if said additional node is on said particular side; and detemύning whether a subset of said triangles in said data stmcture is a Delaunay triangle.
22. A computer readable storage medium according to claim 16, wherein: said step of inteφolating includes the steps of: inteφolating along a first side of a first triangle, said first side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost; inteφolating along a second side of a second triangle, said second side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost, said second triangle sharing said first side with said first triangle; and interpolating along a third side of a third triangle, said third side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost, said third triangle sharing said second side with said second triangle.
23. A computer readable storage medium according to claim 16, wherein: each of said sides of said triangles have two end points, both end points being nodes; and said step of interpolating includes: finding one of said sides having one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost; interpolating along said one side to find a first location along said one side having a cost equal to said desired cost; choosing a triangle that includes said one side; choosing a next side of said chosen triangle, said next side not being said one side, said next side including one end point with a cost less than said desired cost and a second end point having a cost greater than said desired costs; and interpolating along said next side to find a second location along said next side having a third cost equal to said desired cost.
24. An apparatus for creating a cost zone about an origin on a digital map, comprising: means for identifying a set of nodes on said digital map that are within a predetermined factor of a desired cost of said origin; means for triangulating said set of nodes to create a set of triangles, said triangles having sides; and means for inteφolating along a subset of said sides of said triangles to estimate locations on said sides having said desired cost.
25. An apparatus according to claim 24, wherein: each of said sides of said triangles have two end points, both end points having a first cost associated with traveling from said origin to node; and said means for inteφolating includes: means for interpolating along a first side of a first triangle, said first side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost; means for interpolating along a second side of a second triangle, said second side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost, said second triangle sharing said first side with said first triangle; and means for interpolating along a third side of a third triangle, said third side including one end point having a cost less than said desired cost and a second end point having a cost greater than said desired cost, said third triangle sharing said second side with said second triangle.
PCT/US1996/020427 1995-12-29 1996-12-20 Cost zones WO1997024705A1 (en)

Priority Applications (6)

Application Number Priority Date Filing Date Title
EP96944934A EP0870290B1 (en) 1995-12-29 1996-12-20 Cost zones
AT96944934T ATE228696T1 (en) 1995-12-29 1996-12-20 COST RANGES
AU13415/97A AU1341597A (en) 1995-12-29 1996-12-20 Cost zones
JP52448497A JP3703100B2 (en) 1995-12-29 1996-12-20 Method and apparatus for creating cost zone and computer-readable recording medium
DE69625084T DE69625084T2 (en) 1995-12-29 1996-12-20 COST AREAS
CA002240359A CA2240359C (en) 1995-12-29 1996-12-20 Creating cost zones about an origin

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US08/581,169 US5729458A (en) 1995-12-29 1995-12-29 Cost zones
US08/581,169 1995-12-29

Publications (1)

Publication Number Publication Date
WO1997024705A1 true WO1997024705A1 (en) 1997-07-10

Family

ID=24324166

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1996/020427 WO1997024705A1 (en) 1995-12-29 1996-12-20 Cost zones

Country Status (9)

Country Link
US (2) US5729458A (en)
EP (1) EP0870290B1 (en)
JP (1) JP3703100B2 (en)
AT (1) ATE228696T1 (en)
AU (1) AU1341597A (en)
CA (1) CA2240359C (en)
DE (1) DE69625084T2 (en)
WO (1) WO1997024705A1 (en)
ZA (1) ZA9610878B (en)

Families Citing this family (73)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5694322A (en) 1995-05-09 1997-12-02 Highwaymaster Communications, Inc. Method and apparatus for determining tax of a vehicle
US5729458A (en) * 1995-12-29 1998-03-17 Etak, Inc. Cost zones
US5893898A (en) * 1996-07-30 1999-04-13 Alpine Electronics, Inc. Navigation system having intersection routing using a road segment based database
US5878368A (en) * 1996-09-13 1999-03-02 Magellan Dis, Inc. Navigation system with user definable cost values
US5916299A (en) * 1996-11-25 1999-06-29 Etak, Inc. Method for determining exits and entrances for a region in a network
US5978730A (en) * 1997-02-20 1999-11-02 Sony Corporation Caching for pathfinding computation
US8332247B1 (en) * 1997-06-12 2012-12-11 G. William Bailey Methods and systems for optimizing network travel costs
US6016485A (en) * 1998-02-13 2000-01-18 Etak, Inc. System for pathfinding
US6259988B1 (en) * 1998-07-20 2001-07-10 Lockheed Martin Corporation Real-time mission adaptable route planner
US6175803B1 (en) 1998-08-04 2001-01-16 Ford Global Technologies, Inc. Vehicle navigation route generation with user selectable risk avoidance
US6219653B1 (en) 1998-09-15 2001-04-17 Forest Products International Exchange, Inc. Freight calculation system and method of operation
GB2341708B (en) * 1998-09-18 2002-03-27 Ibm Routing system
US6826472B1 (en) 1999-12-10 2004-11-30 Tele Atlas North America, Inc. Method and apparatus to generate driving guides
US6405128B1 (en) 1999-12-20 2002-06-11 Navigation Technologies Corp. Method and system for providing an electronic horizon in an advanced driver assistance system architecture
US6604081B1 (en) 2000-01-04 2003-08-05 Transportation Costing Group, Inc. Method for analyzing profitability of freight load hauling operations
US6744383B1 (en) 2000-02-01 2004-06-01 At&T Wireless Services, Inc. Intelligent roadway system
CA2404140A1 (en) * 2000-03-22 2001-09-27 America To Go Llc Methods and apparatus for on-line ordering
US20020007321A1 (en) * 2000-03-22 2002-01-17 Burton Peter A. Methods and apparatus for on-line ordering
US7003486B1 (en) 2000-04-17 2006-02-21 Neha Net Corp. Net-value creation and allocation in an electronic trading system
US6868400B1 (en) 2000-05-24 2005-03-15 Nehanet Corp. Spread-maximizing travel-services trading system using buyer- and seller-specified multi-attribute values
US6353797B1 (en) 2000-06-01 2002-03-05 Airflash Database minimizing by wireless input of location related information
US6915204B1 (en) 2000-06-01 2005-07-05 Webraska, Inc. Method, system, and article of manufacture for minimizing travel time to a user selected location
JP2002133510A (en) * 2000-07-27 2002-05-10 Sony Corp Moving body rental system, moving body control system, moving body system, moving body controller, moving body rental method, moving body control method, and recording medium
US7092803B2 (en) * 2000-08-18 2006-08-15 Idsc Holdings, Llc Remote monitoring, configuring, programming and diagnostic system and method for vehicles and vehicle components
US6480785B1 (en) 2000-09-06 2002-11-12 Vindigo, Inc. System for determining a route and presenting navigational instructions therefor
JP2002334241A (en) * 2001-05-11 2002-11-22 Mitsubishi Electric Corp Sales support system linked with navigation system and method therefor
US7155321B2 (en) * 2001-08-06 2006-12-26 Idsc Holdings Llc System, method and computer program product for remote vehicle diagnostics, monitoring, configuring and reprogramming
US7283905B1 (en) 2001-12-11 2007-10-16 Garmin Ltd. System and method for estimating impedance time through a road network
US6704645B1 (en) 2001-12-11 2004-03-09 Garmin Ltd. System and method for estimating impedance time through a road network
US6574554B1 (en) * 2001-12-11 2003-06-03 Garmin Ltd. System and method for calculating a navigation route based on non-contiguous cartographic map databases
US6785608B1 (en) 2001-12-19 2004-08-31 Navteq North America, Llc System and method for calculating an optimized route and calculation thereof
US6581003B1 (en) * 2001-12-20 2003-06-17 Garmin Ltd. Systems and methods for a navigational device with forced layer switching based on memory constraints
US6545637B1 (en) 2001-12-20 2003-04-08 Garmin, Ltd. Systems and methods for a navigational device with improved route calculation capabilities
US6975940B1 (en) 2001-12-21 2005-12-13 Garmin Ltd. Systems, functional data, and methods for generating a route
US6847890B1 (en) 2001-12-21 2005-01-25 Garmin Ltd. Guidance with feature accounting for insignificant roads
US6892135B1 (en) 2001-12-21 2005-05-10 Garmin Ltd. Navigation system, method and device with automatic next turn page
US7184886B1 (en) 2001-12-21 2007-02-27 Garmin Ltd. Navigation system, method and device with detour algorithm
US7277794B1 (en) 2001-12-21 2007-10-02 Garmin Ltd. Guidance with feature accounting for insignificant roads
US6999873B1 (en) 2001-12-21 2006-02-14 Garmin Ltd. Navigation system, method and device with detour algorithm
US6714857B2 (en) 2002-02-26 2004-03-30 Nnt, Inc. System for remote monitoring of a vehicle and method of determining vehicle mileage, jurisdiction crossing and fuel consumption
US20030162523A1 (en) * 2002-02-27 2003-08-28 Michael Kapolka Vehicle telemetry system and method
US7221287B2 (en) 2002-03-05 2007-05-22 Triangle Software Llc Three-dimensional traffic report
US20040006424A1 (en) * 2002-06-28 2004-01-08 Joyce Glenn J. Control system for tracking and targeting multiple autonomous objects
US6836781B2 (en) * 2002-09-16 2004-12-28 Navteq North America, Llc Method for streamlined representation of roads in a geographic database
US20060212185A1 (en) * 2003-02-27 2006-09-21 Philp Joseph W Method and apparatus for automatic selection of train activity locations
US7610145B2 (en) 2003-07-25 2009-10-27 Triangle Software Llc System and method for determining recommended departure time
EP1505370B1 (en) * 2003-08-05 2007-10-17 Harman Becker Automotive Systems GmbH Method for processing digital map data
US7908080B2 (en) 2004-12-31 2011-03-15 Google Inc. Transportation routing
US9818120B2 (en) 2015-02-20 2017-11-14 Innovative Global Systems, Llc Automated at-the-pump system and method for managing vehicle fuel purchases
US20070038353A1 (en) * 2005-08-15 2007-02-15 Larschan Bradley R Driver activity and vehicle operation logging and reporting
US7117075B1 (en) * 2005-08-15 2006-10-03 Report On Board Llc Driver activity and vehicle operation logging and reporting
US20070038351A1 (en) * 2005-08-15 2007-02-15 Larschan Bradley R Driver activity and vehicle operation logging and reporting
US8626377B2 (en) 2005-08-15 2014-01-07 Innovative Global Systems, Llc Method for data communication between a vehicle and fuel pump
US20070038338A1 (en) * 2005-08-15 2007-02-15 Larschan Bradley R Driver activity and vehicle operation logging and reporting
US20070106468A1 (en) * 2005-11-07 2007-05-10 France Telecom Product, service and activity based interactive trip mapping system, method, and computer program product
US7925320B2 (en) * 2006-03-06 2011-04-12 Garmin Switzerland Gmbh Electronic device mount
US7761350B1 (en) * 2006-04-26 2010-07-20 Aol Inc. Biasing of search result clustering to ensure more effective point of interest (POI) targeting
US8554475B2 (en) 2007-10-01 2013-10-08 Mitac International Corporation Static and dynamic contours
US20100205019A1 (en) * 2009-02-06 2010-08-12 Lockheed Martin Corporation Architecture and method for combining cost data in automated mission planners
US9046924B2 (en) * 2009-03-04 2015-06-02 Pelmorex Canada Inc. Gesture based interaction with traffic data
US8619072B2 (en) 2009-03-04 2013-12-31 Triangle Software Llc Controlling a three-dimensional virtual broadcast presentation
US8982116B2 (en) * 2009-03-04 2015-03-17 Pelmorex Canada Inc. Touch screen based interaction with traffic data
US10580088B2 (en) * 2010-03-03 2020-03-03 The Western Union Company Vehicle travel monitoring and payment systems and methods
CA2719928A1 (en) * 2010-11-10 2011-01-19 Ibm Canada Limited - Ibm Canada Limitee Navigation on maps of irregular scales or variable scales
WO2012065188A2 (en) 2010-11-14 2012-05-18 Triangle Software Llc Crowd sourced traffic reporting
US9684690B2 (en) 2011-01-12 2017-06-20 Google Inc. Flights search
EP2710571B1 (en) 2011-05-18 2019-11-20 Muddy River, Series 97 of Allied Security Trust 1 System for providing traffic data and driving efficiency data
US8688379B1 (en) * 2012-01-10 2014-04-01 Google Inc. Method and system for generating drive time isocontours using nested graphs
CA2883973C (en) 2012-01-27 2021-02-23 Edgar Rojas Estimating time travel distributions on signalized arterials
US10223909B2 (en) 2012-10-18 2019-03-05 Uber Technologies, Inc. Estimating time travel distributions on signalized arterials
US9430571B1 (en) * 2012-10-24 2016-08-30 Google Inc. Generating travel queries in response to free text queries
US10311756B1 (en) 2013-06-28 2019-06-04 Google Llc Systems, methods, and computer-readable media for validating addresses
JP7424957B2 (en) 2020-10-30 2024-01-30 株式会社日立インダストリアルプロダクツ Transport vehicle control system, operation management device, and transport route generation method

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4829443A (en) * 1987-02-02 1989-05-09 Pitney Bowes Inc. Insertion machine with computerized postage search and prioritized selection of inserts
US5287446A (en) * 1990-10-15 1994-02-15 Sierra On-Line, Inc. System and methods for intelligent movement on computer displays

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5031104A (en) * 1988-12-05 1991-07-09 Sumitomo Electric Industries, Ltd. Adaptive in-vehicle route guidance system
JP3488969B2 (en) * 1994-03-09 2004-01-19 本田技研工業株式会社 Vehicle guidance device
US5712788A (en) * 1995-02-09 1998-01-27 Zexel Corporation Incremental route calculation
US5729458A (en) * 1995-12-29 1998-03-17 Etak, Inc. Cost zones

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4829443A (en) * 1987-02-02 1989-05-09 Pitney Bowes Inc. Insertion machine with computerized postage search and prioritized selection of inserts
US5287446A (en) * 1990-10-15 1994-02-15 Sierra On-Line, Inc. System and methods for intelligent movement on computer displays
US5425139A (en) * 1990-10-15 1995-06-13 Sierra On-Line, Inc. Methods for intelligent movement of objects on computer displays

Also Published As

Publication number Publication date
CA2240359C (en) 2005-09-20
ZA9610878B (en) 1998-01-23
CA2240359A1 (en) 1997-07-10
DE69625084D1 (en) 2003-01-09
JP3703100B2 (en) 2005-10-05
US6026384A (en) 2000-02-15
EP0870290B1 (en) 2002-11-27
JP2000509483A (en) 2000-07-25
EP0870290A1 (en) 1998-10-14
ATE228696T1 (en) 2002-12-15
AU1341597A (en) 1997-07-28
US5729458A (en) 1998-03-17
DE69625084T2 (en) 2003-09-04
EP0870290A4 (en) 1999-03-10

Similar Documents

Publication Publication Date Title
EP0870290B1 (en) Cost zones
US7356405B1 (en) Automated route determination to avoid a particular maneuver
EP1955242B1 (en) Schematic destination maps
US5272638A (en) Systems and methods for planning the scheduling travel routes
US5519619A (en) Route planning method for hierarchical map routing and apparatus therefor
US6377887B1 (en) Caching for pathfinding computation
US5893081A (en) Using multiple levels of costs for a pathfinding computation
US6763301B2 (en) Method and system for compact representation of routes
CN1598490B (en) Method for processing digital map data
CN101936744B (en) Route guidance server, navigation apparatus, route guidance system, and route guidance method
US6038509A (en) System for recalculating a path
EP0854353B1 (en) Route determination in a vehicle navigation system
EP0689034B1 (en) Method for identifying highway access ramps for route calculation in a vehicle navigation system
US5916299A (en) Method for determining exits and entrances for a region in a network
EP1149344B1 (en) Shortcut generator
JPH10504402A (en) A system that combines elements into complex junctions and links in a road network representation for vehicles.
US20040044465A1 (en) Automated route determination based on day of route traversal
FR2760282A1 (en) Dynamic on-board guidance and navigation system for motor vehicles
CN112748736A (en) Vehicle driving assisting method and device
Kazemi et al. Optimal traversal planning in road networks with navigational constraints
Path Finding Paths

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AL AM AT AU AZ BA BB BG BR BY CA CH CN CU CZ DE DK EE ES FI GB GE HU IL IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MD MG MK MN MW MX NO NZ PL PT RO RU SD SE SG SI SK TJ TM TR TT UA UG UZ VN AM AZ BY KG KZ MD RU TJ TM

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): KE LS MW SD SZ UG AT BE CH DE DK ES FI FR GB GR IE IT LU MC NL PT SE BF BJ CF CG CI

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
121 Ep: the epo has been informed by wipo that ep was designated in this application
ENP Entry into the national phase

Ref document number: 2240359

Country of ref document: CA

Ref country code: CA

Ref document number: 2240359

Kind code of ref document: A

Format of ref document f/p: F

WWE Wipo information: entry into national phase

Ref document number: 1996944934

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 1996944934

Country of ref document: EP

REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

WWG Wipo information: grant in national office

Ref document number: 1996944934

Country of ref document: EP