[GIS] How to find the Shortest Path between two coordinates points using pgrouting A-Star

gpsosm2popgrouting

In PostGIS I have two tables: an osm road network and a table that contains the start and end coordinate points of each path (i.e. userid, start_x1, start_y1, end_x2, end_y2). I would like to know:
1) how to create an osm road network that can be used for implementing the Astart algorithm with pgrouting (I actually have an osm road network which I obtained using osm2po and that works fine Dijkstra shortest path algorithm using pgrouting layer plugin)
2) how to find the shortest path of each start and end coordinate points using A-star.
Thank you, Selini

Best Answer

Have you read the pgRouting workshop chapter about A-Star? It should answer your questions.

Related Question