CN106052692A - Shortest route planning and navigating method and system - Google Patents

Shortest route planning and navigating method and system Download PDF

Info

Publication number
CN106052692A
CN106052692A CN201610340524.4A CN201610340524A CN106052692A CN 106052692 A CN106052692 A CN 106052692A CN 201610340524 A CN201610340524 A CN 201610340524A CN 106052692 A CN106052692 A CN 106052692A
Authority
CN
China
Prior art keywords
network
path
weights
shortest
special joint
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.)
Pending
Application number
CN201610340524.4A
Other languages
Chinese (zh)
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.)
China University of Geosciences
Original Assignee
China University of Geosciences
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 China University of Geosciences filed Critical China University of Geosciences
Priority to CN201610340524.4A priority Critical patent/CN106052692A/en
Publication of CN106052692A publication Critical patent/CN106052692A/en
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G01MEASURING; TESTING
    • G01CMEASURING DISTANCES, LEVELS OR BEARINGS; SURVEYING; NAVIGATION; GYROSCOPIC INSTRUMENTS; PHOTOGRAMMETRY OR VIDEOGRAMMETRY
    • G01C21/00Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00
    • G01C21/20Instruments for performing navigational calculations
    • GPHYSICS
    • G01MEASURING; TESTING
    • G01CMEASURING DISTANCES, LEVELS OR BEARINGS; SURVEYING; NAVIGATION; GYROSCOPIC INSTRUMENTS; PHOTOGRAMMETRY OR VIDEOGRAMMETRY
    • G01C21/00Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00
    • G01C21/20Instruments for performing navigational calculations
    • G01C21/206Instruments for performing navigational calculations specially adapted for indoor navigation
    • GPHYSICS
    • G01MEASURING; TESTING
    • G01CMEASURING DISTANCES, LEVELS OR BEARINGS; SURVEYING; NAVIGATION; GYROSCOPIC INSTRUMENTS; PHOTOGRAMMETRY OR VIDEOGRAMMETRY
    • G01C21/00Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00
    • G01C21/26Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00 specially adapted for navigation in a road network
    • G01C21/34Route searching; Route guidance
    • G01C21/3446Details of route searching algorithms, e.g. Dijkstra, A*, arc-flags, using precalculated routes
    • GPHYSICS
    • G01MEASURING; TESTING
    • G01CMEASURING DISTANCES, LEVELS OR BEARINGS; SURVEYING; NAVIGATION; GYROSCOPIC INSTRUMENTS; PHOTOGRAMMETRY OR VIDEOGRAMMETRY
    • G01C21/00Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00
    • G01C21/26Navigation; Navigational instruments not provided for in groups G01C1/00 - G01C19/00 specially adapted for navigation in a road network
    • G01C21/34Route searching; Route guidance
    • G01C21/36Input/output arrangements for on-board computers
    • G01C21/3605Destination input or retrieval
    • G01C21/3617Destination input or retrieval using user history, behaviour, conditions or preferences, e.g. predicted or inferred from previous use or current movement

Abstract

The invention relate to a shortest route planning and navigating method. The method comprises the following steps: step one, according to the user preference, adding a user preference weight to a route distance weight, and using a formula: M(n)=P(n)+Q(n)*A to preprocessing the data to obtain a comprehensive evaluation weight M(n); step two, selecting a special node that a user has to pass by, taking the special node as the cutting point, cutting the road network into a first network and a second network by the cutting point, wherein the first network is a node network from the start point to the special node, and the second network is a node network from the special node to the final point; step three, replacing the route distance weight P(n) in Dijkstra algorithm by the comprehensive evaluation weight M(n) obtained in the step one, and then using the improved Dijkstra algorithm to carry out shortest route on the first network and the second network so as to obtain the shortest route from the start point to the special node to the final point.

Description

