gephi.team team mailing list archive
-
gephi.team team
-
Mailing list archive
-
Message #02127
[Bug 661257] Re: DOT importer ignores edge weight and .gv file extension
** Changed in: gephi
Status: Fix Committed => Fix Released
** Changed in: gephi/0.7
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Gephi
Team, which is subscribed to 0.7.
https://bugs.launchpad.net/bugs/661257
Title:
DOT importer ignores edge weight and .gv file extension
Status in Gephi - Network exploration and manipulation:
Fix Released
Status in Gephi 0.7 series:
Fix Released
Bug description:
DOT importer has two problems:
1. the standard extension for graphviz dot files is .gv and not .dot. but the importer doesn't understand .gv
2. edge weight attribute is ignored on import
Example markup:
digraph Test {
label="Test Graph";
comment="This is a test graph.";
id1-> id2 [weight=2];
}
Furthermore, the importer could use graph name as project name, label
as project title and comment as project description.