just wondering if you have any suggestions here. I need a lot of sample maps/graphs to test my shortest path search solution (I was told I should have >100 of them). My code is supposed to work in a simulator, which uses OpenStreetMap maps of urban setting, limiting the total number of junctions to a few thousand. the problem is, there are only two or three maps provided with the simulator. The way I see it, I have a few choices here:
- Write my own random graph generator. Possibly lots of work (do you think? --I ve never done it before) and reinventing the wheel.
- Use off-the-shelf solution. I m not aware of any that would generate me map-like graphs (well, at least I didn t find it in JUNG :-) )
- In some automated way grab them from OSM. I don t really intend to myself go and pick out a 100+ urban maps that would satisfy <15000 nodes requirement. I don t think that would be easy to automate either, though.
I would assume that 3 would be tough to do. Any advice on some off-the-shelf solution? or comments about writing my own? I m not an experienced programmer by any measure, but given a few days.