A kind of shortest path planning air navigation aid and system
Technical field
The present invention relates to path planning navigation field, specific design one shortest path planning air navigation aid and system.
Background technology
Path planning navigation has accuracy, ageing, is closely related with user's daily life simultaneously, go on a journey user, Search and rescue are speedily carried out rescue work and the application of the field such as scientific research is quite varied, and such as, Path Planning Technique can be applied in megastore Route guidance, it is simple to user finds a shortest path from starting point to destination, greatly facilitates user's real life.? In path planning, path planning algorithm is its pith, the most traditional dijkstra's algorithm, and it is applicable to calculate point-to-point transmission Shortest route problem, one of classic algorithm in the path planning being well recognized as.It is set up on abstract network model, and section is taken out As for the limit in network, using the weights on limit as the distance in section, being mainly characterized by centered by starting point outwards extending layer by layer, Until expanding to terminal.When calculating shortest path by Dijkstra, need to specify starting point s, start meter from summit s Calculate.Introduce two set S and U.The effect of S is the node recording and obtaining shortest path, and U is to record also not obtain shortest path Node.Traditional dijkstra's algorithm basic step is as follows:
(1), time initially, S set only comprises starting point s;U set comprises other summits in addition to s, the distance on summit in U Begin to the distance on this summit for starting point s.If (s and v is non-conterminous, and U interior joint, the distance of some v are (s, length v);If s Non-conterminous with v, then the distance of v is ∞).
(2) select, from set U, the node k that distance is the shortest, and node k is added in S, meanwhile, from U, remove node k。
(3) each node is recalculated in U to the distance of starting point s.Update the distance on summit in set U, be because Determining k in one step is the node obtaining shortest path, thus utilize k to update the distance of other node because (s, v) away from From being likely larger than (s, k)+(k, distance v).
(4) above step (2) and (3) is repeated, untilTraversalComplete all nodes, finally select one from starting point to end The shortest path of point.
But, traditional dijkstra's algorithm has to the shortest path from starting point to terminal, in actual path choosing Selecting in problem, only consider that the length factor in path is inadequate, along with the variation of Path selection, some affect Path selection The factor be necessary studied.Such as, in the most each section of starting point to terminal, the traveler preference to each section Difference, on the way in the select permeability of some special joints.
For problems, traditional dijkstra's algorithm cannot complete, to this end, the present invention is at the base of dijkstra's algorithm On plinth, it is proposed that a kind of improved method that practical problem in path planning is carried out comprehensive assessment, data are processed, To meeting the shortest path of physical constraint condition and being applied in actual path planning, closer to the path planning that user is actual Navigation.
Chinese invention patent " method seeking length of a game's optimal path time dynamic under changing environment " (authorizes public number CN103994768A) the invention discloses a kind of dynamic time changing environment under seek the method for length of a game's optimal path.The method Including: the extraction to environmental state information;Spatial modeling to environment;According to environmental state information, the environment time of carrying out is drawn Point, several time intervals will be divided into by time shaft, and represent the ambient condition of each time interval with time loss;Use Environmental model is scanned for obtaining length of a game's optimal path by the A* algorithm improved;Multiple dimensioned road is reached by introducing weight Footpath planning purpose.With its difference, the present invention is that the present invention is to improve on the basis of dijkstra's algorithm, and it is Use the A* algorithm improved, invention increases the constraints in Actual path planning simultaneously, comprehensively carry out path planning, more It is close to the users reality.
Summary of the invention
Traditional dijkstra's algorithm as weights, obtains a shortest path from starting point to terminal using the length in path Footpath, but in actual Path Selection, only consider that the length in path is inadequate, various along with Path selection Changing, some affect the factor of Path selection: such as, in the most each section of starting point to terminal, traveler is to each section Preference, on the way in the selection etc. of some special joints, be all the problem that should be taken into account.
In order to overcome above-mentioned existing methodical deficiency, the invention provides a kind of shortest path planning air navigation aid and be System, is more suitable for Actual path planning navigation.
The technical scheme is that
A kind of shortest path planning air navigation aid, comprises the following steps:
Step S1: according to user preference be path distance weights add user preference weights, utilize formula: M (n)=P (n) + Q (n) * A carries out pretreatment to path distance weights P (n) and user preference weights Q (n) data, it is thus achieved that comprehensive assessment weights M N () wherein, A is user preference weights proportion, each node in n delegated path;
Step S2, selected user need the special joint of process, using special joint as cut-point, by cut-point road Net is divided into first network and the second network, and first network is the meshed network between starting point to special joint, the second network For the meshed network between special joint to terminal;
Step S3, path distance weights P (n) in dijkstra's algorithm is replaced with the comprehensive assessment obtained in step S1 Weights M (n), it is thus achieved that the dijkstra's algorithm of improvement, are utilized respectively the dijkstra's algorithm of improvement to first network and the second net Network carries out shortest path calculating, finally gives the shortest path reached home from starting point through special joint.
Further, in described step S3, it is utilized respectively the dijkstra's algorithm of improvement to first network and the second network Carry out shortest path calculating respectively, be specially and calculate the shortest subpath of first from starting point to special joint respectively and from special Node, to the second the shortest subpath of terminal, comprehensive first the shortest subpath and the second the shortest subpath, obtains from starting point warp Cross the shortest path that special joint is reached home.
A kind of shortest path planning navigation system, including with lower module:
User preference weights add module, and being used for according to user preference is that path distance weights add user preference weights, Utilize formula: M (n)=P (n)+Q (n) * A that path distance weights P (n) and user preference weights Q (n) data are carried out pretreatment, Obtaining comprehensive assessment weights M (n) wherein, A is user preference weights proportion, each node in n delegated path;
Network segmentation module, needs the special joint of process for selecting user, using special joint as cut-point, passes through Cut-point is divided into first network and the second network road network, and first network is the node net between starting point to special joint Network, the second network is the meshed network between special joint to terminal;
Path calculation module, obtains for being replaced with in step S1 by path distance weights P (n) in dijkstra's algorithm Comprehensive assessment weights M (n), it is thus achieved that the dijkstra's algorithm of improvement, be utilized respectively the dijkstra's algorithm of improvement to the first net Network and the second network carry out shortest path calculating, finally give the shortest path reached home from starting point through special joint.
Further, described path calculation module includes first network computing unit, first network computing unit and comprehensive Computing unit;
Described first network computing unit is for calculating the first the shortest subpath from starting point to special joint;
Described second network calculations unit is for calculating the second the shortest subpath from special joint to terminal;
Described COMPREHENSIVE CALCULATING unit is used for comprehensive first the shortest subpath and the second the shortest subpath, obtains from starting point warp Cross the shortest path that special joint is reached home.
The present invention is on the basis of dijkstra's algorithm, it is proposed that the dijkstra's algorithm of improvement, considers path Practical problem in planning, generates the shortest path meeting physical constraint condition, is applied to the path planning of reality.Institute of the present invention The main points of the technical scheme used are as follows:
1., in traditional dijkstra's algorithm, the only weights of delegated path distance, at the dijkstra's algorithm improved In, introduce publicity: M (n)=P (n)+Q (n) * A, wherein M (n) represents comprehensive assessment weights, P (n) delegated path distance weights, Q N () represents user preferences weights, A is user preference weights proportion.
Path distance and user preference are taken into consideration, it is to avoid the weight of traditional dijkstra's algorithm is single Property, comprehensive assessment weights are constituted by two, it is possible to by the setting of A value, and changing the two affects ratio to final Path selection Weight.
User preference weights represent user's preference to each path, and such as user preference crowding is low, have elevator to wash one's hands Between wait mark path, user preference weights are also to affect user to carry out the key factor of Path selection.It is contemplated that path Distance weights and the combined influence of user preference weights, A is user preference weights relative to shared by path distance weights Proportion.When A is equal equal to 1 expression path distance weights and the proportion of user preference weights, when A is less than 1, represent path away from More great than the ratio of user preference weights from weights, when A is more than 1, represent the path distance weights ratio than user preference weights Weight is little.The setting of A value refers to following module (wherein aij represents A):
Aij=1, represents that element i and element j is identical to the importance of last layer time factor;
Aij=3, represents that element i is more important than element j;
Aij=5, represents that element i is more important than element j;
Aij=7, represents that element i is than element j much more significant;Otherwise, if element j is more important than element i, then aij is respectively Reciprocal 1/3,1/5,1/7,1/9.
The importance of the numeric representation element i of i.e. aij and the ratio size of the importance of element j, aij value is the biggest, represents The most important compared with element j of element i, aij value is the least, represents the most important compared with element i of element j.
The most traditional dijkstra's algorithm solves shortest path, and obtain is a shortest path from starting point to terminal Footpath, but in the path planning problem of reality, user often have some want must through special joint, at this moment we will look for Go out a shortest path through special joint.
In innovatory algorithm in order to select in view of user must through intermediate node, we using this node as cut-point, Path network is divided into two networks, solves the shortest path from starting point to this node respectively and from this node to terminal Shortest path, finally obtains the shortest path reached home from starting point through this Dominator.
The invention has the beneficial effects as follows: the present invention proposes improvement to traditional dijkstra's algorithm, it is to avoid traditional Dijkstra's algorithm only considers path length factor, obtains the shortest path from starting point to terminal, and the present invention combines User to the preference in each section and on the way in the select permeability of special joint, this is improved, and should modified hydrothermal process In Actual path is planned, it is met the shortest path of physical constraint condition, solves the user in Actual path planning Preference and particular point select permeability, closer to user actual paths planning navigation, have wide application scenarios.
Accompanying drawing explanation
Fig. 1 is the path comprehensive assessment weights figure after the interpolation user preference of the present invention;
Fig. 2 is the design sketch before special joint carries out network segmentation of the present invention;
Fig. 3 is the design sketch after special joint carries out network segmentation of the present invention;
Fig. 4 is the schematic diagram during the present invention overall realizes before network segmentation;
Fig. 5 is the schematic diagram during the present invention overall realizes after network segmentation.
Detailed description of the invention
Being described principle and the feature of the present invention below in conjunction with accompanying drawing, example is served only for explaining the present invention, and Non-for limiting the scope of the present invention.
In traditional dijkstra's algorithm, the only weights of delegated path distance, as it is shown in figure 1, in improvement In dijkstra's algorithm, introducing formula: M (n)=P (n)+Q (n) * A, wherein M (n) represents comprehensive assessment weights, and P (n) represents road Footpath distance weights, Q (n) represents user preference weights, and A is user preference weights proportion.Path distance and user preference Both take into consideration, it is to avoid the weight unicity of traditional dijkstra's algorithm, and comprehensive assessment weights are constituted by two, and can With the setting by A value, changing the two affects proportion to final Path selection.
Fig. 2 is the design sketch before special joint carries out network segmentation of the present invention.Traditional dijkstra's algorithm solves Short path, obtain is a shortest path from starting point to terminal, but in the path planning problem of reality, user is often Have some want must through node, at this moment we will find out a shortest path through special joint.At innovatory algorithm In must be through intermediate node in order to select in view of user, we as cut-point, are divided into two path network using this node Individual network, solves the shortest path from starting point to this node and the shortest path from terminal to this node respectively, finally obtains The shortest path reached home through this Dominator from starting point.Assuming that Dominator is 5 nodes, using 5 nodes as network Cut-point, has been divided into the two parts such as Fig. 3 Fig. 2 network.Two networks after segmentation are obtained with Di jkstra algorithm respectively Article two, shortest path, one is from starting point to Dominator, and one is from Dominator to terminal, last comprehensive Liang Tiao road Footpath, obtains a shortest path reached home from starting point through Dominator, and this shortest path is through must warp knuckle The shortest path of point.
Fig. 4 is that the entirety of the present invention realizes procedure chart.First we are to data prediction, if wherein two nodes not phase Neighbour, then distance is ∞.The two-dimensional array having figure can obtain routine weight value and user preference weights is respectively as follows:
P ( n ) : 0 5 6 ∞ ∞ ∞ 5 0 5 10 10 ∞ 6 5 0 ∞ 8 ∞ ∞ 10 ∞ 0 8 10 ∞ 10 8 8 0 8 ∞ ∞ ∞ 10 8 0
With
Q ( n ) : 0 1 2 ∞ ∞ ∞ 1 0 4 8 10 ∞ 2 4 0 ∞ 8 ∞ ∞ 8 ∞ 0 7 2 ∞ 10 8 8 0 8 ∞ ∞ ∞ 2 3 0
By formula M (n)=P (n)+Q (n) * A, it is assumed that A=1, i.e. path distance weights and user preference weights institute accounting Heavy phase etc., we obtain comprehensive assessment weights M (n) and are:
0 6 8 ∞ ∞ ∞ 6 0 9 18 20 ∞ 8 9 0 ∞ 16 ∞ ∞ 18 ∞ 0 15 12 ∞ 20 16 16 0 16 ∞ ∞ ∞ 12 11 0
Then we carry out network segmentation, it is assumed that 2 nodes are must thus to split network through intermediate node, as it is shown in figure 5, Figure is divided into two networks through Dominator 2, so try to achieve respectively from starting point 0 to the shortest path of intermediate node 2 and from Intermediate node 2, to the shortest path of terminal 5, finally connects two paths, obtains from starting point 0 through middle Dominator 2 A shortest path to terminal 5.
The foregoing is only presently preferred embodiments of the present invention, not in order to limit the present invention, all spirit in the present invention and Within principle, any modification, equivalent substitution and improvement etc. made, should be included within the scope of the present invention.

