Newer
Older
# TopoGen
Creates worldwide underlay topologies and outputs them in the following formats:
* JSON
* nodes and edges in txt files
* KML for Google Earth
![image of example topology](https://raw.githubusercontent.com/thillux/TopoGen/master/img/exampleTopology.jpg)
## Dependencies
TopoGen is built via CMake and uses the following libraries:
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
* CGAL
* COIN-OR::LEMON
* GMP
* JsonCpp
* SQLite 3
## Bootstrapping
```bash
./bootstrap.sh
cmake .
make
```
## Running
1) create Google Earth KML
```bash
bin/topoGen --kml
```
2) create node and edge list
```bash
bin/topoGen --graph
```
3) create graph json
```bash
bin/topoGen --json
```
## Contributors
* Michael Grey
* Markus Theil
## Credits
This tool was created at [Ilmenau University of Technology](https://www.tu-ilmenau.de/en/international/).