I am working with Wireless sensor networks and I have been obtaining the sensor's addresses and their sensing parameter like Temperature in JSON format. The format is as follows:
{"eui":"c10c00000000007b","count":0"tmp102":" 0.0000 C"}
As far are the connection of the network, the Parent Node and the next destination are also got through a JSON format (on the Ubuntu gnome Terminal) using CoAP (constrained Application Protocol) for the Sensor Networks which has synonymous implementation like HTTP but is light weight.
{"Dest":"aaaa::c30c:0:0:7b","Next":"fe80::c30c:0:0:7b"}
for further details please refer to my repository
I want to create a visualization of the topology of sensors also if possible then with attributes like a when one clicks on the sensor, then the last sensed value could be observed.
I am already storing the first in a file with .JSON extension. I want to try this visualization in Vis.js but I am relatively new to it. I have seen an example of GephiJSON but somehow I do not understand the implementation.
Any sincere guidance would be really appreciated.