Claims (4)

1. a shortest path planning air navigation aid, it is characterised in that comprise the following steps:
Step S1: according to user preference be path distance weights add user preference weights, utilize formula: M (n)=P (n)+Q N () * A carries out pretreatment to path distance weights P (n) and user preference weights Q (n) data, it is thus achieved that comprehensive assessment weights M (n) Wherein, A is user preference weights proportion, each node in n delegated path;
Step S2, selected user need the special joint of process, using special joint as cut-point, by cut-point, road network are divided Becoming first network and the second network, first network is the meshed network between starting point to special joint, the second network be from Special joint is to the meshed network between terminal;
Step S3, path distance weights P (n) in dijkstra's algorithm is replaced with the comprehensive assessment weights obtained in step S1 M (n), it is thus achieved that the dijkstra's algorithm of improvement, first network and the second network are entered by the dijkstra's algorithm being utilized respectively improvement Row shortest path calculates, and finally gives the shortest path reached home from starting point through special joint.
Shortest path planning air navigation aid the most according to claim 1, it is characterised in that in described step S3, respectively profit With improve dijkstra's algorithm first network and the second network are carried out shortest path calculating respectively, be specially calculate respectively from Starting point is to the first the shortest subpath of special joint and the second the shortest subpath from special joint to terminal, and comprehensive first Short subpath and the second the shortest subpath, obtain the shortest path reached home from starting point through special joint.
3. a shortest path planning navigation system, it is characterised in that include with lower module:
User preference weights add module, for being that path distance weights add user preference weights according to user preference, utilize Formula: M (n)=P (n)+Q (n) * A carries out pretreatment to path distance weights P (n) and user preference weights Q (n) data, it is thus achieved that Wherein, A is user preference weights proportion in comprehensive assessment weights M (n), each node in n delegated path;
Network segmentation module, needs the special joint of process for selecting user, using special joint as cut-point, by segmentation Point is divided into first network and the second network road network, and first network is the meshed network between starting point to special joint, the Two networks are the meshed network between special joint to terminal;
Path calculation module, for replacing with combining of obtaining in step S1 by path distance weights P (n) in dijkstra's algorithm Close assessment weights M (n), it is thus achieved that the dijkstra's algorithm of improvement, be utilized respectively the dijkstra's algorithm of improvement to first network and Second network carries out shortest path calculating, finally gives the shortest path reached home from starting point through special joint.
Shortest path planning navigation system the most according to claim 3, it is characterised in that described path calculation module includes First network computing unit, first network computing unit and COMPREHENSIVE CALCULATING unit;
Described first network computing unit is for calculating the first the shortest subpath from starting point to special joint;
Described second network calculations unit is for calculating the second the shortest subpath from special joint to terminal;
Described COMPREHENSIVE CALCULATING unit is used for comprehensive first the shortest subpath and the second the shortest subpath, obtains from starting point through spy The shortest path that different node is reached home.
CN201610340524.4A 2016-05-20 2016-05-20 Shortest route planning and navigating method and system Pending CN106052692A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201610340524.4A CN106052692A (en) 2016-05-20 2016-05-20 Shortest route planning and navigating method and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201610340524.4A CN106052692A (en) 2016-05-20 2016-05-20 Shortest route planning and navigating method and system

