I use driving_distance function in pgRouting to work with my river network. There are 12 vertices in my river network, and I want to get the distance between all of these 12 vertices, starting from vertex_id No.1.
The result is fine, but I want to get other results using other vertices as starting point. I know it would not cost much time to change the SQL code everytime, but thereafter I would have more than 500 vertices in this river network, so I need to do this more efficiently.
How to use python to get what I want? How can I write a python script to do this? Or there are existing python script that I want?
I am a novice with programming language, please give me any detailed advice, thank you.