MathHubInfo / mhd

The implementation of MathDataHub powered by Django + React.
https://data.mathhub.info
GNU General Public License v3.0
1 stars 1 forks source link

Visualising graphs #18

Closed katjabercic closed 5 years ago

katjabercic commented 5 years ago

Notes We want to be able to show visualisations of objects, for some value of visualisations. People are attached to certain drawings, so storing coordinates (possibly multiple sets of such) for some graphs makes sense.

Erik says:

Sage has quite a few built-in graphs and layouts for them, so one thing you could do to scrape drawings for existing graphs would be to check for isomorphism with any of Sage's built-in graphs and then steal their drawings if found (at import time, as you say).

Tools, references

kohlhase commented 5 years ago

we have that for one data set. close this issue?

katjabercic commented 5 years ago

It works for this dataset. Discussions with @tkw1536 and @embray revealed that it would be difficult to use the precomputed drawings of graphs from SageMath. The nice drawings there only come with using the right constructor. We would first need to determine which one. Perhaps we can revisit this at a later time.