Publications (1)

Publication Number Publication Date
CN106052692A true CN106052692A (en) 2016-10-26

Family

ID=57176577

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201610340524.4A Pending CN106052692A (en) 2016-05-20 2016-05-20 Shortest route planning and navigating method and system

Country Status (1)

Country Link
CN (1) CN106052692A (en)

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107330169A (en) * 2017-06-15 2017-11-07 新奥泛能网络科技股份有限公司 A kind of regional cold supply system pipe network route planning method and system
CN107883956A (en) * 2017-10-19 2018-04-06 中国地质大学(武汉) A kind of routing resource and system based on dijkstra's algorithm
CN109724611A (en) * 2019-01-08 2019-05-07 北京三快在线科技有限公司 Paths planning method, device, electronic equipment and storage medium
CN110617834A (en) * 2019-10-31 2019-12-27 电子科技大学 Shortest path planning method under Gaussian process road network
WO2020151441A1 (en) * 2019-01-24 2020-07-30 爱驰汽车有限公司 Method, system and device for path planning based on real-time traffic, and storage medium
CN112987763A (en) * 2021-05-11 2021-06-18 南京理工大学紫金学院 ROS-based intelligent trolley of autonomous navigation robot control system
CN113128938A (en) * 2021-05-19 2021-07-16 广州赛特智能科技有限公司 Robot moving path planning method
CN114257661A (en) * 2021-12-26 2022-03-29 山东浪潮科学研究院有限公司 Implementation method and tool for dynamically selecting gPCR (gateway control protocol) path according to network delay

Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020120396A1 (en) * 2001-02-27 2002-08-29 International Business Machines Corporation Apparatus, system, method and computer program product for determining an optimum route based on historical information
KR20060134550A (en) * 2005-06-23 2006-12-28 현대자동차주식회사 Optimal driving course algorithm considering domestic road environment
CN101788999A (en) * 2009-12-30 2010-07-28 安徽大学 Binary chop tracking method of shortest paths in network map
CN102081658A (en) * 2011-01-13 2011-06-01 北京超图软件股份有限公司 Hierarchical road network-based path search method and device
CN102798394A (en) * 2011-05-26 2012-11-28 上海博泰悦臻电子设备制造有限公司 Route planning method and system
CN104075720A (en) * 2013-03-26 2014-10-01 日电(中国)有限公司 Path planning device and method based on multiple prices
CN105070078A (en) * 2015-08-16 2015-11-18 吉林大学 Dynamic route guidance method based on vehicle-to-vehicle communication
CN105513400A (en) * 2015-12-03 2016-04-20 四川长虹电器股份有限公司 Method for dynamically planning travel route

