Graph database Analysis of the Steam Network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
jrtechs c0536f0b38 Moved web client to /website, added a README, and updated server/client to accept requested steam ids. 6 years ago
..
README.md Moved web client to /website, added a README, and updated server/client to accept requested steam ids. 6 years ago
gexf-parser.js Moved web client to /website, added a README, and updated server/client to accept requested steam ids. 6 years ago
sigma.parsers.gexf.js Moved web client to /website, added a README, and updated server/client to accept requested steam ids. 6 years ago

README.md

sigma.parsers.gexf

Plugin developed by Alexis Jacomy, on top of gexf-parser, developed by Guillaume Plique.


This plugin provides a single function, sigma.parsers.gexf(), that will load a GEXF encoded file, parse it, and instantiate sigma.

The most basic way to use this helper is to call it with a path and a sigma configuration object. It will then instantiate sigma, but after having added the graph into the config object.

sigma.parsers.gexf(
  'myGraph.gexf',
  { container: 'myContainer' }
);

It is also possible to update an existing instance's graph instead.

sigma.parsers.gexf(
  'myGraph.gexf',
  myExistingInstance,
  function() {
    myExistingInstance.refresh();
  }
);