I have a dwg 2D layout of a hanging warehouse. We have to development a WCS system, this system consist also to calculate the shortest way to reach the destination.
Is there any way to convert the DWG to a GRAPH and use the python-networkX to calculate the route? At the end I have to get a list of track route.
I can find a similar layout in this google search.
I suggest you to create an application that displays the DWG layout.
The application will respond to mouse movement and clicks on the displayed layout as follows:
Then you can run Dijkstra algorithm whenever you need to calculate the shortest route.
I would NOT recommend using python for this as it is far too slow.