JP5474611B2 - Navigation device and route search method - Google Patents

Navigation device and route search method Download PDF

Info

Publication number
JP5474611B2
JP5474611B2 JP2010047700A JP2010047700A JP5474611B2 JP 5474611 B2 JP5474611 B2 JP 5474611B2 JP 2010047700 A JP2010047700 A JP 2010047700A JP 2010047700 A JP2010047700 A JP 2010047700A JP 5474611 B2 JP5474611 B2 JP 5474611B2
Authority
JP
Japan
Prior art keywords
route
link
branch
search
traffic regulation
Prior art date
Legal status (The legal status 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 status listed.)
Active
Application number
JP2010047700A
Other languages
Japanese (ja)
Other versions
JP2011185601A (en
Inventor
昌樹 谿
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Alpine Electronics Inc
Original Assignee
Alpine Electronics 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 Alpine Electronics Inc filed Critical Alpine Electronics Inc
Priority to JP2010047700A priority Critical patent/JP5474611B2/en
Publication of JP2011185601A publication Critical patent/JP2011185601A/en
Application granted granted Critical
Publication of JP5474611B2 publication Critical patent/JP5474611B2/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Description

本発明は、ナビゲーション装置および経路探索方法に関し、特に、出発地ノードから目的地ノードまで順にリンクコストを加算しながら複数のルートに沿って各ノードを辿っていき、累積コストが最も小さい経路を誘導経路として探索する経路探索機能を備えたナビゲーション装置に用いて好適なものである。   The present invention relates to a navigation device and a route search method, and in particular, follows each node along a plurality of routes while sequentially adding link costs from a departure node to a destination node, and guides a route with the lowest accumulated cost. It is suitable for use in a navigation device having a route search function for searching as a route.

一般にナビゲーション装置が備える経路探索機能では、ダイクストラ法と呼ばれるアルゴリズムが多く用いられている。出発地から目的地までのルートとして採り得る様々な経路の中から最適な経路を算出する方法の1つがダイクストラ法である。   In general, in a route search function provided in a navigation apparatus, an algorithm called Dijkstra method is often used. One of the methods for calculating the optimum route from various routes that can be taken as the route from the starting point to the destination is the Dijkstra method.

ダイクストラ法では、出発地ノードから目的地ノードまで順にリンクコストを加算しながら複数のルートに沿って探索枝を伸ばしていく。探索枝を伸ばしていく過程で、途中同じノードに異なるルートで到着する場合は、そこまでの累積コストが低い方のルートを採用し、累積コストが高い方のルートはそれ以降の探索を中止する。それ以上探索をしても、出発地ノードから目的地ノードまでの最適経路にはなり得ないと考えられるからである。最適経路にはなり得ないと途中で判断されたルートの探索を終了させることを「枝狩り」と呼んでいる。ダイクストラ法では、出発地ノードから目的地ノードまで枝狩りをしながら探索を進めていくため、2地点間の最適経路を効率的に求めることが可能である。   In the Dijkstra method, search branches are extended along a plurality of routes while sequentially adding link costs from a departure node to a destination node. In the process of extending the search branch, if a different route arrives at the same node on the way, the route with the lower cumulative cost is adopted, and the route with the higher cumulative cost is canceled from the subsequent search. . This is because even if searching further, it is considered that the optimum route from the departure node to the destination node cannot be obtained. Terminating the search for a route that is determined to be an optimal route on the way is called “branch hunting”. In the Dijkstra method, the search is advanced while branching from the departure node to the destination node, so that it is possible to efficiently obtain the optimum route between the two points.

なお、出発地から目的地の間にある道路は、道路幅や道路種別などの属性が様々であり、交通規制などが存在する場合もある。道路や車線を細かく分割して表した個々のリンクに付されるリンクコストは、これらの道路属性や交通規制などによって異なる。すなわち、リンクコストは、例えばリンクの距離をもとに、道路幅、道路種別、右折および左折、交通規制などに応じた所定の定数を乗じた値として設定されており、誘導経路として適正の程度を数値化したものである。   The road between the departure point and the destination has various attributes such as road width and road type, and there may be traffic restrictions. The link cost attached to each link expressed by dividing roads and lanes is different depending on these road attributes and traffic regulations. That is, the link cost is set as a value multiplied by a predetermined constant according to the road width, road type, right and left turns, traffic regulations, etc. Is a numerical value.

ところで、道路の中には、歩行者専用道路や単車専用道路、私道なども存在する。従来、このように自動車が通行できない道路も含めて最適な経路を探索できるようにした技術が提案されている(例えば、特許文献1参照)。この特許文献1では、通行不可条件を有するリンクが存在する場合、当該通行不可条件を一時的に解除して探索を行い、探索終了後に、通行可能道路のみを推奨経路として採用するようになされている。   By the way, there are pedestrian roads, single car roads, private roads, etc. among the roads. 2. Description of the Related Art Conventionally, a technique has been proposed in which an optimal route including a road where a vehicle cannot pass can be searched for (see, for example, Patent Document 1). In Patent Document 1, when there is a link having an inaccessible condition, a search is performed by temporarily canceling the inaccessible condition, and after the search is completed, only the accessible road is adopted as a recommended route. Yes.

特開平11−344350号公報JP 11-344350 A

上述のように、ダイクストラ法は、出発地ノードから目的地ノードまで枝狩りをしながら探索を進めていくため、探索枝の候補が爆発的に増えるのを抑え、2地点間の最適経路を効率的に求めることができる。しかしながら、探索の過程で順次に枝狩りをするがゆえに、真に最適な経路を探索することができない場合があるという問題があった。以下に、この問題点を詳しく説明する。   As described above, the Dijkstra method advances the search while branch-hunting from the departure node to the destination node, so that the number of search branch candidates is prevented from increasing explosively and the optimal route between the two points is efficient. Can be obtained. However, since branch hunting is sequentially performed in the search process, there is a problem that a truly optimal route may not be searched. This problem will be described in detail below.

例えば、図8(a)のように中央分離帯によって上下線が分離された道路では、地図データのノードとリンクは図8(b)のようになっている。図8(b)において、L1〜L7はリンクであり、道路や車線を細かく分割して複数のベクトルの繋がりで表わしたときの個々のベクトルに相当する。これらの各リンクL1〜L7に対して、道路属性や交通規制などに応じたリンクコストが設定されている。N1〜N8はノードであり、各リンクの両端点に相当する。   For example, in the road where the upper and lower lines are separated by the central separator as shown in FIG. 8A, the nodes and links of the map data are as shown in FIG. 8B. In FIG. 8B, L1 to L7 are links, which correspond to individual vectors when roads and lanes are finely divided and represented by a connection of a plurality of vectors. For each of these links L1 to L7, link costs corresponding to road attributes, traffic regulations, and the like are set. N1 to N8 are nodes and correspond to both end points of each link.

このように上下線が分離された道路において、交通規制として、図9(a)のようにUターンを禁止する規制が存在したとする。この場合は、図9(b)に示すように、地図データ上でUターン経路を構成する終端リンクに当たるリンクL6に対して、「リンクL7→L4→L6」と経由してきた場合には通過できないという交通規制情報が付されている。   Assume that there is a restriction that prohibits a U-turn as shown in FIG. 9A as a traffic restriction on the road where the vertical lines are separated in this way. In this case, as shown in FIG. 9B, the link L6 corresponding to the terminal link constituting the U-turn path on the map data cannot be passed through the “link L7 → L4 → L6”. The traffic regulation information is attached.

このような道路ネットワークでは、「・・・→L7→L4」の順で探索してきた第1ルートと、「・・・→L5→L4」の順で探索してきた第2ルートとを比較した場合、ダイクストラ法ではリンクL4まで(ノードN4まで)の累積コストが高い方を枝狩りしてしまう。なお、第1ルートと第2ルートとが共にノードN5に到着した時点で枝狩りをしないのは、左折や右折に対してもリンクコストが付されているため、リンクL7からリンクL4への左折というリンクコストを付加した後でなければ、正しい累積コストの比較ができないからである。   In such a road network, when the first route searched in the order of “... → L7 → L4” and the second route searched in the order of “... → L5 → L4” are compared. In the Dijkstra method, the one with the higher accumulated cost up to the link L4 (up to the node N4) is hunted. The reason why the branch is not picked when both the first route and the second route arrive at the node N5 is that the link cost is attached to the left turn and the right turn, so the left turn from the link L7 to the link L4. This is because the correct accumulated cost cannot be compared unless the link cost is added.

ここで、リンクL4までの累積コストを比較した結果、もし、第2ルートの方の累積コストが高い場合は、当該第2ルートは枝狩りされてしまい、それ以上の探索は行われなくなる。しかし、次のリンクL6まで加えた「・・・→L7→L4→L6」の第1ルートと「・・・→L5→L4→L6」の第2ルートとを比較した場合、第1ルートはUターンで通過が禁止されている。そのため、リンクL6の地点で見た場合には、第1ルートよりも第2ルートの方が累積コストが低くなる場合がある。ところが、第2ルートはリンクL4の地点で既に枝狩りされてしまっているため、実際には第2ルートが選ばれることはない。   Here, as a result of comparing the accumulated costs up to the link L4, if the accumulated cost of the second route is higher, the second route is pruned and no further search is performed. However, if the first route “... → L7 → L4 → L6” added up to the next link L6 is compared with the second route “... → L5 → L4 → L6”, the first route is Passing is prohibited on the U-turn. Therefore, when viewed at the point of the link L6, the accumulated cost may be lower for the second route than for the first route. However, since the second route has already been picked at the point of the link L4, the second route is not actually selected.

このような場合には、第1ルートでも第2ルートでもない、別の第3ルートが最適経路として選ばれることになる。例えば、図10のような道路ネットワークで、自車位置(リンクL13)から目的地(リンクL9)までの経路探索を行ったとする。この場合のリンクL4までの最適経路は、「L13→L10→L7→L4」の第1ルートであるものとする。ただし、「L7→L4→L6」のルートには通過禁止の交通規制が付されているため、目的地までの実際の最適経路は、「L13→L8→L5→L4→L6→L9」の第2ルートであるものとする。   In such a case, another third route that is neither the first route nor the second route is selected as the optimum route. For example, it is assumed that a route search from the vehicle position (link L13) to the destination (link L9) is performed on the road network as shown in FIG. In this case, the optimal route to the link L4 is assumed to be the first route of “L13 → L10 → L7 → L4”. However, since the traffic restriction prohibiting passage is attached to the route “L7 → L4 → L6”, the actual optimum route to the destination is “L13 → L8 → L5 → L4 → L6 → L9”. Assume that there are two routes.

このようなケースにおいて、リンクL4の地点で第1ルートと第2ルートとを比較すると、リンクL4までの累積コストは第1ルートよりも第2ルートの方が高いため、第2ルートは枝狩りされる。その後、第1ルートの探索枝はリンクL6まで伸ばされるが、リンクL6に到着するルートには、第1ルートの他にも「L13→L8→L14→L16→L15→L1→L6」という第3ルートが存在する。   In such a case, when the first route and the second route are compared at the point of the link L4, the accumulated cost up to the link L4 is higher in the second route than in the first route. Is done. Thereafter, the search branch of the first route is extended to the link L6, but the route arriving at the link L6 includes a third route “L13 → L8 → L14 → L16 → L15 → L1 → L6” in addition to the first route. A route exists.

このリンクL6の地点で第1ルートと第3ルートとを比較すると、第1ルートは通過禁止の交通規制が設定されているため、累積コストは第3ルートよりも高くなり、第1ルートは枝狩りされる。その結果、第3ルートが最適経路として算出されてしまう。このように、3本以上のリンクにまたがって通過禁止(以下、これを「特殊交通規制」という)が設定されている道路ネットワークの場合、本来の最適経路(第2ルート)が算出されないことがある。   Comparing the first route and the third route at the point of the link L6, the traffic prohibition of passage of the first route is set, so the accumulated cost is higher than the third route, and the first route is Hunted. As a result, the third route is calculated as the optimum route. Thus, in the case of a road network in which passage prohibition (hereinafter referred to as “special traffic regulation”) is set across three or more links, the original optimum route (second route) may not be calculated. is there.

本発明は、このような問題を解決するために成されたものであり、出発地ノードから目的地ノードに到る途中までの累積コストに基づき枝狩りをしながら経路探索を行うアルゴリズムにおいて、特殊交通規制が存在したとしても本来の最適経路を算出できるようにすることを目的とする。   The present invention has been made to solve such a problem. In an algorithm for performing a route search while performing branch hunting based on the accumulated cost from the departure node to the destination node, a special The purpose is to enable the calculation of the original optimum route even if traffic restrictions exist.

上記した課題を解決するために、本発明では、出発地ノードから目的地ノードまで様々なルートのリンクコストを順次加算しながら探索枝を伸ばしていく過程で、3本以上のリンクにまたがって設定された特殊交通規制情報を始端リンクにおいて検出した場合、特殊交通規制が設定されている3本以上のリンクのうち、始端リンクおよび終端リンクを除いた中間リンクにおいて、当該中間リンクに対して探索枝が伸びてきた際の枝狩りを禁止し、当該枝狩りを禁止して探索枝を伸ばしたルートも含めて、出発地ノードから目的地ノードまでのリンクコストの合計が最も小さい経路を探索するようにしている。 In order to solve the above-described problems, in the present invention, in the process of extending the search branch while sequentially adding the link costs of various routes from the departure node to the destination node, it is set across three or more links. when detecting a special traffic regulation information in the starting link, among the three or more links to the special traffic regulation is set, the intermediate link, excluding the start link and the end link, the search branches with respect to the intermediate link Forbid the branch hunting when it grows, and search for the route with the lowest total link cost from the departure node to the destination node, including the route that forbids the branch hunting and extended the search branch I have to.

上記のように構成した本発明によれば、特殊交通規制が存在するために最適経路としては絶対に選択されることがないルート(第1ルートとする)を構成するリンクにおいて複数のルートの累積コストを比較した結果、特殊交通規制の設定されていないルート(第2ルートとする)の方が累積コストが高くて枝狩りされてしまうようなケースであっても、第2ルートも含めて探索枝を伸ばしながら経路探索が行われることとなる。   According to the present invention configured as described above, a plurality of routes are accumulated in a link that constitutes a route (referred to as a first route) that is never selected as the optimum route due to the presence of special traffic regulations. As a result of comparing the costs, even if the route without special traffic regulations (the second route) has a higher accumulated cost and is hunted for branching, the route is searched including the second route. The route search is performed while extending the branch.

このため、探索枝を伸ばした先のリンクにおいて、特殊交通規制の設定された第1ルートよりも累積コストが低くなる第3ルートと、探索枝を伸ばす前のリンクにおいて第1ルートよりも累積コストが高くなっていた第2ルートとが比較され、累積コストの低い方が選択されて累積コストの高い方は枝狩りされる。このとき、第2ルートの方が第3ルートよりも累積コストが低ければ、第1ルートよりも累積コストが高くて枝狩りされていたはずの第2ルートが最適なルートとして選ばれるようになる。これにより、リンク上に特殊交通規制が存在したとしても、真の最適経路を算出することができる。   For this reason, in the link ahead of which the search branch is extended, the cumulative cost is lower than that of the first route in the third route whose cumulative cost is lower than that of the first route in which the special traffic regulation is set, and in the link before the search branch is extended. Is compared with the second route that has been higher, and the lower cumulative cost is selected, and the higher cumulative cost is pruned. At this time, if the accumulated cost of the second route is lower than that of the third route, the second route that should have been branch-hunted because the accumulated cost is higher than the first route is selected as the optimum route. . Thereby, even if special traffic regulations exist on the link, the true optimum route can be calculated.

本実施形態によるナビゲーション装置の機能構成例を示すブロック図である。It is a block diagram which shows the function structural example of the navigation apparatus by this embodiment. 本実施形態による経路探索を行う道路ネットワークの例を示す図である。It is a figure which shows the example of the road network which performs the route search by this embodiment. 本実施形態による経路探索を行う道路ネットワークの例を示す図である。It is a figure which shows the example of the road network which performs the route search by this embodiment. 本実施形態による経路探索例を示す図である。It is a figure which shows the example of a route search by this embodiment. 本実施形態による経路探索例を示す図である。It is a figure which shows the example of a route search by this embodiment. 本実施形態による経路探索例を示す図である。It is a figure which shows the example of a route search by this embodiment. 本実施形態によるナビゲーション装置の動作例(経路探索方法)を示すフローチャートである。It is a flowchart which shows the operation example (route search method) of the navigation apparatus by this embodiment. 道路ネットワークの例を示す図である。It is a figure which shows the example of a road network. 道路ネットワークの例を示す図である。It is a figure which shows the example of a road network. 従来の経路探索例を示す図である。It is a figure which shows the example of the conventional route search.

以下、本発明の一実施形態を図面に基づいて説明する。図1は、本実施形態によるナビゲーション装置の機能構成例を示すブロック図である。図1に示すように、本実施形態のナビゲーション装置10は、その機能構成として、地図読出制御部11、地図メモリ12、位置測定部13、目的地設定部14、経路探索部15および誘導経路メモリ16を備えている。   Hereinafter, an embodiment of the present invention will be described with reference to the drawings. FIG. 1 is a block diagram illustrating a functional configuration example of the navigation device according to the present embodiment. As shown in FIG. 1, the navigation device 10 of the present embodiment includes, as its functional configuration, a map readout control unit 11, a map memory 12, a position measurement unit 13, a destination setting unit 14, a route search unit 15, and a guidance route memory. 16 is provided.

地図読出制御部11は、DVD(Digital Versatile Disk)20に記憶されている地図データの読み出しを制御する。具体的には、地図読出制御部11は、位置測定部13から自車両の現在位置情報を入力し、その車両現在位置を含む所定範囲の地図データの読み出し指示を出力することにより、地図表示や経路探索に必要な地図データをDVD20から読み出して地図メモリ12に格納する。   The map reading control unit 11 controls reading of map data stored in a DVD (Digital Versatile Disk) 20. Specifically, the map reading control unit 11 inputs the current position information of the host vehicle from the position measuring unit 13, and outputs a map data reading instruction within a predetermined range including the current vehicle position, thereby displaying a map display or Map data necessary for route search is read from the DVD 20 and stored in the map memory 12.

地図メモリ12は、本発明の地図データ記憶部に相当するものであり、地図読出制御部11の制御によってDVD20から読み出された地図データを一時的に格納する。地図メモリ12に格納される地図データには、マップマッチングや経路探索等の処理に必要なデータから成る道路ユニットが含まれている。この道路ユニットには、道路や車線を細かく分割して複数のベクトルの繋がりで表わしたときの個々のベクトルに相当するリンクに関する情報と、各リンクの両端点に相当するノードに関する情報とが含まれている。   The map memory 12 corresponds to a map data storage unit of the present invention, and temporarily stores map data read from the DVD 20 under the control of the map read control unit 11. The map data stored in the map memory 12 includes road units composed of data necessary for processing such as map matching and route search. This road unit includes information on links corresponding to individual vectors when roads and lanes are subdivided and represented by a connection of a plurality of vectors, and information on nodes corresponding to both end points of each link. ing.

リンクに関する情報としては、リンクの距離、コスト、道路属性、道路種別などの情報が個々のリンクに対して付与されている。また、3本以上のリンクにまたがって通過禁止などの交通規制が設定されている場合は、その交通規制を表わす特殊交通規制情報が、規制を構成している3本以上のリンクの少なくとも1つに付与されている。本実施形態では、規制を構成している3本以上のリンクのうち終端リンクに特殊交通規制情報が付与されているものとする。   As information about links, information such as link distance, cost, road attribute, road type, and the like is given to each link. In addition, when traffic regulation such as prohibition of passage is set across three or more links, the special traffic regulation information indicating the traffic regulation is at least one of the three or more links constituting the regulation. Has been granted. In the present embodiment, it is assumed that special traffic regulation information is given to the termination link among the three or more links constituting the regulation.

位置測定部13は、車両の現在位置を測定するものであり、自立航法センサ、GPS受信機、位置計算用CPU等で構成されている。自立航法センサは、所定走行距離毎に1個のパルスを出力して車両の移動距離を検出する車速センサ(距離センサ)と、車両の回転角度(移動方位)を検出する振動ジャイロ等の角速度センサ(相対方位センサ)とを含んでいる。自立航法センサは、これらの車速センサおよび角速度センサによって車両の相対位置および方位を検出する。   The position measurement unit 13 measures the current position of the vehicle, and includes a self-contained navigation sensor, a GPS receiver, a position calculation CPU, and the like. The self-contained navigation sensor includes a vehicle speed sensor (distance sensor) that outputs a single pulse for each predetermined travel distance to detect the travel distance of the vehicle, and an angular velocity sensor such as a vibration gyro that detects the rotation angle (movement direction) of the vehicle (Relative orientation sensor). The self-contained navigation sensor detects the relative position and direction of the vehicle using these vehicle speed sensor and angular velocity sensor.

位置計算用CPUは、自立航法センサから出力される自車の相対的な位置および方位のデータに基づいて、絶対的な自車位置(推定車両位置)および車両方位を計算する。また、GPS受信機は、複数のGPS衛星から送られてくる電波をGPSアンテナで受信して、3次元測位処理あるいは2次元測位処理を行って車両の絶対位置および方位を計算する(車両方位は、現時点における自車位置と1サンプリング時間ΔT前の自車位置とに基づいて計算する)。   The position calculation CPU calculates the absolute own vehicle position (estimated vehicle position) and vehicle direction based on the relative position and direction data of the own vehicle output from the self-contained navigation sensor. The GPS receiver receives radio waves transmitted from a plurality of GPS satellites by a GPS antenna and performs a three-dimensional positioning process or a two-dimensional positioning process to calculate the absolute position and direction of the vehicle (the vehicle direction is The calculation is based on the current vehicle position and the current vehicle position one sampling time ΔT before).

目的地設定部14は、ユーザによるリモコン30の操作を通じて、誘導経路の目的地を設定する。経路探索部15は、位置測定部13により測定された車両現在位置を出発地として、当該出発地から目的地設定部14により設定された目的地までを結ぶ最もコストが小さな誘導経路を探索する。そして、経路探索部15は、探索した誘導経路のデータを誘導経路メモリ16に格納する。   The destination setting unit 14 sets the destination of the guidance route through the operation of the remote controller 30 by the user. The route search unit 15 searches for a guide route with the lowest cost connecting from the departure point to the destination set by the destination setting unit 14 using the current vehicle position measured by the position measurement unit 13 as a departure point. Then, the route search unit 15 stores the data of the searched guide route in the guide route memory 16.

経路探索部15は、経路探索のアルゴリズムとしてダイクストラ法を用いる。すなわち、経路探索部15は、出発地ノードから目的地ノードに到る様々なルート上のリンクコストを順次加算し、途中のリンクまでの累積コストに基づき枝狩りをしながら、出発地ノードから目的地ノードまでのリンクコストの合計が最も小さい経路を探索する。   The route search unit 15 uses the Dijkstra method as a route search algorithm. That is, the route search unit 15 sequentially adds link costs on various routes from the departure node to the destination node, and performs branch hunting based on the accumulated cost up to the link on the way, A route having the smallest link cost to the ground node is searched.

このとき経路探索部15は、特殊交通規制情報により交通規制が設定されているリンクにおいて枝狩りを行わずに探索したルートも含めて、出発地ノードから目的地ノードまでのリンクコストの合計が最も小さい経路を探索する。具体的には、経路探索部15は、特殊交通規制情報により交通規制が設定されている3本以上のリンクの終端リンクにおいて、そこに到るまでの様々なルートに関する累積コストの比較を行う際に、特殊交通規制が設定されているリンクにおいて既に枝狩りされたルートを探索対象に復活させて、累積コストの比較を行う。   At this time, the route search unit 15 has the highest total link cost from the departure node to the destination node, including the route searched without branching in the link for which traffic restriction is set by the special traffic restriction information. Search for a small route. Specifically, the route search unit 15 compares the accumulated costs regarding various routes up to the end link of three or more links for which traffic regulation is set by special traffic regulation information. In addition, a route that has already been pruned on a link for which special traffic regulations are set is restored to the search target, and the accumulated costs are compared.

なお、枝狩りしたルートをいつでも復活させることができるように、経路探索の過程で得られる各ルートのデータを、枝狩りしたルートのデータも含めて全て誘導経路メモリ16に格納しておく。そして、出発地から目的地までの経路探索が完了した時点で、枝狩りしたルートに関するデータを誘導経路メモリ16から消去する。   It should be noted that all the data of each route obtained in the route search process, including the data of the route hunted, are stored in the guidance route memory 16 so that the route hunted can be restored at any time. When the route search from the departure point to the destination is completed, the data related to the branch-hunted route is deleted from the guidance route memory 16.

一度枝狩りをしたルートを復活させた後は、その復活させたルートに関して、特殊交通規制が設定されているリンク列上では枝狩りを行わないようにする。復活させたルート上の次のリンクは、特殊交通規制を構成しているリンク列の終端リンクでない可能性もある。そのため、枝狩りを禁止しておかないと、せっかく復活させたルートの探索枝が特殊交通規制の終端リンクまで伸びる前に再び枝狩りされてしまい、復活させたことが無駄になってしまうからである。   After reviving a route that once picked a branch, branch hunting should not be performed on the link row for which special traffic regulations are set for the revived route. The next link on the revived route may not be the end link of the link train constituting the special traffic regulation. Therefore, if branch hunting is not prohibited, the search branch of the restored route will be picked again before extending to the end link of the special traffic regulation, and it will be useless that it has been restored. is there.

なお、復活させたルートに関して、特殊交通規制が設定されているリンク列の全てにおいて枝狩りを禁止するようにしてもよいが、当該リンク列のうち終端リンクにおいては枝狩りを許可するようにしてもよい。終端リンクで枝狩りをしても、復活させたルートの探索枝が特殊交通規制の終端リンクまで伸びる前に再び枝狩りされてしまうことがないからである。本実施形態では、終端リンクでは枝狩りを許可するものとして説明する。   In addition, regarding the restored route, branch hunting may be prohibited in all link trains for which special traffic regulations are set, but branch hunting is permitted in the end link in the link train. Also good. This is because even if branch hunting is performed at the end link, the searched branch of the restored route is not picked again before reaching the end link of the special traffic regulation. In the present embodiment, description will be made assuming that branch hunting is permitted in the termination link.

以下に、例を挙げて実際の動作を説明する。例えば、図2のような道路ネットワークが存在し、Uターン経路を構成する終端リンクに当たるリンクL7に対して、「リンクL8→L5→L4→L7」と経由してきた場合には通過できないという特殊交通規制情報が付されているものとする。このような道路ネットワークを有する地図データに基づいて経路探索部15が誘導経路の探索を行った場合、探索の途中で、図3のように2つのルート(第1ルートおよび第2ルート)に沿って探索枝がリンクL5まで伸びてきたとする。   The actual operation will be described below with an example. For example, when there is a road network as shown in FIG. 2 and a link L7 corresponding to a terminal link constituting a U-turn route is passed through “link L8 → L5 → L4 → L7”, special traffic that cannot pass It is assumed that regulatory information is attached. When the route search unit 15 searches for a guidance route based on map data having such a road network, along the two routes (first route and second route) as shown in FIG. 3 during the search. Assume that the search branch extends to the link L5.

第1ルートは、「・・・→L8→L5」の順で探索枝が伸びてきてリンクL5に到着したルートである。一方、第2ルートは、「・・・→L6→L5」の順で探索枝が伸びてきてリンクL5に到着したルートである。これら第1ルートと第2ルートとでリンクL5までの累積コストを比較した結果、第1ルートの方が累積コストが低かったとすると、この時点で経路探索部15は第2ルートを枝狩りし、第1ルートを選択する。   The first route is a route in which the search branches extend in the order of “... → L8 → L5” and arrive at the link L5. On the other hand, the second route is a route in which the search branch extends in the order of “... → L6 → L5” and arrives at the link L5. As a result of comparing the accumulated costs up to the link L5 between the first route and the second route, if the accumulated cost of the first route is lower, the route search unit 15 branches the second route at this point, Select the first route.

経路探索部15は、選択した第1ルートに対して引き続き探索処理を行う。そして、図4のようにリンクL7まで探索枝が伸びてきたとき、経路探索部15はリンクL7に対して特殊交通規制情報が付与されていることを検知する。これに応じて経路探索部15は、検知した特殊交通規制情報に基づき交通規制が設定されているリンクL5において既に枝狩りされた第2ルートを、図5のように探索対象に復活させる。   The route search unit 15 continues the search process for the selected first route. When the search branch extends to the link L7 as shown in FIG. 4, the route search unit 15 detects that the special traffic regulation information is given to the link L7. In response to this, the route search unit 15 restores the second route that has already been hunted in the link L5 for which traffic regulation is set based on the detected special traffic regulation information to the search target as shown in FIG.

経路探索部15は、探索対象に復活させた第2ルートに対して探索処理を再開する。これにより、リンクL5で一度枝狩りされた第2ルートの探索枝が、リンクL4まで伸ばされる。この場合、リンクL4は既に第1ルートで探索済みであるが、リンクL4は特殊交通規制を構成するリンク列の1つで、かつ、終端リンクではないため、この時点で第2ルートの枝狩りは実行しない。   The route search unit 15 resumes the search process for the second route restored to the search target. Thereby, the search branch of the second route once picked by the link L5 is extended to the link L4. In this case, the link L4 has already been searched for in the first route, but the link L4 is one of the link trains constituting the special traffic regulation and is not a terminal link. Does not execute.

続いて、経路探索部15は、図6のように第2ルートの探索枝をリンクL7まで伸ばす。リンクL7は特殊交通規制を構成するリンク列の終端リンクに相当するため、経路探索部15は枝狩りを実行する。すなわち、経路探索部15は、第1ルートと第2ルートとでリンクL7までの累積コストを比較し、累積コストが低い方を選択して累積コストが高い方を枝狩りする。ここでは第1ルートの方に特殊交通規制が設定されているため、リンクL7までの累積コストが第2ルートよりも高くなる。その結果、経路探索部15は第1ルートを枝狩りして、第2ルートを選択する。   Subsequently, the route search unit 15 extends the search branch of the second route to the link L7 as shown in FIG. Since the link L7 corresponds to the end link of the link train constituting the special traffic regulation, the route search unit 15 performs branch hunting. That is, the route search unit 15 compares the accumulated costs up to the link L7 between the first route and the second route, selects the lower accumulated cost, and hunts the higher accumulated cost. Here, since the special traffic regulation is set for the first route, the accumulated cost to the link L7 is higher than that for the second route. As a result, the route search unit 15 branches the first route and selects the second route.

なお、ここでは第1ルートと第2ルートとの2つのルートについて累積コストの比較を行うものとして説明したが、それ以外のルート(例えば、「・・・→L8→L2→・・・→L1→L7」という第3ルート)もあれば、その第3ルートも含めて累積コストの比較を行う。すなわち、経路探索部15は、探索枝を伸ばした先のリンクL7において、特殊交通規制の設定された第1ルートと、それよりも累積コストが低くなる第3ルートと、復活させた第2ルートとを比較する。このとき、第2ルートの方が第3ルートよりも累積コストが低ければ、経路探索部15は第1ルートおよび第3ルートを枝狩りして、第1ルートよりも累積コストが高くて一度は枝狩りされた第2ルートを最適なルートとして選択する。   Here, although it has been described that the accumulated costs are compared for the two routes, the first route and the second route, other routes (for example, “... → L8 → L2 →... → L1 If there is a third route (→ L7)), the accumulated costs are compared including the third route. That is, the route search unit 15 uses the first route for which the special traffic regulation is set, the third route whose accumulated cost is lower, and the restored second route in the link L7 to which the search branch is extended. And compare. At this time, if the accumulated cost of the second route is lower than that of the third route, the route search unit 15 branches the first route and the third route, and the accumulated cost is higher than the first route. The second route that has undergone branch picking is selected as the optimum route.

このように、本実施形態によれば、特殊交通規制が存在するために最適経路としては絶対に選択されることがない第1ルートを構成するリンクL5において第1ルートと第2ルートとの累積コストを比較した結果、特殊交通規制の設定されていない第2ルートの方が累積コストが高くて枝狩りされてしまうようなケースであっても、第2ルートも含めて探索枝を伸ばしながら、最適な経路の探索を行うことができる。つまり、経路探索部15は第2ルートを最適経路として選択し、引き続き目的地までの経路を探索することができる。   Thus, according to the present embodiment, the accumulation of the first route and the second route in the link L5 that constitutes the first route that is never selected as the optimum route due to the presence of special traffic regulations. As a result of comparing the costs, even if the second route without special traffic regulations has a higher accumulated cost and the branch is hunted, while extending the search branch including the second route, It is possible to search for an optimum route. That is, the route search unit 15 can select the second route as the optimum route and continuously search for the route to the destination.

なお、図5では説明を省略したが、探索枝がリンクL7まで伸びてきたときに特殊交通規制情報を検知することによって復活されるルートは、リンクL5で枝狩りされた第2ルートの他に、リンクL8で枝狩りされたルート(図示せず)も存在する。ただし、リンクL8で復活したルートは、その後はリンクをL5→L4→L7のように辿ることになるので(リンクL5,L4は終端リンクではないので枝狩りされない)、第1ルートと同様に特殊交通規制により通過できないルートとなり、リンクL7において枝狩りされる。   Although explanation is omitted in FIG. 5, the route restored by detecting the special traffic regulation information when the search branch extends to the link L7 is not limited to the second route hunted at the link L5. There is also a route (not shown) that has been branch-hunted at the link L8. However, since the route revived by the link L8 will follow the link as L5 → L4 → L7 (the links L5 and L4 are not end links and are not hunted for branching). The route cannot pass due to traffic restrictions and is hunted on a link L7.

このようにいずれは枝狩りされることが分かっているルートについて探索枝を無駄に伸ばしていくことを防ぐために、特殊交通規制を構成するリンク列の始端リンクL8に対して、特殊交通規制を構成するリンク列の始端リンクであることを示す情報を持たせる。そして、特殊交通規制を構成するリンク列の終端リンクのみならず、始端リンクにおいても枝狩りを許可する(すなわち、始端リンクおよび終端リンクを除く中間リンクにおいてのみ枝狩りを禁止する)ようにしてもよい。   In this way, in order to prevent the search branch from being unnecessarily extended for a route that is known to be pruned, special traffic regulation is configured for the start link L8 of the link train that constitutes the special traffic regulation. Information indicating that the link is the start link of the link sequence to be performed. Further, branching is permitted not only at the end link of the link train constituting the special traffic regulation but also at the starting link (that is, branching is prohibited only at the intermediate link excluding the starting link and the terminating link). Good.

図7は、本実施形態によるナビゲーション装置10の動作例(経路探索方法)を示すフローチャートである。図7に示すフローチャートは、誘導経路の目的地を設定して経路探索の指示を出したときにスタートする。図7において、経路探索部15は、出発地ノードから順に探索枝を1つ先のリンクに伸ばし、伸ばしたリンクまでの累積コストを算出する(ステップS1)。   FIG. 7 is a flowchart showing an operation example (route search method) of the navigation device 10 according to the present embodiment. The flowchart shown in FIG. 7 starts when the destination of the route search is issued after setting the destination of the guidance route. In FIG. 7, the route search unit 15 extends the search branch to the next link in order from the departure point node, and calculates the accumulated cost up to the extended link (step S1).

また、経路探索部15は、伸ばした先のリンクに対して特殊交通規制情報が付与されているか否かを判定する(ステップS2)。リンクに対して特殊交通規制情報が付与されていなければ、そのリンクは特殊交通規制を構成している終端リンクではない。この場合、経路探索部15は、そのリンクに到着するルートが複数あるときは、そのリンクに到るまでの複数のルートに関する累積コストの比較を行う。そして、当該累積コストが高いルートを枝狩りし、累積コストが最も低いルート選択する(ステップS3)。   Moreover, the route search part 15 determines whether special traffic regulation information is provided with respect to the extended destination link (step S2). If the special traffic regulation information is not given to the link, the link is not a terminal link constituting the special traffic regulation. In this case, when there are a plurality of routes arriving at the link, the route search unit 15 compares the accumulated costs regarding the plurality of routes up to the link. Then, the route with the highest accumulated cost is pruned and the route with the lowest accumulated cost is selected (step S3).

次に、経路探索部15は、探索枝が目的地まで伸びたか否か、つまり、出発地から目的地までの経路探索が完了したか否かを判定する(ステップS4)。探索枝がまだ目的地まで伸びていなければ、処理はステップS1に戻る。そして、経路探索部15は、枝狩りをせずに選択したルートに対して引き続き探索処理を行う。すなわち、探索枝を更に1つ先のリンクまで伸ばし、伸ばしたリンクまでの累積コストを算出する。   Next, the route search unit 15 determines whether or not the search branch has extended to the destination, that is, whether or not the route search from the departure point to the destination has been completed (step S4). If the search branch has not yet reached the destination, the process returns to step S1. Then, the route search unit 15 continues the search process for the selected route without branching. That is, the search branch is further extended to the next link, and the accumulated cost to the extended link is calculated.

そして、伸ばした先のリンクに対して特殊交通規制情報が付与されているか否かを再び判定する(ステップS2)。ここで、リンクに対して特殊交通規制情報が付与されていれば、そのリンクは特殊交通規制を構成している終端リンクである。この場合、経路探索部15は、特殊交通規制が設定されているリンク列の何れかにおいて既に枝狩りされたルートを復活させる(ステップS5)。   Then, it is determined again whether or not special traffic regulation information is given to the extended link (step S2). Here, if the special traffic regulation information is given to the link, the link is a terminal link constituting the special traffic regulation. In this case, the route search unit 15 restores a route that has already been pruned in any of the link trains for which special traffic regulations are set (step S5).

枝狩りされたルートを復活させたら、経路探索部15は、その復活させたルートの探索枝を1つ先のリンクまで伸ばし、伸ばしたリンクまでの累積コストを算出する(ステップS6)。ここで、伸ばした先のリンクが、特殊交通規制が設定されているリンク列のうち終端リンクであるか否かを判定する(ステップS7)。なお、伸ばした先のリンクに対して特殊交通規制情報が付与されていれば、そのリンクは終端リンクであると判断できる。   After restoring the branch-hunted route, the route search unit 15 extends the searched branch of the restored route to the next link, and calculates the accumulated cost up to the extended link (step S6). Here, it is determined whether or not the extended link is a terminal link in the link train for which special traffic regulation is set (step S7). If special traffic regulation information is given to the extended link, it can be determined that the link is a terminal link.

復活させたルートについて伸ばしたリンクが終端リンクでない場合、その時点での枝狩りは禁止されているので、そのまま処理はステップS6に戻る。すなわち、探索枝を更に1つ先のリンクまで伸ばし、伸ばしたリンクまでの累積コストを算出する。一方、復活させたルートについて伸ばしたリンクが終端リンクである場合、処理はステップS3に遷移する。以上のようなステップS1〜S7の処理を行って探索枝を順に伸ばしながら途中で枝狩りをしていき、目的地まで探索枝が伸ばされると、一連の経路探索処理が終了する。   If the link extended for the restored route is not the terminal link, branch picking at that time is prohibited, and the process returns to step S6. That is, the search branch is further extended to the next link, and the accumulated cost to the extended link is calculated. On the other hand, when the link extended about the restored route is a termination link, the process proceeds to step S3. When the above steps S1 to S7 are performed and the search branches are sequentially extended, the branches are picked on the way, and when the search branches are extended to the destination, a series of route search processes are completed.

以上詳しく説明したように、本実施形態では、出発地ノードから目的地ノードまで様々なルートのリンクコストを順次加算しながら探索枝を伸ばしていく過程で、リンクに付与された特殊交通規制情報を検出した場合、当該特殊交通規制情報により交通規制が設定されているリンクにおいて枝狩りされたルートを復活させて、出発地ノードから目的地ノードまでのリンクコストの合計が最も小さい経路を探索するようにしている。   As described above in detail, in this embodiment, in the process of extending the search branch while sequentially adding the link costs of various routes from the departure node to the destination node, the special traffic regulation information given to the link is displayed. If detected, the route that has been pruned in the link for which traffic regulation is set by the special traffic regulation information is restored, and the route with the smallest total link cost from the departure node to the destination node is searched. I have to.

このように構成した本実施形態によれば、特殊交通規制が存在するために最適経路としては絶対に選択されることがないルート(第1ルート)よりも、特殊交通規制の設定されていないルート(第2ルート)の方が累積コストが高くて枝狩りされてしまうようなケースであっても、当該第2ルートも含めて探索枝を伸ばしながら最適な経路を探索することができる。これにより、リンク上に特殊交通規制が存在したとしても、真の最適経路を算出することができる。   According to the present embodiment configured as described above, a route with no special traffic regulation is set rather than a route (first route) that is never selected as an optimum route because special traffic regulation exists. Even in the case where the accumulated cost is higher for the (second route), it is possible to search for the optimum route while extending the search branch including the second route. Thereby, even if special traffic regulations exist on the link, the true optimum route can be calculated.

なお、上記実施形態では、特殊交通規制が設定されているリンク列の何れかにおいて枝狩りされたルートを復活させる例について説明したが、本発明はこれに限定されない。例えば、特殊交通規制が設定されている3本以上のリンクうち、始端リンクおよび終端リンクを除いた中間リンクにおいて枝狩りされたルートのみを復活させるようにしてもよい。始端リンクおよび終端リンクで枝狩りされたルートを復活させても意味がないからである。   In addition, although the said embodiment demonstrated the example which resurrected the route which carried out the branch hunting in any of the link queue | trains with which special traffic regulation is set, this invention is not limited to this. For example, among the three or more links for which special traffic regulations are set, only the route that has been branch-hunted in the intermediate link excluding the start link and the end link may be restored. This is because it does not make sense to restore the route that was pruned at the start and end links.

すなわち、始端リンクで枝狩りされたルートを復活させても、探索枝を伸ばした先の終端リンクに付与されている特殊交通規制情報に基づき結局は枝狩りされる。一方、終端リンクで枝狩りされたルートについては、特殊交通規制を構成するルート以外の別のルートよりも累積コストが高いということであるから、終端リンクで枝狩りされたルートを復活させても、結局はその別のルートよりも累積コストが高くなって枝狩りされる。よって、始端リンクおよび終端リンクで枝狩りされたルートを復活させないようにすることで、意味のない無駄な処理を省くことができ、最適な経路を効率的に求めることができる。   That is, even if the route picked at the start link is revived, the route is eventually picked based on the special traffic regulation information given to the end link to which the search branch is extended. On the other hand, the route that has been pruned at the end link has a higher accumulated cost than other routes other than those that constitute the special traffic regulations. Eventually, the cost is higher than that of the other route, and the branches are hunted. Therefore, by not restoring the route that is pruned at the start link and the end link, it is possible to omit useless processing that is meaningless and to obtain an optimum route efficiently.

また、上記実施形態では、特殊交通規制を構成している3本以上のリンクのうち終端リンクに特殊交通規制情報が付与されており、特殊交通規制情報を検出したときに、既に枝狩りされたルートを復活させる例について説明したが、本発明はこれに限定されない。例えば、終端リンクに代えてまたは加えて、始端リンクに特殊交通規制情報を付与するようにしてもよい。この場合、経路探索部15は、始端リンクに特殊交通規制情報が付与されていることを検知したときに、特殊交通規制が設定されているリンク列での枝狩りを禁止して経路探索を行う。なお、特殊交通規制を構成しているリンク列のうち、始端リンクおよび終端リンクを除いた中間リンクにおいてのみ枝狩りを禁止するようにしてもよい。   Moreover, in the said embodiment, special traffic regulation information is provided to the termination link among three or more links which constitute special traffic regulation, and when special traffic regulation information was detected, it was already pruned. Although an example of restoring the route has been described, the present invention is not limited to this. For example, instead of or in addition to the end link, special traffic regulation information may be given to the start link. In this case, when the route search unit 15 detects that the special traffic regulation information is given to the starting link, the route search unit 15 performs a route search by prohibiting branch hunting in the link row in which the special traffic regulation is set. . In addition, you may make it prohibit branching only in the intermediate link except the start end link and the termination | terminus link among the link strings which comprise special traffic regulation.

また、上記実施形態では、リンクに関する情報として特殊交通規制情報を持つ例について説明したが、ノードに関する情報として特殊交通規制情報を持つようにしてもよい。   Moreover, although the said embodiment demonstrated the example which has special traffic regulation information as information regarding a link, you may make it have special traffic regulation information as information regarding a node.

また、上記実施形態では、ダイクストラ法により経路探索を行う例について説明したが、本発明が適用できるアルゴリズムはこれに限定されない。すなわち、出発地ノードから目的地ノードまで順に複数のルートに沿って探索枝を伸ばしていく過程で枝狩りをし、最終的にリンクコストの合計が最小となるルートを探索するアルゴリズムであれば、本発明を適用することが可能である。   Moreover, although the said embodiment demonstrated the example which performs a route search by the Dijkstra method, the algorithm which can apply this invention is not limited to this. In other words, if the algorithm is to hunt branches in the process of extending the search branch along a plurality of routes in order from the departure node to the destination node, and finally search for a route with the minimum link cost, The present invention can be applied.

その他、上記実施形態は、何れも本発明を実施するにあたっての具体化の一例を示したものに過ぎず、これによって本発明の技術的範囲が限定的に解釈されてはならないものである。すなわち、本発明はその精神、またはその主要な特徴から逸脱することなく、様々な形で実施することができる。   In addition, each of the above-described embodiments is merely an example of implementation in carrying out the present invention, and the technical scope of the present invention should not be construed in a limited manner. In other words, the present invention can be implemented in various forms without departing from the spirit or main features thereof.

10 ナビゲーション装置
12 地図メモリ(地図データ記憶部)
15 経路探索部
10 navigation device 12 map memory (map data storage unit)
15 Route search unit

Claims (2)

3本以上のリンクにまたがって設定された交通規制を表わす特殊交通規制情報が上記3本以上のリンクのうち始端リンクに付与されて成る地図データを記憶する地図データ記憶部と、
上記地図データに含まれる出発地ノードから目的地ノードに到る様々なルート上のリンクコストを順次加算し、途中のリンクまでの累積コストに基づき枝狩りをしながら上記目的地ノードまでのリンクコストの合計が最も小さい経路を探索する経路探索部とを備え、
上記経路探索部は、上記3本以上のリンクのうち始端リンクに上記特殊交通規制情報が付与されていることを検知した場合、当該3本以上のリンクのうち、始端リンクおよび終端リンクを除いた中間リンクにおいて、当該中間リンクに対して探索枝が伸びてきた際の枝狩りを禁止し、当該枝狩りを禁止して探索したルートも含めて、上記出発地ノードから上記目的地ノードまでのリンクコストの合計が最も小さい経路を探索することを特徴とするナビゲーション装置。
A map data storage unit that stores map data in which special traffic regulation information representing traffic regulation set across three or more links is given to the starting link among the three or more links;
Link costs on various routes from the departure node to the destination node included in the map data are sequentially added, and the link cost to the destination node is hunted based on the accumulated cost up to the middle link. A route search unit that searches for a route having the smallest sum of
When the route search unit detects that the special traffic regulation information is given to the starting link among the three or more links, the starting link and the terminating link are excluded from the three or more links. In an intermediate link, a link from the departure node to the destination node is also included, including a route searched by prohibiting branch hunting when the search branch extends with respect to the intermediate link, and prohibiting the branch hunting. A navigation device characterized by searching for a route having the smallest total cost.
3本以上のリンクにまたがって設定された交通規制を表わす特殊交通規制情報が上記3本以上のうち始端リンクに付与されて成る地図データに基づいて、出発地ノードから目的地ノードに到る様々なルート上のリンクコストを順次加算し、途中のリンクまでの累積コストに基づき枝狩りをしながら上記目的地ノードまでのリンクコストの合計が最も小さい経路を探索するナビゲーション装置の経路探索方法であって、
上記ナビゲーション装置の経路探索部が、上記3本以上のリンクのうち始端リンクに上記特殊交通規制情報が付与されているか否かを判定する第1のステップと、
上記経路探索部が、上記始端リンクにおいて上記特殊交通規制情報を検出した場合、上記交通規制が設定されている上記3本以上のリンクのうち、始端リンクおよび終端リンクを除いた中間リンクにおいて、当該中間リンクに対して探索枝が伸びてきた際の枝狩りを禁止する第2のステップと、
上記経路探索部が、上記枝狩りを禁止して探索枝を伸ばしたルートを含めて、上記終端リンクに到るまでの様々なルートに関する累積コストの比較を行い、当該累積コストが高いルートを枝狩りする第3のステップとを有することを特徴とする経路探索方法。
Various traffic from the departure node to the destination node based on the map data in which special traffic regulation information representing traffic regulation set over three or more links is given to the starting link among the three or more links. This is a route search method for a navigation device that sequentially adds the link costs on a simple route and searches for the route with the smallest total link cost to the destination node while pruning based on the accumulated cost up to the intermediate link. And
A first step in which the route search unit of the navigation device determines whether or not the special traffic regulation information is given to the starting link among the three or more links;
The route search unit, when detecting the specific traffic control information in the beginning link, among the three or more links in which the traffic regulation is set, the intermediate link, excluding the start link and the end link, the A second step of prohibiting branch hunting when the search branch extends with respect to the intermediate link ;
The route search unit compares the accumulated costs regarding various routes up to the end link, including the route where the branching is forbidden by prohibiting the branch hunting, and the route having the higher accumulated cost is branched. A route search method comprising: a third step of hunting.
JP2010047700A 2010-03-04 2010-03-04 Navigation device and route search method Active JP5474611B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2010047700A JP5474611B2 (en) 2010-03-04 2010-03-04 Navigation device and route search method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2010047700A JP5474611B2 (en) 2010-03-04 2010-03-04 Navigation device and route search method

Publications (2)

Publication Number Publication Date
JP2011185601A JP2011185601A (en) 2011-09-22
JP5474611B2 true JP5474611B2 (en) 2014-04-16

Family

ID=44792101

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2010047700A Active JP5474611B2 (en) 2010-03-04 2010-03-04 Navigation device and route search method

Country Status (1)

Country Link
JP (1) JP5474611B2 (en)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103917847B (en) * 2011-11-10 2017-03-01 三菱电机株式会社 Guider and method
JP5762554B2 (en) * 2011-11-10 2015-08-12 三菱電機株式会社 Navigation apparatus and method
JP6174502B2 (en) * 2014-02-21 2017-08-02 株式会社ゼンリン Route search device, route search method, computer program, and data structure
JP6446503B2 (en) * 2017-06-01 2018-12-26 株式会社ゼンリン Route search device, route search method, computer program, and data structure

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2798828B2 (en) * 1991-10-22 1998-09-17 アルパイン株式会社 In-vehicle navigator
JPH07294267A (en) * 1994-04-28 1995-11-10 Pioneer Electron Corp Method and apparatus for setting route
JP3381459B2 (en) * 1995-05-30 2003-02-24 株式会社デンソー Travel guide device for vehicles
JP3983049B2 (en) * 2001-12-21 2007-09-26 株式会社ゼンリン Route search device
JP2007256402A (en) * 2006-03-22 2007-10-04 Zenrin Co Ltd Map data generating device

Also Published As

Publication number Publication date
JP2011185601A (en) 2011-09-22

Similar Documents

Publication Publication Date Title
JP6472355B2 (en) Navigation server, navigation client and navigation method
US10614600B2 (en) Graph based topological map matching
JP5831290B2 (en) Branch probability prediction device
JP6229523B2 (en) Own vehicle traveling position specifying device and own vehicle traveling position specifying program
CN106662457B (en) Destination estimation system and destination estimation method
US9157753B2 (en) Navigation system, recording medium recording computer program, and current position calculation method
US20240019261A1 (en) Methods and Systems for Determining Safe Return Range
JP5474611B2 (en) Navigation device and route search method
JP7173750B2 (en) Map information generation device, automatic driving system, and automatic driving control information generation device
CN107850457B (en) Route search device and route search method
JP3885787B2 (en) Travel route estimation method, center device and program in travel route estimation system
JP2012122760A (en) Own-vehicle position recognition system, own-vehicle position recognition program and own-vehicle position recognition method
CN110530382A (en) Travel information acquisition methods, device and equipment
JP5597080B2 (en) Computer program, map display device, and method for map data to be processed by map display device
KR20120134435A (en) Method of deciding going in and out building of vehicle using altitude information in navigation system and apparatus therof
JP7077068B2 (en) Guidance system and guidance program
JP6806507B2 (en) Vehicle position estimation device
JP5064301B2 (en) Navigation device, method thereof and program thereof
JP6472366B2 (en) Navigation server and navigation system
US9689689B2 (en) Navigation device and program for performing route guidance along a route using, as a recognized road, an extension road not actually traveled which extends straight from and is continuous with a road actually traveled
JPH09229698A (en) Position sensing device
JP2022124003A (en) Navigation device and route search method
JPH10185601A (en) Position detecting device
JP2021025796A (en) Navigation system, navigation method, and program
KR20110092084A (en) Center path based map matching system and method thereof

Legal Events

Date Code Title Description
A621 Written request for application examination

Free format text: JAPANESE INTERMEDIATE CODE: A621

Effective date: 20121022

A977 Report on retrieval

Free format text: JAPANESE INTERMEDIATE CODE: A971007

Effective date: 20130918

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20130924

A521 Written amendment

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20131111

TRDD Decision of grant or rejection written
A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

Effective date: 20140204

A61 First payment of annual fees (during grant procedure)

Free format text: JAPANESE INTERMEDIATE CODE: A61

Effective date: 20140205

R150 Certificate of patent or registration of utility model

Ref document number: 5474611

Country of ref document: JP

Free format text: JAPANESE INTERMEDIATE CODE: R150

Free format text: JAPANESE INTERMEDIATE CODE: R150