In my work with Wireless Sensor Networks, I have been collecting sensor addresses and their corresponding temperature readings in JSON format. The data looks like this:
{"eui":"c10c00000000007b","count":0"tmp102":" 0.0000 C"}
When it comes to the network connection, I also retrieve information about the Parent Node and the next destination in a JSON format (using CoAP on the Ubuntu Gnome Terminal), which is similar to HTTP but more lightweight.
{"Dest":"aaaa::c30c:0:0:7b","Next":"fe80::c30c:0:0:7b"}
For more details, please check out my repository.
I am interested in creating a visualization of the sensor network topology, ideally with interactive features like displaying the last sensed value when clicking on a sensor. Currently, I am saving the data in a .JSON file and considering using Vis.js for visualization, although I am new to it. I have also come across GephiJSON as an example, but I am struggling to understand its implementation.
Any helpful tips or guidance would be greatly appreciated.