I have a gml file in which nodes have non-uniform dimensions. I read the file with the following command:
G = nx.Graph(nx.read_gml('test.gml'))
I am not sure if this command reads the widths and heights from the gml file and whether it stores them or not.
Is reading these values possible? If yes, then how?