Patent Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020120396A1 (en) * 2001-02-27 2002-08-29 International Business Machines Corporation Apparatus, system, method and computer program product for determining an optimum route based on historical information
KR20060134550A (en) * 2005-06-23 2006-12-28 현대자동차주식회사 Optimal driving course algorithm considering domestic road environment
CN101788999A (en) * 2009-12-30 2010-07-28 安徽大学 Binary chop tracking method of shortest paths in network map
CN102081658A (en) * 2011-01-13 2011-06-01 北京超图软件股份有限公司 Hierarchical road network-based path search method and device
CN102798394A (en) * 2011-05-26 2012-11-28 上海博泰悦臻电子设备制造有限公司 Route planning method and system
CN104075720A (en) * 2013-03-26 2014-10-01 日电(中国)有限公司 Path planning device and method based on multiple prices
CN105070078A (en) * 2015-08-16 2015-11-18 吉林大学 Dynamic route guidance method based on vehicle-to-vehicle communication
CN105513400A (en) * 2015-12-03 2016-04-20 四川长虹电器股份有限公司 Method for dynamically planning travel route

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
王媛: "智能型车载信息装置的自适应路径规划系统研究", 《中国优秀硕士学位论文全文数据库 工程科技Ⅱ辑》 *

Cited By (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107330169A (en) * 2017-06-15 2017-11-07 新奥泛能网络科技股份有限公司 A kind of regional cold supply system pipe network route planning method and system
CN107883956A (en) * 2017-10-19 2018-04-06 中国地质大学(武汉) A kind of routing resource and system based on dijkstra's algorithm
CN109724611A (en) * 2019-01-08 2019-05-07 北京三快在线科技有限公司 Paths planning method, device, electronic equipment and storage medium
CN109724611B (en) * 2019-01-08 2020-07-17 北京三快在线科技有限公司 Path planning method and device, electronic equipment and storage medium
WO2020151441A1 (en) * 2019-01-24 2020-07-30 爱驰汽车有限公司 Method, system and device for path planning based on real-time traffic, and storage medium
CN110617834A (en) * 2019-10-31 2019-12-27 电子科技大学 Shortest path planning method under Gaussian process road network
CN110617834B (en) * 2019-10-31 2021-02-26 电子科技大学 Shortest path planning method under Gaussian process road network
CN112987763A (en) * 2021-05-11 2021-06-18 南京理工大学紫金学院 ROS-based intelligent trolley of autonomous navigation robot control system
CN112987763B (en) * 2021-05-11 2021-09-17 南京理工大学紫金学院 ROS-based intelligent trolley of autonomous navigation robot control system
CN113128938A (en) * 2021-05-19 2021-07-16 广州赛特智能科技有限公司 Robot moving path planning method
CN113128938B (en) * 2021-05-19 2022-05-17 广州赛特智能科技有限公司 Robot moving path planning method
CN114257661A (en) * 2021-12-26 2022-03-29 山东浪潮科学研究院有限公司 Implementation method and tool for dynamically selecting gPCR (gateway control protocol) path according to network delay

Similar Documents

Publication Publication Date Title
CN106052692A (en) Shortest route planning and navigating method and system
US10317219B1 (en) System and method for the calculation and use of travel times in search and other applications
CN103512581B (en) A kind of paths planning method and device
JP7264357B2 (en) Method and Apparatus for Searching or Comparing Sites Using Routes or Route Distances Between Sites and Locations in a Transportation System
Gavalas et al. Web application for recommending personalised mobile tourist routes
CN109405839A (en) A kind of transportation network offline map matching algorithm based on multipath
JP7133580B2 (en) WALKING TOUR GENERATION SYSTEM AND METHOD
US9217649B1 (en) Systems and methods for providing topographical graphs and travel routes based on perceived exertion
CN106203697A (en) A kind of paths planning method during Unmanned Aerial Vehicle Data collection
CN106462620A (en) Distance queries on massive networks
Bucher et al. A heuristic for multi-modal route planning
CN111898793A (en) Path selection method considering user perception difference in combined travel mode
US20200349660A1 (en) Method and an Apparatus for Searching or Comparing Sites Using Routes or Route Lengths Between Sites and Places Within a Transportation System
CN107978152A (en) A kind of maximum entropy method for the estimation of traffic sub-network trip matrix
CN105160429B (en) It is a kind of that there is the multi-mode Public Transport Transfer method for virtually changing to micro- hinge
CN113808424B (en) Method for acquiring K shortest paths of urban road network based on bidirectional Dijkstra
Dibbelt Engineering algorithms for route planning in multimodal transportation networks
CN104036013B (en) The formal notion computational methods of blog data based on attribute topology
US11346681B2 (en) Method and an apparatus for searching or comparing sites using routes or route lengths between sites and places within a transportation system
CN114580796B (en) Tour attribute path planning method and system
D'Andrea et al. Path clustering based on a novel dissimilarity function for ride-sharing recommenders
Joest et al. A user-aware tour proposal framework using a hybrid optimization approach
Li et al. PerNav: A route summarization framework for personalized navigation
US10063462B2 (en) Methods for determining the shortest path of a network utilizing M* algorithm
KR20130096654A (en) Navigation system and method for navigation

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication
RJ01 Rejection of invention patent application after publication

Application publication date: 20161026