Graph Coordinate System
This web app displays different simulations for a graph-theory data structure provided in a JSON file. An example for data format can be seen here:
{ "graphs": [ { "label": "Youtuber quotations", "nodes": [ { "id": "0", "label": "Vsauce", "certain": true }, { "id": "1", "label": "Kurzgesagt - In a Nutshell", "certain": false } ], "edges": [ { "source": "0", "target": "1", "metadata": { "factor": 2 } }, { "source": "1", "target": "0", "metadata": { "factor": 17 } } ] } ] }