I am working on Veins framework, inside OMNET++ using SUMO to simulate my traffic based on the Bologna joined dataset (available at http://sumo.dlr.de/wiki/Data/Scenarios). The idea at first is to forward messages towards its destinations (a stationary point in the scenario, a RSU) using the shortest path. After that I am gonna do some improvements, but at first I need to know how to create the shortest route from a vehicle to the RSU. I've seen some people mentioning Dijkstra to do it, but probably to use Dijsktra I am gonna need a graph of the scenario and it doesn't provides the graph (probably it will be a unweighted graph). What do you recommend me to use to create the shortest routes?
So basically what i need is to implement a GPS system in my scenario to provide me the shortest path to the RSU.
Thanks!